diff options
author | Phil Burk <[email protected]> | 2023-04-10 17:18:34 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2023-04-10 17:18:34 -0700 |
commit | 40a41092cbab558d7d410ec43d93bb1e4121e86a (patch) | |
tree | 2b2630f2f5e14e1381a96d0af4d591477e1cd33f | |
parent | 2b7829d30de182830876e22e1b1ca12f91e65bd9 (diff) |
Add jitpack instructions to README.mdv17.1.0
For issue #82
-rw-r--r-- | README.md | 34 |
1 files changed, 30 insertions, 4 deletions
@@ -18,6 +18,34 @@ The JSyn source code is available at: https://github.com/philburk/jsyn +## Using JSyn in Your Project + +If your project is not using gradle then build or [download](https://github.com/philburk/jsyn/releases) +the JSyn jar file and add it to your classpath. See Build section below. + +If you are using gradle then you can simply add a dependency on JSyn to your project. +The easiest way is to use jitpack to add the latest release from GitHub. + +For Groovy gradle files use: + + repositories { + maven { url "https://jitpack.io" } + } + + dependencies { + implementation "com.github.philburk:jsyn:latest.release" + } + +The syntax is slightly different if you are using ".kts" files. + + repositories { + maven { url = uri("https://jitpack.io") } + } + + dependencies { + implementation("com.github.philburk:jsyn:latest.release") + } + ## Building JSyn You can build JSyn using either Ant or Gradle. @@ -33,7 +61,7 @@ The resulting jar will be placed in "dist/lib/". To run the built-in test App on a desktop, enter something like this: - java -jar dist/lib/jsyn-20160203.jar + java -jar dist/lib/jsyn-20230410.jar but with the correct date. @@ -51,7 +79,7 @@ Enter: The resulting jar will be placed in "build/libs/". To run the built-in test App on a desktop, enter something like this: - java -jar build/libs/jsyn-17.0.0-SNAPSHOT.jar + java -jar build/libs/jsyn-17.1.0.jar but with the correct version. @@ -61,5 +89,3 @@ To run the unit tests, enter: cd jsyn ./gradlew test - -JSyn - Copyright 1997 Mobileer Inc |