2019-11-03 21:30:52 +00:00
|
|
|
apply plugin: 'java-library'
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
|
|
|
|
|
2020-06-14 19:05:48 +00:00
|
|
|
ext.artifactName = "banking-ui-common"
|
|
|
|
|
|
|
|
|
2019-11-03 21:30:52 +00:00
|
|
|
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"
|
2020-01-08 17:02:41 +00:00
|
|
|
|
2020-06-13 14:04:12 +00:00
|
|
|
api "net.dankito.text.extraction:text-extractor-common:$textExtractorVersion"
|
|
|
|
api "net.dankito.text.extraction:text-info-extractor:$textInfoExtractorVersion"
|
|
|
|
|
2020-04-26 22:22:14 +00:00
|
|
|
implementation "net.dankito.utils:favicon-finder:1.0.0-SNAPSHOT"
|
|
|
|
|
|
|
|
implementation "org.jsoup:jsoup:1.13.1"
|
|
|
|
|
2020-01-08 17:02:41 +00:00
|
|
|
// TODO: try to get rid of this import
|
2020-05-11 16:21:36 +00:00
|
|
|
api project(':fints4k')
|
2020-04-23 01:03:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
testImplementation "junit:junit:$junitVersion"
|
|
|
|
testImplementation "org.assertj:assertj-core:$assertJVersion"
|
2020-04-26 22:22:14 +00:00
|
|
|
|
2020-04-28 14:51:26 +00:00
|
|
|
testImplementation "org.slf4j:slf4j-simple:$slf4jVersion"
|
2019-11-03 21:30:52 +00:00
|
|
|
}
|