2020-01-26 11:23:02 +00:00
|
|
|
apply plugin: 'java-library'
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
|
|
|
|
|
2020-06-14 19:05:48 +00:00
|
|
|
ext.artifactName = "hbci4j-banking-client"
|
|
|
|
|
|
|
|
|
2020-01-26 11:23:02 +00:00
|
|
|
sourceCompatibility = "1.8"
|
|
|
|
targetCompatibility = "1.8"
|
|
|
|
|
|
|
|
compileKotlin {
|
|
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
|
|
}
|
|
|
|
compileTestKotlin {
|
|
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api project(':BankingUiCommon')
|
|
|
|
implementation "com.github.hbci4j:hbci4j-core:$hbci4jVersion"
|
|
|
|
|
|
|
|
|
|
|
|
testImplementation "junit:junit:$junitVersion"
|
|
|
|
testImplementation "org.assertj:assertj-core:$assertJVersion"
|
|
|
|
}
|