Skip to content
Snippets Groups Projects
Commit 587b7583 authored by Matias Mennecart's avatar Matias Mennecart
Browse files

Initial Commit

parents
No related branches found
No related tags found
No related merge requests found
# SAE 3.01 - Logiciel de classification
Membres:
- MENNECART Matias (matias.mennecart.etu@univ-lille.fr)
- DEKEISER Matisse (matisse.dekeiser.etu@univ-lille.fr)
- DEBUYSER Hugo (hugo.debuyser.etu@univ-lille.fr)
- DESMONS Hugo (hugo.desmons.etu@univ-lille.fr)
- ANTOINE Maxence (maxence.antoine.etu@univ-lille.fr)
pom.xml 0 → 100644
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>fr.univlille.sae.classification</groupId>
<artifactId>ClassificationApp</artifactId>
<version>1.0</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
</plugin>
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.4</version>
<configuration>
<mainClass>fr.univlille.iut.r304.Main</mainClass>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>14</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-swing</artifactId>
<version>14</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.6.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
\ No newline at end of file
package fr.univlille.sae.classification;
public class ClassificationApp {
public static void main(String[] args) {
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment