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'
|
2025-04-30 15:26:52 +02:00
|
|
|
id 'com.google.cloud.tools.jib' version '3.4.5'
|
2023-03-04 13:19:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
application {
|
|
|
|
mainClass = 'nu.marginalia.assistant.AssistantMain'
|
|
|
|
applicationName = 'assistant-service'
|
|
|
|
}
|
|
|
|
|
2023-03-11 11:34:51 +01:00
|
|
|
tasks.distZip.enabled = false
|
|
|
|
|
2023-03-04 13:19:01 +01:00
|
|
|
java {
|
|
|
|
toolchain {
|
2024-04-24 13:54:04 +02:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
|
2023-03-04 13:19:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-23 16:13:40 +01:00
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
2024-02-28 11:59:15 +01:00
|
|
|
apply from: "$rootProject.projectDir/docker.gradle"
|
2024-02-23 16:13:40 +01:00
|
|
|
|
2023-03-04 13:19:01 +01:00
|
|
|
dependencies {
|
2025-02-15 12:50:16 +01:00
|
|
|
|
|
|
|
|
|
|
|
implementation project(':code:common:db')
|
|
|
|
implementation project(':code:common:model')
|
|
|
|
implementation project(':code:common:service')
|
|
|
|
implementation project(':code:common:config')
|
2024-02-22 14:01:23 +01:00
|
|
|
|
2024-09-27 13:45:54 +02:00
|
|
|
implementation project(':code:functions:live-capture')
|
|
|
|
implementation project(':code:functions:live-capture:api')
|
2024-02-22 14:01:23 +01:00
|
|
|
implementation project(':code:functions:math')
|
|
|
|
implementation project(':code:functions:math:api')
|
|
|
|
implementation project(':code:functions:domain-info')
|
|
|
|
implementation project(':code:functions:domain-info:api')
|
|
|
|
|
2025-06-14 16:16:10 +02:00
|
|
|
implementation project(':code:libraries:domain-lock')
|
2023-12-10 17:30:43 +01:00
|
|
|
implementation project(':code:libraries:geo-ip')
|
2025-09-18 10:29:54 +02:00
|
|
|
implementation project(':code:functions:language-processing')
|
2023-03-04 13:19:01 +01:00
|
|
|
|
2025-02-15 12:50:16 +01:00
|
|
|
implementation project(':third-party:symspell')
|
2023-03-04 13:19:01 +01:00
|
|
|
|
2025-02-15 12:50:16 +01:00
|
|
|
|
|
|
|
implementation libs.bundles.slf4j
|
2023-03-04 13:19:01 +01:00
|
|
|
implementation libs.prometheus
|
2025-02-15 13:21:48 +01:00
|
|
|
implementation libs.commons.io
|
2024-05-23 14:20:01 +02:00
|
|
|
implementation libs.guava
|
|
|
|
libs.bundles.grpc.get().each {
|
|
|
|
implementation dependencies.create(it) {
|
|
|
|
exclude group: 'com.google.guava'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-03-04 13:19:01 +01:00
|
|
|
implementation libs.notnull
|
2024-05-23 14:20:01 +02:00
|
|
|
implementation libs.guava
|
|
|
|
implementation dependencies.create(libs.guice.get()) {
|
|
|
|
exclude group: 'com.google.guava'
|
|
|
|
}
|
2025-02-15 13:21:48 +01:00
|
|
|
implementation libs.bundles.jooby
|
2024-05-23 14:20:01 +02:00
|
|
|
implementation libs.bundles.jetty
|
2023-03-04 13:19:01 +01:00
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
|
}
|