22 lines
394 B
Groovy
22 lines
394 B
Groovy
plugins {
|
|
id 'java'
|
|
|
|
|
|
id 'jvm-test-suite'
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(21))
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':code:common:config')
|
|
implementation project(':code:common:model')
|
|
implementation project(':code:libraries:term-frequency-dict')
|
|
implementation libs.bundles.slf4j
|
|
implementation libs.notnull
|
|
}
|
|
|