40c9d2050f
Removed the need to have to run an external tool to pre-process the data in order to load stackexchange-style data into the search engine. Removed the tool itself. This stirred up some issues with the dependencies, that were due to both third-party:ing xz and importing it as a dependency. This has been fixed, and :third-party:xz was removed.
76 lines
2.4 KiB
Groovy
76 lines
2.4 KiB
Groovy
plugins {
|
|
id 'java'
|
|
|
|
id 'com.palantir.docker' version '0.35.0'
|
|
id 'application'
|
|
id 'jvm-test-suite'
|
|
}
|
|
|
|
application {
|
|
mainClass = 'nu.marginalia.executor.ExecutorMain'
|
|
applicationName = 'executor-service'
|
|
}
|
|
|
|
tasks.distZip.enabled = false
|
|
|
|
apply from: "$rootProject.projectDir/docker-service-with-dist.gradle"
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(21))
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':code:common:config')
|
|
implementation project(':code:common:model')
|
|
implementation project(':code:common:process')
|
|
implementation project(':code:common:db')
|
|
implementation project(':code:common:linkdb')
|
|
|
|
implementation project(':code:common:service')
|
|
implementation project(':code:common:service-client')
|
|
implementation project(':code:common:service-discovery')
|
|
|
|
implementation project(':third-party:commons-codec')
|
|
|
|
implementation project(':code:libraries:message-queue')
|
|
|
|
implementation project(':code:process-models:crawl-spec')
|
|
implementation project(':code:process-models:crawling-model')
|
|
implementation project(':code:features-crawl:link-parser')
|
|
implementation project(':code:features-convert:data-extractors')
|
|
implementation project(':code:features-convert:stackexchange-xml')
|
|
implementation project(':code:features-index:index-journal')
|
|
implementation project(':code:api:index-api')
|
|
implementation project(':code:api:query-api')
|
|
implementation project(':code:api:process-mqapi')
|
|
implementation project(':code:api:executor-api')
|
|
implementation project(':third-party:encyclopedia-marginalia-nu')
|
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
implementation libs.spark
|
|
implementation libs.gson
|
|
implementation libs.prometheus
|
|
implementation libs.notnull
|
|
implementation libs.guice
|
|
implementation libs.trove
|
|
implementation libs.protobuf
|
|
implementation libs.rxjava
|
|
implementation libs.zstd
|
|
implementation libs.jsoup
|
|
implementation libs.commons.io
|
|
implementation libs.commons.lang3
|
|
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'
|
|
testImplementation project(':code:libraries:test-helpers')
|
|
|
|
} |