MarginaliaSearch/code/functions/link-graph/aggregate/build.gradle

38 lines
843 B
Groovy
Raw Normal View History

2023-03-04 12:19:01 +00:00
plugins {
id 'java'
id 'application'
2023-03-04 12:19:01 +00:00
id 'jvm-test-suite'
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
2023-03-04 12:19:01 +00:00
}
}
apply from: "$rootProject.projectDir/srcsets.gradle"
2023-03-04 12:19:01 +00:00
dependencies {
implementation project(':code:functions:link-graph:api')
2023-03-07 16:14:32 +00:00
implementation project(':code:common:config')
implementation project(':code:common:service')
implementation project(':code:common:model')
2023-03-04 12:19:01 +00:00
implementation libs.bundles.slf4j
implementation libs.prometheus
implementation libs.bundles.grpc
2023-03-04 12:19:01 +00:00
implementation libs.notnull
implementation libs.guice
implementation libs.fastutil
implementation libs.bundles.mariadb
2023-03-04 12:19:01 +00:00
testImplementation libs.bundles.slf4j.test
testImplementation libs.bundles.junit
testImplementation libs.mockito
2023-03-04 12:19:01 +00:00
}