mainClassName = 'org.asamk.signal.Main'
-version = '0.7.1'
+version = '0.7.4'
compileJava.options.encoding = 'UTF-8'
}
dependencies {
- implementation 'com.github.turasa:signal-service-java:2.15.3_unofficial_15'
- implementation 'org.bouncycastle:bcprov-jdk15on:1.67'
+ implementation 'com.google.protobuf:protobuf-javalite:3.10.0'
+ implementation 'com.github.turasa:signal-service-java:2.15.3_unofficial_18'
+ implementation 'org.bouncycastle:bcprov-jdk15on:1.68'
implementation 'net.sourceforge.argparse4j:argparse4j:0.8.1'
implementation 'com.github.hypfvieh:dbus-java:3.2.4'
- implementation 'org.slf4j:slf4j-nop:1.7.30'
+ implementation 'org.slf4j:slf4j-simple:1.7.30'
}
jar {
}
}
}
+
+task assembleNativeImage {
+ dependsOn("assemble")
+ doLast {
+ def graalVMHome = System.getenv("GRAALVM_HOME")
+ if (!graalVMHome) {
+ throw new GradleException('Required GRAALVM_HOME environment variable not set.')
+ }
+ def nativeBinaryOutputPath = "$buildDir/native-image"
+ def nativeBinaryName = "signal-cli"
+
+ mkdir nativeBinaryOutputPath
+
+ exec {
+ workingDir "."
+ commandLine "$graalVMHome/bin/native-image",
+ "-H:Path=$nativeBinaryOutputPath",
+ "-H:Name=$nativeBinaryName",
+ "-H:JNIConfigurationFiles=graalvm-config-dir/jni-config.json",
+ "-H:DynamicProxyConfigurationFiles=graalvm-config-dir/proxy-config.json",
+ "-H:ResourceConfigurationFiles=graalvm-config-dir/resource-config.json",
+ "-H:ReflectionConfigurationFiles=graalvm-config-dir/reflect-config.json",
+ "--no-fallback",
+ "--allow-incomplete-classpath",
+ "--report-unsupported-elements-at-runtime",
+ "--enable-url-protocols=http,https",
+ "--enable-https",
+ "--enable-all-security-services",
+ "-cp",
+ sourceSets.main.runtimeClasspath.asPath,
+ project.mainClassName
+ }
+ }
+}