A program that assigns people to different groups, based on their preferences.
The program can be downloaded by following this link. This page is in swedish.
Some technical docs over groupgeneration - in swedish. Take me there!
Java: 20
Juniper JUnit (org.junit.jupiter:junit-jupiter:5.7.2)
To build the project and get a runnable jar file you run the following command:
./gradlew buildProjectThis generates a jar file that is located in app/build/libs/ and the file name is app-xxx.jar. To run the jar file you just run the following command:
java -jar app-xxx.jargradle:
./gradlew runold way:
javac -encoding utf-8 (Get-ChildItem -Name *.java -Path . -Recurse)
java se.skorup.main.Maingradle:
chmod +x ./gradlew # Only if you don't have the permissions on the file to run it.
./gradlew runold way:
javac -encoding utf-8 $(find . -type f -name "*.java") && java se.skorup.main.Main