Skip to content

Latest commit

 

History

History
63 lines (48 loc) · 1.92 KB

README.md

File metadata and controls

63 lines (48 loc) · 1.92 KB

ENSIIE-Dec-2021-Java

Projet en Java avec Eclipse, en utilisant de méthode de cycle en V.

Groupe:

  • Castel Aurélien
  • Delamotte Guillaume
  • Descroix Guillaume
  • Doz Louka
  • Forget Nicolas

Copyright (C) 2021-2022

Contact: denisse.munantearzapalo[at]ensiie.fr

Structure du projet:

├── code // le code du logiciel dans un module Maven

├── specification // le dossier de spécification et modélisation UML

├── README.md // ce fichier

└── suivi └── readme.md // les messages échangés lors du suivi entre séances

================================================================================

Software prerequisites:

1. JAVA Version >= 9.0
   (https://openjdk.java.net/install/index.html)
2. Maven Version >= 3.0.4
   (http://maven.apache.org/)

Shell variables to set in your ~/.bashrc file:

1. if JAVA is not installed from an archive file,

$ export JAVA_HOME= export CLASSPATH=$JAVA_HOME/lib

Compilation and installation:

To compile and install the modules, execute the following command.

$ (cd Code; mvn install) $

(Note: this could be useful once you have created JUnit files, for the moment the project does not contain any JUnit file) Use the following options if you do not want to compile and execute the JUnit tests  and do not want to generate the JavaDoc files.
    Then, the build process is much more rapid.

$ (cd Code; mvn install -Dmaven.test.skip=true -DskipTests -Dmaven.javadoc.skip=true -Dcheckstyle.skip) $

In Eclipse:

To load the project in Eclipse, either use the maven plugin (File >
Import > Maven > Existing maven project), or create the Eclipse project
using the following command and then create a Java project in Eclipse:

$ (cd Code; mvn eclipse:clean eclipse:eclipse) $