2023-03-04 13:19:01 +01:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2023-09-23 11:01:43 +02:00
|
|
|
|
2023-03-04 13:19:01 +01:00
|
|
|
id 'application'
|
|
|
|
id 'jvm-test-suite'
|
2024-02-22 14:01:23 +01:00
|
|
|
id 'com.google.cloud.tools.jib' version '3.4.0'
|
2023-03-04 13:19:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
application {
|
|
|
|
mainClass = 'nu.marginalia.dating.DatingMain'
|
|
|
|
applicationName = 'dating-service'
|
|
|
|
}
|
|
|
|
|
2023-03-11 11:34:51 +01:00
|
|
|
tasks.distZip.enabled = false
|
|
|
|
|
2024-02-22 14:01:23 +01:00
|
|
|
jib {
|
|
|
|
from {
|
|
|
|
image = image = rootProject.ext.dockerImageBase
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
image = 'marginalia/'+project.name
|
|
|
|
tags = ['latest']
|
|
|
|
}
|
|
|
|
container {
|
|
|
|
|
|
|
|
mainClass = application.mainClass
|
|
|
|
jvmFlags = ['-Dservice.bind-address=0.0.0.0', '-Dservice.useDockerHostname=TRUE', '-Dsystem.homePath=/wmsa']
|
|
|
|
volumes = ['/wmsa/conf', '/wmsa/model', '/wmsa/data', '/var/log/wmsa']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-04 13:19:01 +01:00
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2023-09-23 11:01:43 +02:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(21))
|
2023-03-04 13:19:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
2023-03-25 15:26:17 +01:00
|
|
|
implementation project(':code:common:db')
|
2023-03-07 17:14:32 +01:00
|
|
|
implementation project(':code:common:model')
|
|
|
|
implementation project(':code:common:service')
|
|
|
|
implementation project(':code:common:service-discovery')
|
|
|
|
implementation project(':code:common:renderer')
|
2023-03-12 10:50:31 +01:00
|
|
|
implementation project(':code:features-search:screenshots')
|
|
|
|
implementation project(':code:features-search:random-websites')
|
2023-03-07 17:14:32 +01:00
|
|
|
implementation project(':code:libraries:language-processing')
|
2023-03-04 13:19:01 +01:00
|
|
|
|
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
|
|
|
|
implementation libs.prometheus
|
|
|
|
implementation libs.notnull
|
|
|
|
implementation libs.guice
|
|
|
|
implementation libs.spark
|
|
|
|
implementation libs.opencsv
|
|
|
|
implementation libs.trove
|
|
|
|
implementation libs.fastutil
|
|
|
|
implementation libs.bundles.gson
|
|
|
|
implementation libs.bundles.mariadb
|
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|