2019-10-12 18:54:02 +00:00
|
|
|
apply plugin: 'java-library'
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
|
|
|
|
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
|
|
|
|
compileKotlin {
|
|
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
|
|
}
|
|
|
|
compileTestKotlin {
|
|
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2020-11-17 00:34:07 +00:00
|
|
|
api project(':BankFinder')
|
2021-11-06 14:30:56 +00:00
|
|
|
// why can't Gradle find BankFinder? If the same applies to you, publish BankFinder to Maven Local first and uncomment this line:
|
|
|
|
// api "net.dankito.banking:BankFinder-jvm:$version"
|
2019-10-12 18:54:02 +00:00
|
|
|
|
|
|
|
implementation 'org.docx4j:docx4j-JAXB-ReferenceImpl:8.1.3'
|
|
|
|
|
|
|
|
|
2022-02-12 23:17:45 +00:00
|
|
|
testImplementation "junit:junit:4.12"
|
2020-09-16 23:34:47 +00:00
|
|
|
testImplementation "org.assertj:assertj-core:$assertJVersion"
|
2019-10-12 18:54:02 +00:00
|
|
|
|
2020-09-16 23:34:47 +00:00
|
|
|
testImplementation "ch.qos.logback:logback-core:$logbackVersion"
|
|
|
|
testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
|
2019-10-12 18:54:02 +00:00
|
|
|
}
|