31 lines
791 B
Groovy
31 lines
791 B
Groovy
plugins {
|
|
id 'java'
|
|
id "de.undercouch.download" version "5.1.0"
|
|
id 'jvm-test-suite'
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(21))
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':code:common:model')
|
|
implementation project(':code:common:service')
|
|
implementation project(':code:api:index-api')
|
|
|
|
implementation libs.bundles.slf4j
|
|
implementation libs.guice
|
|
implementation libs.notnull
|
|
implementation libs.trove
|
|
implementation libs.fastutil
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
testImplementation libs.bundles.junit
|
|
testImplementation libs.mockito
|
|
testImplementation project(':code:libraries:term-frequency-dict')
|
|
testImplementation project(':code:libraries:braille-block-punch-cards')
|
|
}
|
|
|