Add requirements
This commit is contained in:
parent
c4779c1a06
commit
2ebe7a68ae
3 changed files with 16 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
|||
.idea/
|
||||
/target/
|
||||
|
|
9
pom.xml
9
pom.xml
|
@ -12,7 +12,7 @@
|
|||
<maven.compiler.source>17</maven.compiler.source>
|
||||
<maven.compiler.target>17</maven.compiler.target>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<junit.version>5.7.1</junit.version>
|
||||
<junit.version>5.8.1</junit.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
|
@ -34,18 +34,21 @@
|
|||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-api</artifactId>
|
||||
<version>${junit.version}</version>
|
||||
<version>5.7.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-engine</artifactId>
|
||||
<version>${junit.version}</version>
|
||||
<version>5.7.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<sourceDirectory>src</sourceDirectory>
|
||||
<testSourceDirectory>src/test/</testSourceDirectory>
|
||||
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
|
|
9
src/module-info.java
Normal file
9
src/module-info.java
Normal file
|
@ -0,0 +1,9 @@
|
|||
module fr.univ.lyon1.gui {
|
||||
requires javafx.controls;
|
||||
requires javafx.fxml;
|
||||
|
||||
requires org.kordamp.bootstrapfx.core;
|
||||
|
||||
opens fr.univ.lyon1.gui to javafx.fxml;
|
||||
exports fr.univ.lyon1.gui;
|
||||
}
|
Reference in a new issue