2023-10-08 22:22:26 +02:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'jvm-test-suite'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
|
|
|
languageVersion.set(JavaLanguageVersion.of(21))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation project(':code:common:model')
|
|
|
|
implementation project(':code:api:index-api')
|
|
|
|
implementation project(':code:common:config')
|
|
|
|
implementation project(':code:libraries:message-queue')
|
2023-10-09 13:27:44 +02:00
|
|
|
implementation project(':code:features-index:index-query')
|
2023-10-08 22:22:26 +02:00
|
|
|
implementation project(':code:common:service-discovery')
|
|
|
|
implementation project(':code:common:service-client')
|
|
|
|
|
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
|
2024-01-08 15:53:13 +01:00
|
|
|
implementation libs.roaringbitmap
|
2023-10-08 22:22:26 +02:00
|
|
|
implementation libs.prometheus
|
|
|
|
implementation libs.notnull
|
2024-01-08 15:53:13 +01:00
|
|
|
implementation libs.trove
|
2023-10-08 22:22:26 +02:00
|
|
|
implementation libs.guice
|
|
|
|
implementation libs.rxjava
|
|
|
|
implementation libs.gson
|
2023-10-24 11:09:12 +02:00
|
|
|
implementation libs.bundles.grpc
|
|
|
|
implementation libs.protobuf
|
2023-10-08 22:22:26 +02:00
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
|
|
|
|
}
|