46423612e3
Also adds a few tests to the server/client code.
39 lines
909 B
Groovy
39 lines
909 B
Groovy
plugins {
|
|
id 'java'
|
|
|
|
id "com.google.protobuf" version "0.9.4"
|
|
id 'jvm-test-suite'
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(21))
|
|
}
|
|
}
|
|
|
|
jar.archiveBaseName = 'link-graph-api'
|
|
|
|
apply from: "$rootProject.projectDir/protobuf.gradle"
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
|
|
|
dependencies {
|
|
implementation project(':code:common:model')
|
|
implementation project(':code:common:config')
|
|
implementation project(':code:common:service')
|
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
implementation libs.prometheus
|
|
implementation libs.notnull
|
|
implementation libs.guice
|
|
implementation libs.gson
|
|
implementation libs.bundles.protobuf
|
|
implementation libs.roaringbitmap
|
|
implementation libs.bundles.grpc
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
testImplementation libs.bundles.junit
|
|
testImplementation libs.mockito
|
|
|
|
}
|