MarginaliaSearch/code/processes/index-constructor-process/build.gradle

54 lines
1.4 KiB
Groovy
Raw Normal View History

plugins {
id 'java'
id 'application'
id 'jvm-test-suite'
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
}
}
application {
mainClass = 'nu.marginalia.index.IndexConstructorMain'
applicationName = 'index-construction-process'
}
tasks.distZip.enabled = false
apply from: "$rootProject.projectDir/srcsets.gradle"
dependencies {
implementation project(':code:process-mqapi')
implementation project(':code:common:process')
implementation project(':code:common:service')
implementation project(':code:common:db')
implementation project(':code:common:config')
implementation project(':code:common:model')
implementation project(':code:libraries:message-queue')
2024-02-22 17:01:35 +00:00
implementation project(':code:index:query')
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')
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'
}
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')
}