X-Git-Url: https://git.nmode.ca/signal-cli/blobdiff_plain/627a587952391414c66403e45aa46261f16f0f4f..9cb1409918fe151422cc557997aa5691c01284b6:/build.gradle.kts diff --git a/build.gradle.kts b/build.gradle.kts index 0ef51bda..f59bc2d0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -3,10 +3,10 @@ plugins { application eclipse `check-lib-versions` - id("org.graalvm.buildtools.native") version "0.9.5" + id("org.graalvm.buildtools.native") version "0.9.6" } -version = "0.9.0" +version = "0.9.2" java { sourceCompatibility = JavaVersion.VERSION_11 @@ -34,8 +34,8 @@ repositories { dependencies { implementation("org.bouncycastle:bcprov-jdk15on:1.69") implementation("net.sourceforge.argparse4j:argparse4j:0.9.0") - implementation("com.github.hypfvieh:dbus-java:3.3.0") - implementation("org.slf4j:slf4j-simple:1.7.30") + implementation("com.github.hypfvieh:dbus-java:3.3.1") + implementation("org.slf4j:slf4j-simple:1.7.32") implementation(project(":lib")) } @@ -64,12 +64,3 @@ tasks.withType { ) } } - -tasks.withType { - val appArgs: String? by project - if (appArgs != null) { - // allow passing command-line arguments to the main application e.g.: - // $ gradle run -PappArgs="['-u', '+...', 'daemon', '--json']" - args = groovy.util.Eval.me(appArgs) as MutableList - } -}