41 lines
804 B
Groovy
41 lines
804 B
Groovy
plugins {
|
|
id 'java'
|
|
|
|
id 'application'
|
|
|
|
id 'jvm-test-suite'
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(21))
|
|
}
|
|
}
|
|
|
|
application {
|
|
mainClass = 'nu.marginalia.tools.StackexchangeConverter'
|
|
applicationName = 'stackexchange-converter'
|
|
}
|
|
|
|
tasks.distZip.enabled = false
|
|
|
|
dependencies {
|
|
implementation project(':code:features-convert:stackexchange-xml')
|
|
|
|
implementation libs.bundles.slf4j
|
|
implementation libs.notnull
|
|
|
|
implementation libs.guice
|
|
implementation libs.jsoup
|
|
implementation libs.trove
|
|
implementation libs.fastutil
|
|
|
|
implementation libs.bundles.nlp
|
|
implementation libs.commons.lang3
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
testImplementation libs.bundles.junit
|
|
testImplementation libs.mockito
|
|
}
|
|
|