41 lines
968 B
Groovy
41 lines
968 B
Groovy
apply plugin: 'java-library'
|
|
apply plugin: 'kotlin'
|
|
|
|
|
|
ext.artifactName = "banking-ui-common"
|
|
|
|
|
|
sourceCompatibility = "1.7"
|
|
targetCompatibility = "1.7"
|
|
|
|
compileKotlin {
|
|
kotlinOptions.jvmTarget = "1.6"
|
|
}
|
|
compileTestKotlin {
|
|
kotlinOptions.jvmTarget = "1.6"
|
|
}
|
|
|
|
|
|
dependencies {
|
|
api "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
|
|
|
|
api "net.dankito.utils:java-utils:$javaUtilsVersion"
|
|
|
|
api project(":BankFinder")
|
|
|
|
api "net.dankito.text.extraction:text-extractor-common:$textExtractorVersion"
|
|
api "net.dankito.text.extraction:text-info-extractor:$textInfoExtractorVersion"
|
|
|
|
implementation "net.dankito.utils:favicon-finder:1.0.0-SNAPSHOT"
|
|
|
|
implementation "org.jsoup:jsoup:1.13.1"
|
|
|
|
// TODO: try to get rid of this import
|
|
api project(':fints4k')
|
|
|
|
|
|
testImplementation "junit:junit:$junitVersion"
|
|
testImplementation "org.assertj:assertj-core:$assertJVersion"
|
|
|
|
testImplementation "org.slf4j:slf4j-simple:$slf4jVersion"
|
|
} |