With the new inclusion of Gradle replacing ant (bye bye 2014) this brings some more modern features. Running any of the commands will automatically install the Gradle wrapper, no other install needed. This uses Gradle 6.5.1 and Java 11.
./gradlew run
./gradlew javadoc
./gradlew jar
This allows you to use JSyn as a maven/gradle repository on your machine.
./gradlew install
It can be used via
repositories {
// ...
mavenLocal()
}
dependencies {
// ...
implementation 'com.jsyn:jsyn:17.0.0-SNAPSHOT'
}