2023-08-25 10:52:54 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2023-09-23 09:01:43 +00:00
|
|
|
|
2023-08-25 10:52:54 +00:00
|
|
|
id 'application'
|
|
|
|
id 'jvm-test-suite'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2024-04-24 11:54:04 +00:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
|
2023-08-25 10:52:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
application {
|
|
|
|
mainClass = 'nu.marginalia.index.IndexConstructorMain'
|
|
|
|
applicationName = 'index-construction-process'
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.distZip.enabled = false
|
|
|
|
|
2024-02-23 15:13:40 +00:00
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
|
|
|
|
2023-08-25 10:52:54 +00:00
|
|
|
dependencies {
|
2024-07-27 09:44:13 +00:00
|
|
|
implementation project(':code:processes:process-mq-api')
|
2023-08-25 10:52:54 +00:00
|
|
|
implementation project(':code:common:service')
|
|
|
|
implementation project(':code:common:db')
|
2023-10-14 10:07:40 +00:00
|
|
|
implementation project(':code:common:config')
|
2023-08-25 10:52:54 +00:00
|
|
|
implementation project(':code:common:model')
|
|
|
|
implementation project(':code:libraries:message-queue')
|
|
|
|
|
2024-02-22 17:01:35 +00:00
|
|
|
implementation project(':code:index:query')
|
2024-02-23 15:13:40 +00:00
|
|
|
implementation project(':code:index:index-forward')
|
|
|
|
implementation project(':code:index:index-reverse')
|
2024-02-22 17:01:35 +00:00
|
|
|
implementation project(':code:index:index-journal')
|
2023-08-25 10:52:54 +00:00
|
|
|
|
|
|
|
implementation libs.bundles.slf4j
|
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 10:52:54 +00:00
|
|
|
implementation libs.bundles.mariadb
|
|
|
|
implementation libs.bundles.gson
|
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
|
|
|
|
testImplementation project(':code:processes:test-data')
|
|
|
|
}
|
|
|
|
|