2023-07-03 10:40:32 +02:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id "io.freefair.lombok" version "5.3.3.3"
|
|
|
|
id 'application'
|
|
|
|
id 'com.palantir.docker' version '0.34.0'
|
|
|
|
id 'jvm-test-suite'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
|
|
|
languageVersion.set(JavaLanguageVersion.of(17))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
application {
|
|
|
|
mainClass = 'nu.marginalia.control.ControlMain'
|
|
|
|
applicationName = 'control-service'
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.distZip.enabled = false
|
|
|
|
|
|
|
|
apply from: "$rootProject.projectDir/docker-service.gradle"
|
|
|
|
|
|
|
|
dependencies {
|
2023-07-17 13:57:32 +02:00
|
|
|
implementation libs.bundles.gson
|
|
|
|
|
2023-07-03 10:40:32 +02:00
|
|
|
implementation project(':code:common:db')
|
|
|
|
implementation project(':code:common:model')
|
|
|
|
implementation project(':code:common:service')
|
|
|
|
implementation project(':code:common:config')
|
2023-07-04 18:25:42 +02:00
|
|
|
implementation project(':code:common:renderer')
|
2023-07-04 19:52:30 +02:00
|
|
|
implementation project(':code:common:message-queue')
|
2023-07-03 10:40:32 +02:00
|
|
|
implementation project(':code:common:service-discovery')
|
|
|
|
implementation project(':code:common:service-client')
|
|
|
|
implementation project(':code:api:search-api')
|
2023-07-06 18:04:16 +02:00
|
|
|
implementation project(':code:api:index-api')
|
2023-07-17 13:57:32 +02:00
|
|
|
implementation project(':code:api:process-mqapi')
|
2023-07-03 10:40:32 +02:00
|
|
|
|
|
|
|
|
|
|
|
implementation libs.lombok
|
|
|
|
annotationProcessor libs.lombok
|
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
|
|
|
|
implementation libs.prometheus
|
|
|
|
implementation libs.notnull
|
|
|
|
implementation libs.guice
|
2023-07-17 13:57:32 +02:00
|
|
|
|
2023-07-03 10:40:32 +02:00
|
|
|
implementation libs.trove
|
|
|
|
implementation libs.spark
|
|
|
|
implementation libs.fastutil
|
2023-07-17 12:27:27 +02:00
|
|
|
implementation libs.commons.io
|
2023-07-03 10:40:32 +02:00
|
|
|
implementation libs.bundles.mariadb
|
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
testImplementation platform('org.testcontainers:testcontainers-bom:1.17.4')
|
|
|
|
testImplementation 'org.testcontainers:mariadb:1.17.4'
|
|
|
|
testImplementation 'org.testcontainers:junit-jupiter:1.17.4'
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
|
|
|
|
task fastTests(type: Test) {
|
|
|
|
useJUnitPlatform {
|
|
|
|
excludeTags "slow"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|