- jmonkeyengine - A complete 3D game development suite written purely in Java.
- Minie - A physics library for JMonkeyEngine.
- JavaFX
- JDK-11 (minimum), JDK-17 (preferred)
cd ./Gradle-Projects
git clone https://github.com/capdevon/jme-video-player.git
- Run gradle build script:
./gradlew build
- Change the
mainClassName
to your favourite demo class in thebuild.gradle
. - Now test by running the gradle run task:
./gradlew run
- To visualize the stacktrace, add
--stacktrace
to the above commands:
./gradlew build --stacktrace
./gradlew run --stacktrace
- To stop the daemon process, use stop:
./gradlew -stop
- Use the same commands with the same steps, but change
./gradlew
withgradle
:
gradle build --stacktrace
gradle run --stacktrace
gradle -stop