Light version of Microsoft Teams for a Network course project.
- JDK 11+ installed (check with
java -version) - Maven 3.6+ installed (check with
mvn -v) - macOS (instructions below)
- (Optional) IntelliJ IDEA for development and debugging
Use your fork or the original repo:
git clone git@github.com:Baptiiiiste/Equipes.git
cd Equipes
Build and create an executable JAR (skip tests if desired):
mvn clean package -DskipTests
The artifact is typically in target/ as artifactId-version.jar. Replace with the actual name from your pom.xml.
- Open IntelliJ IDEA →
File→Open→ select the projectpom.xml. - Wait for Maven import to finish.
- Create a Run configuration of type
Application:Main class: the class withpublic static void main(String[] args)Use classpath of module: select the main module
- Run or debug the configuration.
Run unit tests:
mvn test
src/main/java: application source codesrc/test/java: testspom.xml: Maven configuration
- Java version error: install the correct JDK and set
JAVA_HOME. - Main class not found: ensure
pom.xmlconfig for the jar plugin or run withmvn exec:java -Dexec.mainClass="your.MainClass".
Save this content to README.md.