2023-07-03 08:40:32 +00: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 11:57:32 +00:00
|
|
|
implementation libs.bundles.gson
|
|
|
|
|
2023-07-03 08:40:32 +00:00
|
|
|
implementation project(':code:common:db')
|
|
|
|
implementation project(':code:common:model')
|
|
|
|
implementation project(':code:common:service')
|
|
|
|
implementation project(':code:common:config')
|
2023-07-04 16:25:42 +00:00
|
|
|
implementation project(':code:common:renderer')
|
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:service-discovery')
|
|
|
|
implementation project(':code:common:service-client')
|
|
|
|
implementation project(':code:api:search-api')
|
2023-07-06 16:04:16 +00:00
|
|
|
implementation project(':code:api:index-api')
|
2023-07-17 11:57:32 +00:00
|
|
|
implementation project(':code:api:process-mqapi')
|
2023-07-03 08:40:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
implementation libs.lombok
|
|
|
|
annotationProcessor libs.lombok
|
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
|
|
|
|
implementation libs.prometheus
|
|
|
|
implementation libs.notnull
|
|
|
|
implementation libs.guice
|
2023-07-17 11:57:32 +00:00
|
|
|
|
2023-07-03 08:40:32 +00:00
|
|
|
implementation libs.trove
|
|
|
|
implementation libs.spark
|
|
|
|
implementation libs.fastutil
|
2023-07-17 10:27:27 +00:00
|
|
|
implementation libs.commons.io
|
2023-07-03 08:40:32 +00: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"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|