A Risk Game implementation according to Warzone rules.
Generated documentation:
- Java 15 Runtime Environment
- Java 15 SDK
JAVA_HOME
environment variable set to the root Java directory. Example:C:\Users\Username\.jdks\openjdk-15.0.1\
JAVA_PATH
environment variable set to the bin Java directory. Example:C:\Users\Username\.jdks\openjdk-15.0.1\bin\
The repository includes a Maven wrapper mvnw
that can be used to execute all necessary Maven commands.
Some of the useful commands include:
Command | Description |
---|---|
mvnw compile |
Compiles the project |
mvnw test |
Runs the unit tests |
mvnw package |
Creates a jar package for the application |
mvnw clean |
Clears the target directory |
mvnw surefire-report:report |
Generates an HTML test report |
mvnw javadoc:javadoc |
Generates Javadoc |
mvnw exec:java |
Executes the application |