2023-10-14 12:07:40 +02:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'jvm-test-suite'
|
2024-02-08 13:01:12 +01:00
|
|
|
id "com.google.protobuf" version "0.9.4"
|
2023-10-14 12:07:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
|
|
|
languageVersion.set(JavaLanguageVersion.of(21))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-08 13:01:12 +01:00
|
|
|
apply from: "$rootProject.projectDir/protobuf.gradle"
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
proto {
|
|
|
|
srcDir 'src/main/protobuf'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-10-14 12:07:40 +02:00
|
|
|
dependencies {
|
|
|
|
implementation project(':code:common:model')
|
|
|
|
implementation project(':code:api:index-api')
|
|
|
|
implementation project(':code:common:config')
|
|
|
|
implementation project(':code:common:db')
|
|
|
|
implementation project(':code:libraries:message-queue')
|
|
|
|
implementation project(':code:common:service-discovery')
|
|
|
|
implementation project(':code:common:service-client')
|
|
|
|
|
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
|
|
|
|
implementation libs.prometheus
|
|
|
|
implementation libs.notnull
|
|
|
|
implementation libs.guice
|
|
|
|
implementation libs.rxjava
|
|
|
|
implementation libs.protobuf
|
2024-02-08 13:01:12 +01:00
|
|
|
implementation libs.bundles.grpc
|
|
|
|
implementation libs.javax.annotation
|
2023-10-14 12:07:40 +02:00
|
|
|
implementation libs.gson
|
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
|
|
|
|
}
|