35 lines
638 B
Groovy
35 lines
638 B
Groovy
apply plugin: 'java-library'
|
|
apply plugin: 'kotlin'
|
|
|
|
|
|
ext.artifactName = "bank-finder"
|
|
|
|
sourceCompatibility = "7"
|
|
targetCompatibility = "7"
|
|
|
|
|
|
dependencies {
|
|
api project(":BankingUiCommon")
|
|
|
|
|
|
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"
|
|
|
|
}
|
|
|
|
|
|
task jarTest (type: Jar) {
|
|
from sourceSets.test.output
|
|
classifier = 'test'
|
|
}
|
|
|
|
configurations {
|
|
testOutput
|
|
}
|
|
|
|
artifacts {
|
|
testOutput jarTest
|
|
} |