This commit is contained in:
unknown 2020-12-04 19:01:09 +01:00
commit d0dbf51476
6 changed files with 141 additions and 1 deletions

BIN
Projet-GL.pdf Normal file

Binary file not shown.

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>

View file

@ -1 +1,32 @@
# ProjetGenieLogicielLoto
## Introduction
*Ce projet permet de valider les connaissances en matière de Génie Logiciel dans le cadre du programme au sein de Polytech Marseille en Informatique. Ce projet consiste à créer un logiciel qui a pour objectif de réduire les pertes financières lorsque l'on joue à des jeux de hasard, en l'occurence au Loto de la [Française Des Jeux](https://fdj.fr) en respectant le bon déroulement d'un projet.*
Le projet se compose d'un groupe de 4 personnes :
- [Yûki Vachot](https://github.com/NyxiumYuuki)
- [Maxime Havgoudoukian](https://github.com/MHAVGOUDOUKIAN)
- [Yann Tho](https://github.com/YanNThO)
- [Nicolas Fabregas](https://github.com/NicolasFabregas)
## Liens Utiles
- [Sujet du Projet](https://github.com/NyxiumYuuki/ProjetGenieLogicielLoto/blob/main/Projet-GL.pdf)
- [GitHub Project](https://github.com/users/NyxiumYuuki/projects/3)
- [GitHub Repository](https://github.com/NyxiumYuuki/ProjetGenieLogicielLoto)
- [Visual SiteMap on GlooMaps](https://www.gloomaps.com/MZjgQh64zw)
- [Quick Setup of Git on VSCode](https://github.com/NyxiumYuuki/Projet-C-Huffman/blob/master/README.md)
## Livrable
- [Dossier de Spécification](https://drive.google.com/file/d/1lZZMTKPG7LmY39-aF24lAeX0S9SpCBkq/view?usp=sharing)
- [Dossier de Conception](https://drive.google.com/file/d/11BBjjcM92V4B2zBxNlpcoARaYt4Bijgt/view?usp=sharing)
- [Dossier de Test](https://drive.google.com/file/d/10Qzfbd6Zs3qB2eYId7oPyRpcQUSu91eq/view?usp=sharing)
## Logiciel utilisé lors du projet
- Google Doc
- Lucidchart
- GlooMaps
- VSCode
- IntelliJ IDEA
- Excel
- Google Sheet

81
pom.xml Normal file
View file

@ -0,0 +1,81 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<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 {
}