2021-10-16 14:45:32 +05:30
|
|
|
plugins {
|
|
|
|
id 'org.jetbrains.kotlin.jvm'
|
|
|
|
id 'application'
|
|
|
|
}
|
|
|
|
|
|
|
|
group = 'uniffi.bdk'
|
|
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
testImplementation 'org.jetbrains.kotlin:kotlin-test'
|
|
|
|
implementation project(':jvm')
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnit()
|
|
|
|
}
|
|
|
|
|
|
|
|
compileKotlin {
|
|
|
|
kotlinOptions.jvmTarget = '1.8'
|
|
|
|
}
|
|
|
|
|
|
|
|
compileTestKotlin {
|
|
|
|
kotlinOptions.jvmTarget = '1.8'
|
|
|
|
}
|
|
|
|
|
|
|
|
application {
|
2021-10-18 14:49:10 -07:00
|
|
|
mainClass.set('MainKt')
|
2021-10-16 14:45:32 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
run {
|
|
|
|
standardInput = System.in
|
|
|
|
}
|