2020-01-08 19:31:16 +00:00
|
|
|
apply plugin: 'java-library'
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
|
|
|
|
|
|
|
|
sourceCompatibility = "1.8"
|
|
|
|
targetCompatibility = "1.8"
|
|
|
|
|
|
|
|
compileKotlin {
|
|
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
|
|
}
|
|
|
|
compileTestKotlin {
|
|
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2020-06-03 15:49:29 +00:00
|
|
|
api project(":BankingUiCommon")
|
|
|
|
|
|
|
|
implementation project(":fints4k-jvm")
|
|
|
|
|
|
|
|
api project(":BankFinder")
|
2020-01-08 19:31:16 +00:00
|
|
|
|
|
|
|
api "net.dankito.utils:java-fx-utils:$javaFxUtilsVersion"
|
|
|
|
}
|