Fix some imports and configuration
This commit is contained in:
parent
0b9791ee0c
commit
24aebc1aeb
9
pom.xml
9
pom.xml
|
@ -37,9 +37,10 @@
|
|||
|
||||
<!-- JUnit 5 -->
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-engine</artifactId>
|
||||
<version>5.8.0-M1</version>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter</artifactId>
|
||||
<version>5.8.0-M1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- TestFX -->
|
||||
|
@ -68,7 +69,7 @@
|
|||
<release>15</release>
|
||||
<showWarnings>true</showWarnings>
|
||||
<showDeprecation>true</showDeprecation>
|
||||
<compilerArgs>--enable-previw</compilerArgs>
|
||||
<compilerArgs>--enable-preview</compilerArgs>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
|
|
|
@ -3,6 +3,8 @@ module app {
|
|||
requires javafx.controls;
|
||||
requires javafx.fxml;
|
||||
requires javafx.graphics;
|
||||
requires org.fxmisc.richtext;
|
||||
requires org.junit.jupiter.api;
|
||||
|
||||
exports app;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue