Added modules BankingJavaFxControls and BankingJavaFxApp
This commit is contained in:
parent
00c7084d42
commit
a8f2fceb9a
|
@ -0,0 +1,20 @@
|
||||||
|
apply plugin: 'java-library'
|
||||||
|
apply plugin: 'kotlin'
|
||||||
|
|
||||||
|
|
||||||
|
sourceCompatibility = "1.8"
|
||||||
|
targetCompatibility = "1.8"
|
||||||
|
|
||||||
|
compileKotlin {
|
||||||
|
kotlinOptions.jvmTarget = "1.8"
|
||||||
|
}
|
||||||
|
compileTestKotlin {
|
||||||
|
kotlinOptions.jvmTarget = "1.8"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
api project(':BankingJavaFxControls')
|
||||||
|
|
||||||
|
api project(':fints4javaBankingClient')
|
||||||
|
}
|
|
@ -0,0 +1,20 @@
|
||||||
|
apply plugin: 'java-library'
|
||||||
|
apply plugin: 'kotlin'
|
||||||
|
|
||||||
|
|
||||||
|
sourceCompatibility = "1.8"
|
||||||
|
targetCompatibility = "1.8"
|
||||||
|
|
||||||
|
compileKotlin {
|
||||||
|
kotlinOptions.jvmTarget = "1.8"
|
||||||
|
}
|
||||||
|
compileTestKotlin {
|
||||||
|
kotlinOptions.jvmTarget = "1.8"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
api project(':BankingUiCommon')
|
||||||
|
|
||||||
|
api "net.dankito.utils:java-fx-utils:$javaFxUtilsVersion"
|
||||||
|
}
|
|
@ -8,4 +8,7 @@ include ':BankingUiCommon'
|
||||||
|
|
||||||
include ':fints4javaBankingClient'
|
include ':fints4javaBankingClient'
|
||||||
|
|
||||||
include ':fints4javaAndroidApp'
|
include ':fints4javaAndroidApp'
|
||||||
|
|
||||||
|
include ':BankingJavaFxControls'
|
||||||
|
include ':BankingJavaFxApp'
|
Loading…
Reference in New Issue