2020-04-25 00:45:37 +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 {
|
|
|
|
implementation project(":BankingUiCommon")
|
|
|
|
|
|
|
|
implementation project(":BankingPersistenceJson")
|
|
|
|
|
|
|
|
implementation "net.dankito.search:lucene-4-utils:$luceneUtilsVersion"
|
|
|
|
|
|
|
|
|
|
|
|
testImplementation "junit:junit:$junitVersion"
|
|
|
|
testImplementation "org.assertj:assertj-core:$assertJVersion"
|
|
|
|
|
|
|
|
testImplementation "org.mockito:mockito-core:$mockitoVersion"
|
2020-04-28 14:51:26 +00:00
|
|
|
|
|
|
|
testImplementation "org.slf4j:slf4j-simple:$slf4jVersion"
|
2020-04-25 00:45:37 +00:00
|
|
|
}
|