2023-03-04 13:19:01 +01:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2023-08-23 16:34:32 +02:00
|
|
|
id "io.freefair.lombok" version "8.2.2"
|
2023-03-04 13:19:01 +01:00
|
|
|
id 'jvm-test-suite'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2023-08-23 15:37:49 +02:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(20))
|
2023-03-04 13:19:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-03-07 17:14:32 +01:00
|
|
|
implementation project(':code:libraries:array')
|
|
|
|
implementation project(':code:common:model')
|
2023-03-12 10:50:31 +01:00
|
|
|
implementation project(':code:features-index:lexicon')
|
2023-03-04 13:19:01 +01:00
|
|
|
|
|
|
|
implementation libs.lombok
|
|
|
|
annotationProcessor libs.lombok
|
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
|
|
|
|
implementation libs.prometheus
|
|
|
|
implementation libs.notnull
|
|
|
|
implementation libs.rxjava
|
|
|
|
implementation libs.trove
|
|
|
|
implementation libs.zstd
|
|
|
|
implementation libs.commons.lang3
|
|
|
|
implementation libs.roaringbitmap
|
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
|
|
|
|
task fastTests(type: Test) {
|
|
|
|
useJUnitPlatform {
|
|
|
|
excludeTags "slow"
|
|
|
|
}
|
|
|
|
}
|