We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cd61de commit 338a3cdCopy full SHA for 338a3cd
secp-examples-java/build.gradle
@@ -1,6 +1,7 @@
1
plugins {
2
id 'java'
3
id 'application'
4
+ id 'org.beryx.jlink' version '3.1.4-rc'
5
}
6
7
ext.moduleName = 'org.bitcoinj.secp.examples'
@@ -41,6 +42,13 @@ configurations {
41
42
nativeToolRuntimeOnly.extendsFrom runtimeOnly
43
44
45
+jlink {
46
+ options = ['--add-modules', 'org.bitcoinj.secp.ffm']
47
+ launcher {
48
+ name = application.applicationName
49
+ }
50
+}
51
+
52
tasks.register('runEcdsa', JavaExec) {
53
javaLauncher = javaToolchains.launcherFor {
54
languageVersion = JavaLanguageVersion.of(javaToolchainVersion)
0 commit comments