Add files via upload

First Commit
This commit is contained in:
Yûki VACHOT 2020-12-02 16:52:49 +01:00 committed by GitHub
parent 10ade58bb4
commit 09407e5084
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 97 additions and 0 deletions

View file

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_13">
<output url="file://$MODULE_DIR$/target/classes" />
<output-test url="file://$MODULE_DIR$/target/test-classes" />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/test/resources" type="java-test-resource" />
<excludeFolder url="file://$MODULE_DIR$/target" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="org.apache.maven.plugins:maven-surefire-plugin:2.22.2" level="project" />
<orderEntry type="library" scope="TEST" name="Maven: org.junit.jupiter:junit-jupiter-engine:5.7.0" level="project" />
<orderEntry type="library" scope="TEST" name="Maven: org.junit.platform:junit-platform-engine:1.7.0" level="project" />
<orderEntry type="library" scope="TEST" name="Maven: org.junit.jupiter:junit-jupiter-api:5.7.0" level="project" />
<orderEntry type="library" scope="TEST" name="Maven: org.opentest4j:opentest4j:1.2.0" level="project" />
<orderEntry type="library" scope="TEST" name="Maven: org.junit.platform:junit-platform-commons:1.7.0" level="project" />
<orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.25" level="project" />
<orderEntry type="library" name="Maven: org.slf4j:slf4j-simple:1.7.25" level="project" />
</component>
</module>

69
pom.xml
View file

@ -7,6 +7,75 @@
<groupId>fr.myny</groupId>
<artifactId>ProjetGenieLogicielLoto</artifactId>
<version>1.0-SNAPSHOT</version>
<name>ProjetGenieLogicielLoto</name>
<description>${project.artifactId} is a school project for the subject Genie Logiciel</description>
<developers>
<developer>
<name>Yûki Vachot</name>
<id>yv</id>
<email>yuki@vachot.fr</email>
<url>https://github.com/NyxiumYuuki/</url>
</developer>
<developer>
<name>Maxime Havgoudoukian</name>
<id>mh</id>
<email>maxime.havgoudoukian@etu.univ-amu.fr</email>
<url>https://github.com/MHAVGOUDOUKIAN</url>
</developer>
<developer>
<name>Nicolas Fabregas</name>
<id>nf</id>
<email>nicolas.fabregas@etu.univ-amu.fr</email>
<url>https://github.com/NicolasFabregas</url>
</developer>
<developer>
<name>Yann Tho</name>
<id>yt</id>
<email>yann.tho@etu.univ-amu.fr</email>
<url>https://github.com/YanNThO</url>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>13</maven.compiler.source>
<maven.compiler.target>13</maven.compiler.target>
<junit.jupiter.version>5.7.0</junit.jupiter.version>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.25</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
</plugin>
</plugins>
</build>
</project>

2
src/main/java/main.java Normal file
View file

@ -0,0 +1,2 @@
public class main {
}

View file

@ -0,0 +1,2 @@
public class maintest {
}