CatgirlIntelligenceAgency/code/features-search/result-ranking/build.gradle

47 lines
1.0 KiB
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"
2023-03-04 13:19:01 +01:00
id 'jvm-test-suite'
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(20))
2023-03-04 13:19:01 +01:00
}
}
dependencies {
implementation project(':code:common:model')
implementation project(':code:common:service')
implementation project(':code:api:index-api')
2023-03-04 13:19:01 +01:00
implementation libs.lombok
annotationProcessor libs.lombok
2023-03-04 13:19:01 +01:00
implementation libs.bundles.slf4j
implementation libs.guice
implementation libs.notnull
implementation libs.trove
implementation libs.fastutil
2023-03-04 13:19:01 +01:00
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')
2023-03-04 13:19:01 +01:00
}
2023-03-04 13:19:01 +01:00
test {
useJUnitPlatform()
}
task fastTests(type: Test) {
useJUnitPlatform {
excludeTags "slow"
}
}