BankingClient/BankListCreator/build.gradle

27 lines
548 B
Groovy

apply plugin: 'java-library'
apply plugin: 'kotlin'
sourceCompatibility = 1.8
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
dependencies {
compile project(':fints4javaLib')
implementation 'org.docx4j:docx4j-JAXB-ReferenceImpl:8.1.3'
testCompile "junit:junit:$junitVersion"
testCompile "org.assertj:assertj-core:$assertJVersion"
testCompile "ch.qos.logback:logback-core:$logbackVersion"
testCompile "ch.qos.logback:logback-classic:$logbackVersion"
}