fints4k/tools/BankListCreator/build.gradle

27 lines
580 B
Groovy
Raw Normal View History

apply plugin: 'java-library'
apply plugin: 'kotlin'
sourceCompatibility = 1.8
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
dependencies {
2020-09-16 19:44:38 +00:00
implementation project(':BankFinder')
implementation 'org.docx4j:docx4j-JAXB-ReferenceImpl:8.1.3'
testImplementation "junit:junit:$junitVersion"
testImplementation "org.assertj:assertj-core:$assertJVersion"
testImplementation "ch.qos.logback:logback-core:$logbackVersion"
testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
}