File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 44libbdkffi.dylib
55/.idea
66.DS_Store
7+ /examples /data /
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
22
33plugins {
44 kotlin(" jvm" ) version " 2.1.10"
5+ application
56}
67
78group = " org.bitcoindevkit"
@@ -32,3 +33,17 @@ tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
3233 jvmTarget.set(JvmTarget .JVM_11 )
3334 }
3435}
36+
37+ tasks.register<JavaExec >(" WalletSetupBip32" ) {
38+ group = " application"
39+ description = " Runs the main function in the WalletSetupBip32 example"
40+ mainClass.set(" org.bitcoindevkit.WalletSetupBip32Kt" )
41+ classpath = sourceSets[" main" ].runtimeClasspath
42+ }
43+
44+ tasks.register<JavaExec >(" MultisigTransaction" ) {
45+ group = " application"
46+ description = " Runs the main function in the MultisigTransaction example"
47+ mainClass.set(" org.bitcoindevkit.MultisigTransactionKt" )
48+ classpath = sourceSets[" main" ].runtimeClasspath
49+ }
You can’t perform that action at this time.
0 commit comments