fints4k/ui/BankingUiCommon/build.gradle

33 lines
728 B
Groovy
Raw Normal View History

2019-11-03 21:30:52 +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 "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
api "net.dankito.utils:java-utils:$javaUtilsVersion"
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"
// TODO: try to get rid of this import
2020-05-11 16:21:36 +00:00
api project(':fints4k')
testImplementation "junit:junit:$junitVersion"
testImplementation "org.assertj:assertj-core:$assertJVersion"
2020-04-26 22:22:14 +00:00
testImplementation "org.slf4j:slf4j-simple:$slf4jVersion"
2019-11-03 21:30:52 +00:00
}