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-09-16 19:44:38 +00:00
|
|
|
implementation project(':BankFinder')
|
2019-10-12 18:54:02 +00:00
|
|
|
|
|
|
|
implementation 'org.docx4j:docx4j-JAXB-ReferenceImpl:8.1.3'
|
|
|
|
|
|
|
|
|
2020-09-16 23:34:47 +00:00
|
|
|
testImplementation "junit:junit:$junitVersion"
|
|
|
|
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
|
|
|
}
|