Browse Source

Update README.md, mention how to run the jar

Also mention gradlew.bat for Windows.
master
Abe Pazos 1 year ago
committed by Edwin Jakobs
parent
commit
8ed15ab6eb
  1. 6
      README.md

6
README.md

@ -11,9 +11,9 @@ You will find some [basic instructions](https://guide.openrndr.org/setUpYourFirs
## Gradle tasks ## Gradle tasks
- `run` runs the TemplateProgram - `./gradlew run` runs the TemplateProgram (Use `gradlew.bat run` under Windows)
- `jar` creates an executable platform specific jar file with all dependencies - `./gradlew shadowJar` creates an executable platform specific jar file with all dependencies. Run the resulting program by typing `java -jar build/libs/openrndr-template-1.0.0-all.jar` in a terminal from the project root.
- `jpackageZip` creates a zip with a stand-alone executable for the current platform (works with Java 14 only) - `./gradlew jpackageZip` creates a zip with a stand-alone executable for the current platform (works with Java 14 only)
## Cross builds ## Cross builds

Loading…
Cancel
Save