2020-01-08 19:31:16 +00:00
|
|
|
apply plugin: 'kotlin'
|
2020-01-11 23:29:29 +00:00
|
|
|
apply plugin: 'application'
|
2020-01-08 19:31:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
sourceCompatibility = "1.8"
|
|
|
|
targetCompatibility = "1.8"
|
|
|
|
|
|
|
|
compileKotlin {
|
|
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
|
|
}
|
|
|
|
compileTestKotlin {
|
|
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-01-11 23:29:29 +00:00
|
|
|
mainClassName = "net.dankito.banking.ui.javafx.BankingJavaFXApplication"
|
|
|
|
|
|
|
|
def title = 'Banking'
|
|
|
|
|
|
|
|
|
2020-01-08 19:31:16 +00:00
|
|
|
dependencies {
|
2020-01-15 22:55:16 +00:00
|
|
|
implementation project(':BankingJavaFxControls')
|
2020-01-08 19:31:16 +00:00
|
|
|
|
2020-05-11 16:21:36 +00:00
|
|
|
implementation project(':fints4kBankingClient')
|
2020-01-26 11:23:02 +00:00
|
|
|
implementation project(':hbci4jBankingClient')
|
2020-01-15 22:55:16 +00:00
|
|
|
|
2020-06-13 14:04:12 +00:00
|
|
|
implementation project(':fints4k')
|
|
|
|
implementation project(':fints4k-jvm')
|
|
|
|
|
2020-06-04 11:48:40 +00:00
|
|
|
implementation project(':LuceneBankingPersistence')
|
2020-01-08 21:32:29 +00:00
|
|
|
|
2020-06-13 14:04:12 +00:00
|
|
|
|
|
|
|
implementation "net.dankito.text.extraction:poppler-text-extractor:$textExtractorVersion"
|
|
|
|
implementation "net.dankito.text.extraction:pdfbox-text-extractor:$textExtractorVersion"
|
|
|
|
implementation "net.dankito.text.extraction:itext2-text-extractor:$textExtractorVersion"
|
|
|
|
implementation "net.dankito.text.extraction:tesseract4-commandline-text-extractor:$textExtractorVersion"
|
|
|
|
implementation "net.dankito.text.extraction:tika-text-extractor:$textExtractorVersion"
|
|
|
|
|
2020-01-08 21:32:29 +00:00
|
|
|
implementation "ch.qos.logback:logback-classic:$logbackVersion"
|
2020-01-11 23:29:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
jar {
|
|
|
|
manifest {
|
|
|
|
attributes 'Main-Class': mainClassName,
|
|
|
|
'Implementation-Title': title,
|
|
|
|
'Implementation-Version': appVersionName
|
|
|
|
}
|
|
|
|
|
|
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
|
|
|
|
|
|
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
|
2020-01-08 19:31:16 +00:00
|
|
|
}
|