2023-07-03 08:40:32 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'application'
|
|
|
|
id 'jvm-test-suite'
|
2024-04-16 13:25:23 +00:00
|
|
|
id 'com.google.cloud.tools.jib' version '3.4.2'
|
2023-07-03 08:40:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2024-04-24 11:54:04 +00:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
|
2023-07-03 08:40:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
application {
|
|
|
|
mainClass = 'nu.marginalia.control.ControlMain'
|
|
|
|
applicationName = 'control-service'
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.distZip.enabled = false
|
|
|
|
|
2024-02-28 10:59:15 +00:00
|
|
|
apply from: "$rootProject.projectDir/docker.gradle"
|
2024-02-22 13:01:23 +00:00
|
|
|
|
2023-07-03 08:40:32 +00:00
|
|
|
|
2024-02-23 15:13:40 +00:00
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
|
|
|
|
2023-07-03 08:40:32 +00:00
|
|
|
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')
|
2024-02-22 14:27:39 +00:00
|
|
|
implementation project(':code:functions:search-query:api')
|
2024-02-23 12:26:11 +00:00
|
|
|
implementation project(':code:execution:api')
|
2024-02-22 17:01:35 +00:00
|
|
|
implementation project(':code:index:api')
|
2024-07-27 09:44:13 +00:00
|
|
|
implementation project(':code:processes:process-mq-api')
|
2023-08-21 16:35:18 +00:00
|
|
|
implementation project(':code:features-search:screenshots')
|
2024-02-22 17:01:35 +00:00
|
|
|
implementation project(':code:index:index-journal')
|
|
|
|
implementation project(':code:index:query')
|
2023-10-14 10:07:40 +00:00
|
|
|
|
2024-07-27 09:44:13 +00:00
|
|
|
implementation project(':code:processes:crawling-process:model')
|
2023-07-03 08:40:32 +00:00
|
|
|
|
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
|
|
|
|
implementation libs.prometheus
|
|
|
|
implementation libs.notnull
|
2024-05-23 12:20:01 +00:00
|
|
|
implementation libs.guava
|
|
|
|
implementation dependencies.create(libs.guice.get()) {
|
|
|
|
exclude group: 'com.google.guava'
|
|
|
|
}
|
2023-08-25 12:57:43 +00:00
|
|
|
implementation libs.zstd
|
2023-11-10 14:26:38 +00:00
|
|
|
implementation libs.handlebars
|
2023-07-17 11:57:32 +00:00
|
|
|
|
2024-05-20 16:02:46 +00:00
|
|
|
implementation libs.duckdb
|
|
|
|
|
2023-07-03 08:40:32 +00:00
|
|
|
implementation libs.trove
|
2024-05-23 12:20:01 +00:00
|
|
|
implementation dependencies.create(libs.spark.get()) {
|
|
|
|
exclude group: 'org.eclipse.jetty'
|
|
|
|
}
|
|
|
|
implementation libs.bundles.jetty
|
2023-07-03 08:40:32 +00:00
|
|
|
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'
|
2024-01-12 14:55:50 +00:00
|
|
|
testImplementation project(':code:libraries:test-helpers')
|
2023-07-03 08:40:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|