2020-07-09 11:34:45 +00:00
|
|
|
apply plugin: 'java-library'
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
|
|
|
|
|
|
|
|
ext.artifactName = "lucene-bank-finder"
|
|
|
|
|
|
|
|
sourceCompatibility = "7"
|
|
|
|
targetCompatibility = "7"
|
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api project(":BankFinder")
|
|
|
|
|
|
|
|
implementation "net.dankito.search:lucene-4-utils:$luceneUtilsVersion"
|
|
|
|
|
|
|
|
|
2020-09-07 18:06:49 +00:00
|
|
|
// TODO: enable to reference BankFinder tests again to run LuceneBankFinderTest
|
|
|
|
// testImplementation project(path: ':BankFinder', configuration: 'testOutput')
|
2020-07-09 11:34:45 +00:00
|
|
|
|
|
|
|
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"
|
|
|
|
|
|
|
|
}
|