File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change 20
20
.editorconfig
21
21
bdk.kt
22
22
.kotlin /
23
+ bdk-jvm /examples /data /
23
24
24
25
# Swift related
25
26
/.build
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2
2
3
3
plugins {
4
4
kotlin(" jvm" ) version " 2.1.10"
5
+ application
5
6
}
6
7
7
8
group = " org.bitcoindevkit"
@@ -32,3 +33,20 @@ tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
32
33
jvmTarget.set(JvmTarget .JVM_11 )
33
34
}
34
35
}
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
+ }
50
+
51
+
52
+
You can’t perform that action at this time.
0 commit comments