26 lines
537 B
Groovy
26 lines
537 B
Groovy
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')
|
|
|
|
|
|
testImplementation "junit:junit:$junitVersion"
|
|
|
|
testImplementation "org.assertj:assertj-core:$assertJVersion"
|
|
testImplementation "org.mockito:mockito-core:$mockitoVersion"
|
|
|
|
testImplementation "org.slf4j:slf4j-simple:$slf4jVersion"
|
|
} |