2023-03-04 12:19:01 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'jvm-test-suite'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2024-04-24 11:54:04 +00:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
|
2023-03-04 12:19:01 +00:00
|
|
|
}
|
|
|
|
}
|
2024-02-20 10:41:14 +00:00
|
|
|
|
2024-02-23 15:13:40 +00:00
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
|
|
|
|
2023-03-04 12:19:01 +00:00
|
|
|
dependencies {
|
2023-03-07 16:14:32 +00:00
|
|
|
implementation project(':code:common:model')
|
|
|
|
implementation project(':code:common:config')
|
2024-03-03 09:49:23 +00:00
|
|
|
implementation project(':code:common:service')
|
2024-06-26 12:03:30 +00:00
|
|
|
implementation project(':code:common:db')
|
2023-08-15 08:53:23 +00:00
|
|
|
implementation project(':code:libraries:message-queue')
|
2024-02-22 14:27:39 +00:00
|
|
|
implementation project(':code:functions:search-query:api')
|
|
|
|
|
2023-03-04 12:19:01 +00:00
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
|
|
|
|
implementation libs.prometheus
|
|
|
|
implementation libs.notnull
|
2024-05-23 12:20:01 +00:00
|
|
|
implementation libs.guava
|
|
|
|
implementation dependencies.create(libs.guice.get()) {
|
|
|
|
exclude group: 'com.google.guava'
|
|
|
|
}
|
2024-03-03 09:49:23 +00:00
|
|
|
implementation libs.bundles.protobuf
|
2023-03-16 20:35:54 +00:00
|
|
|
implementation libs.fastutil
|
2023-10-24 09:09:12 +00:00
|
|
|
implementation libs.javax.annotation
|
|
|
|
implementation libs.bundles.gson
|
2024-05-23 12:20:01 +00:00
|
|
|
implementation libs.guava
|
|
|
|
libs.bundles.grpc.get().each {
|
|
|
|
implementation dependencies.create(it) {
|
|
|
|
exclude group: 'com.google.guava'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-03-04 12:19:01 +00:00
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
}
|
2023-10-24 09:09:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
|