2020-01-02 21:39:02 +00:00
|
|
|
apply plugin: 'java-library'
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
|
|
|
|
|
|
|
|
sourceCompatibility = "1.7"
|
|
|
|
targetCompatibility = "1.7"
|
|
|
|
|
|
|
|
compileKotlin {
|
|
|
|
kotlinOptions.jvmTarget = "1.6"
|
|
|
|
}
|
|
|
|
compileTestKotlin {
|
|
|
|
kotlinOptions.jvmTarget = "1.6"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api project(':BankingUiCommon')
|
2020-05-11 16:21:36 +00:00
|
|
|
implementation project(':fints4k')
|
2020-01-02 21:39:02 +00:00
|
|
|
}
|