An interactive 3x3 Puzzle Cube in LWJGL
First, install java 17 (the current LTS), maven, and git. On Debian and Ubuntu, you do this by executing this command:
> sudo apt install maven openjdk-17-jdk git
Next, clone this git repository:
> git clone https://github.com/calebabutler/java-puzzle-cube.git
> cd java-puzzle-cube
Build the project, download the dependencies, and package the project:
> mvn compile
> mvn dependency:copy-dependencies
> mvn package
Lastly, run the jar:
> java -jar target/puzzlecube-1.0.jar

