Requires Java 21 and Maven.
This project is there so you can verify that your git/maven/java configuration runs correctly.
The goal is to clone the repository, run the project, do some changes and save them to github.
Below are the instructions in command line, you can also use the interface available through your favorite IDE (that should be IntelliJ).
- Clone the project
git clone <repo-url>- see the Code button above for the url - Move into the newly created folder
cd <folder> - Build an executable:
mvn package - Run the executable:
java -jar target/dummyApp-1.0-SNAPSHOT.jar - Run the tests:
mvn test - Do some changes to the main method
- Add the changes to git
git add . - Commit the changes
git commit -m "Describe the changes here" - Push
git push - Refresh the page and GitHub and see that your changes are there ;)