2020-06-03 15:49:29 +00:00
|
|
|
apply plugin: 'java-library'
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
|
2020-06-14 19:05:48 +00:00
|
|
|
|
|
|
|
ext.artifactName = "bank-finder"
|
|
|
|
|
2020-06-03 15:49:29 +00:00
|
|
|
sourceCompatibility = "7"
|
|
|
|
targetCompatibility = "7"
|
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation project(":BankingUiCommon")
|
|
|
|
|
|
|
|
implementation "net.dankito.search:lucene-4-utils:$luceneUtilsVersion"
|
|
|
|
|
|
|
|
|
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter:$junit5Version"
|
|
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junit5Version"
|
|
|
|
|
|
|
|
testImplementation "org.assertj:assertj-core:$assertJVersion"
|
|
|
|
testImplementation "org.mockito:mockito-core:$mockitoVersion"
|
|
|
|
|
|
|
|
}
|