34 lines
627 B
Groovy
34 lines
627 B
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
id "io.freefair.lombok" version "5.3.3.3"
|
||
|
|
||
|
id 'jvm-test-suite'
|
||
|
}
|
||
|
|
||
|
java {
|
||
|
toolchain {
|
||
|
languageVersion.set(JavaLanguageVersion.of(17))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation project(':code:common:config')
|
||
|
implementation project(':code:common:model')
|
||
|
implementation project(':code:libraries:term-frequency-dict')
|
||
|
implementation libs.lombok
|
||
|
annotationProcessor libs.lombok
|
||
|
implementation libs.bundles.slf4j
|
||
|
implementation libs.notnull
|
||
|
}
|
||
|
|
||
|
|
||
|
test {
|
||
|
useJUnitPlatform()
|
||
|
}
|
||
|
|
||
|
task fastTests(type: Test) {
|
||
|
useJUnitPlatform {
|
||
|
excludeTags "slow"
|
||
|
}
|
||
|
}
|