2023-03-04 12:19:01 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2023-09-23 09:01:43 +00:00
|
|
|
|
2023-03-04 12:19:01 +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-03-04 12:19:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
application {
|
|
|
|
mainClass = 'nu.marginalia.loading.LoaderMain'
|
|
|
|
applicationName = 'loader-process'
|
|
|
|
}
|
|
|
|
|
2023-03-11 10:34:51 +00:00
|
|
|
tasks.distZip.enabled = false
|
|
|
|
|
2024-02-23 15:13:40 +00:00
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
|
|
|
|
2023-03-04 12:19:01 +00:00
|
|
|
dependencies {
|
2023-03-16 20:35:54 +00:00
|
|
|
implementation project(':code:common:process')
|
2024-07-27 09:44:13 +00:00
|
|
|
implementation project(':code:processes:process-mq-api')
|
2024-02-22 17:01:35 +00:00
|
|
|
implementation project(':code:index:api')
|
2023-03-07 16:14:32 +00:00
|
|
|
implementation project(':code:common:model')
|
2023-07-14 15:08:10 +00:00
|
|
|
implementation project(':code:common:db')
|
2023-03-07 16:14:32 +00:00
|
|
|
implementation project(':code:common:config')
|
|
|
|
implementation project(':code:common:service')
|
2023-08-24 09:55:58 +00:00
|
|
|
implementation project(':code:common:linkdb')
|
2024-02-22 17:01:35 +00:00
|
|
|
implementation project(':code:index:index-journal')
|
2023-08-15 08:53:23 +00:00
|
|
|
implementation project(':code:libraries:message-queue')
|
2023-03-07 16:14:32 +00:00
|
|
|
implementation project(':code:libraries:language-processing')
|
2024-05-30 12:20:36 +00:00
|
|
|
implementation project(':code:libraries:coded-sequence')
|
2023-08-01 13:00:15 +00:00
|
|
|
implementation project(':third-party:commons-codec')
|
2024-05-30 12:20:36 +00:00
|
|
|
implementation project(':third-party:parquet-floor')
|
2023-10-09 11:45:45 +00:00
|
|
|
testImplementation project(':code:services-application:search-service')
|
2023-03-04 12:19:01 +00:00
|
|
|
|
2024-07-27 09:44:13 +00:00
|
|
|
implementation project(':code:processes:crawling-process:model')
|
|
|
|
implementation project(':code:processes:converting-process:model')
|
2023-03-13 16:39:53 +00:00
|
|
|
implementation project(':code:features-convert:keyword-extraction')
|
2023-03-04 12:19:01 +00:00
|
|
|
|
2024-02-28 10:40:11 +00:00
|
|
|
implementation project(':code:functions:link-graph:partition')
|
|
|
|
|
2023-03-04 12:19:01 +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-03-04 12:19:01 +00:00
|
|
|
implementation libs.gson
|
|
|
|
implementation libs.commons.lang3
|
|
|
|
implementation libs.zstd
|
2024-05-28 12:18:03 +00:00
|
|
|
implementation libs.roaringbitmap
|
2023-03-04 12:19:01 +00:00
|
|
|
implementation libs.trove
|
|
|
|
implementation libs.bundles.mariadb
|
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
|
|
|
|
testImplementation libs.bundles.selenium
|
|
|
|
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-03-04 12:19:01 +00:00
|
|
|
}
|
|
|
|
|