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 -->
|
<!-- JUnit 5 -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.junit.jupiter</groupId>
|
<groupId>org.junit.jupiter</groupId>
|
||||||
<artifactId>junit-jupiter-engine</artifactId>
|
<artifactId>junit-jupiter</artifactId>
|
||||||
<version>5.8.0-M1</version>
|
<version>5.8.0-M1</version>
|
||||||
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- TestFX -->
|
<!-- TestFX -->
|
||||||
@ -68,7 +69,7 @@
|
|||||||
<release>15</release>
|
<release>15</release>
|
||||||
<showWarnings>true</showWarnings>
|
<showWarnings>true</showWarnings>
|
||||||
<showDeprecation>true</showDeprecation>
|
<showDeprecation>true</showDeprecation>
|
||||||
<compilerArgs>--enable-previw</compilerArgs>
|
<compilerArgs>--enable-preview</compilerArgs>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
|
@ -3,6 +3,8 @@ module app {
|
|||||||
requires javafx.controls;
|
requires javafx.controls;
|
||||||
requires javafx.fxml;
|
requires javafx.fxml;
|
||||||
requires javafx.graphics;
|
requires javafx.graphics;
|
||||||
|
requires org.fxmisc.richtext;
|
||||||
|
requires org.junit.jupiter.api;
|
||||||
|
|
||||||
exports app;
|
exports app;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user