CatgirlIntelligenceAgency/code/functions/link-graph/api/build.gradle

39 lines
909 B
Groovy
Raw Permalink Normal View History

2023-03-04 13:19:01 +01:00
plugins {
id 'java'
id "com.google.protobuf" version "0.9.4"
2023-03-04 13:19:01 +01:00
id 'jvm-test-suite'
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(21))
2023-03-04 13:19:01 +01:00
}
}
jar.archiveBaseName = 'link-graph-api'
apply from: "$rootProject.projectDir/protobuf.gradle"
apply from: "$rootProject.projectDir/srcsets.gradle"
2023-03-04 13:19:01 +01:00
dependencies {
2023-03-07 17:14:32 +01:00
implementation project(':code:common:model')
implementation project(':code:common:config')
implementation project(':code:common:service')
2023-03-04 13:19:01 +01:00
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
2023-03-04 13:19:01 +01:00
testImplementation libs.bundles.slf4j.test
testImplementation libs.bundles.junit
testImplementation libs.mockito
}