2023-03-04 12:19:01 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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-23 15:13:40 +00:00
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
|
|
|
|
2023-03-04 12:19:01 +00:00
|
|
|
dependencies {
|
2023-08-15 08:53:23 +00:00
|
|
|
implementation project(':code:libraries:message-queue')
|
2023-07-03 08:40:32 +00:00
|
|
|
implementation project(':code:common:db')
|
2023-10-14 18:58:55 +00:00
|
|
|
implementation project(':code:common:config')
|
2023-03-04 12:19:01 +00:00
|
|
|
|
2024-05-23 12:20:01 +00:00
|
|
|
implementation dependencies.create(libs.spark.get()) {
|
|
|
|
exclude group: 'org.eclipse.jetty'
|
|
|
|
}
|
|
|
|
implementation libs.bundles.jetty
|
|
|
|
implementation libs.guava
|
|
|
|
implementation dependencies.create(libs.guice.get()) {
|
|
|
|
exclude group: 'com.google.guava'
|
|
|
|
}
|
2023-03-04 12:19:01 +00:00
|
|
|
|
2024-02-20 10:41:14 +00:00
|
|
|
implementation libs.bundles.curator
|
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'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
implementation libs.guava
|
|
|
|
|
2023-03-04 12:19:01 +00:00
|
|
|
implementation libs.bundles.prometheus
|
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
implementation libs.bucket4j
|
2024-03-03 09:49:23 +00:00
|
|
|
implementation libs.notnull
|
|
|
|
implementation libs.bundles.curator
|
2024-01-11 11:40:03 +00:00
|
|
|
implementation libs.bundles.flyway
|
2023-03-04 12:19:01 +00:00
|
|
|
|
2024-12-10 18:13:13 +00:00
|
|
|
libs.bundles.jooby.get().each {
|
|
|
|
implementation dependencies.create(it) {
|
|
|
|
exclude group: 'org.slf4j'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-04 12:19:01 +00:00
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
implementation libs.bundles.mariadb
|
|
|
|
|
2024-03-03 09:49:23 +00:00
|
|
|
testImplementation platform('org.testcontainers:testcontainers-bom:1.17.4')
|
2024-08-25 08:35:48 +00:00
|
|
|
testImplementation libs.commons.codec
|
2024-03-03 09:49:23 +00:00
|
|
|
testImplementation 'org.testcontainers:mariadb:1.17.4'
|
|
|
|
testImplementation 'org.testcontainers:junit-jupiter:1.17.4'
|
|
|
|
testImplementation project(':code:libraries:test-helpers')
|
|
|
|
|
2023-03-04 12:19:01 +00:00
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
|
|
|
|
}
|