CatgirlIntelligenceAgency/code/features-convert/topic-detection/build.gradle

44 lines
870 B
Groovy
Raw Normal View History

2023-03-04 13:19:01 +01:00
plugins {
id 'java'
id "io.freefair.lombok" version "8.2.2"
id "de.undercouch.download" version "5.1.0"
id 'jvm-test-suite'
2023-03-04 13:19:01 +01:00
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(20))
2023-03-04 13:19:01 +01:00
}
}
dependencies {
implementation project(':code:common:config')
implementation project(':code:libraries:language-processing')
implementation project(':third-party:porterstemmer')
2023-03-04 13:19:01 +01:00
implementation libs.lombok
annotationProcessor libs.lombok
implementation libs.bundles.slf4j
implementation libs.guice
2023-03-04 13:19:01 +01:00
implementation libs.notnull
implementation libs.jsoup
2023-03-04 13:19:01 +01:00
testImplementation libs.bundles.slf4j.test
testImplementation libs.bundles.junit
testImplementation libs.mockito
}
2023-03-04 13:19:01 +01:00
test {
useJUnitPlatform()
}
task fastTests(type: Test) {
useJUnitPlatform {
excludeTags "slow"
}
}