2024-02-23 13:26:11 +01:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'jvm-test-suite'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2024-04-24 13:54:04 +02:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
|
2024-02-23 13:26:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-23 16:13:40 +01:00
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
|
|
|
|
2024-02-23 13:26:11 +01:00
|
|
|
dependencies {
|
|
|
|
// These look weird but they're needed to be able to spawn the processes
|
|
|
|
// from the executor service
|
|
|
|
|
2024-11-21 16:00:09 +01:00
|
|
|
implementation project(':code:processes:export-task-process')
|
2024-02-23 13:26:11 +01:00
|
|
|
implementation project(':code:processes:crawling-process')
|
2024-11-20 15:55:15 +01:00
|
|
|
implementation project(':code:processes:live-crawling-process')
|
2024-02-23 13:26:11 +01:00
|
|
|
implementation project(':code:processes:loading-process')
|
2025-06-10 18:28:13 +02:00
|
|
|
implementation project(':code:processes:ping-process')
|
2025-06-21 14:10:27 +02:00
|
|
|
implementation project(':code:processes:new-domain-process')
|
2024-02-23 13:26:11 +01:00
|
|
|
implementation project(':code:processes:converting-process')
|
|
|
|
|
|
|
|
implementation project(':code:common:config')
|
|
|
|
implementation project(':code:common:model')
|
|
|
|
implementation project(':code:common:db')
|
|
|
|
implementation project(':code:common:linkdb')
|
|
|
|
|
|
|
|
implementation project(':code:common:service')
|
|
|
|
|
|
|
|
implementation project(':third-party:commons-codec')
|
|
|
|
|
|
|
|
implementation project(':code:libraries:message-queue')
|
2025-09-18 10:29:54 +02:00
|
|
|
implementation project(':code:functions:language-processing')
|
2024-02-23 13:26:11 +01:00
|
|
|
|
2024-02-28 11:40:11 +01:00
|
|
|
implementation project(':code:functions:link-graph:api')
|
2024-11-08 18:55:02 +01:00
|
|
|
implementation project(':code:functions:live-capture:api')
|
2024-03-18 13:45:23 +01:00
|
|
|
implementation project(':code:functions:search-query')
|
2025-06-06 14:23:37 +02:00
|
|
|
implementation project(':code:functions:nsfw-domain-filter')
|
2024-02-23 13:26:11 +01:00
|
|
|
implementation project(':code:execution:api')
|
|
|
|
|
2024-07-27 11:44:13 +02:00
|
|
|
implementation project(':code:processes:crawling-process:model')
|
2024-07-30 10:04:59 +02:00
|
|
|
implementation project(':code:processes:crawling-process:ft-link-parser')
|
2024-02-23 13:26:11 +01:00
|
|
|
implementation project(':code:index:index-journal')
|
|
|
|
implementation project(':code:index:api')
|
2024-07-27 11:44:13 +02:00
|
|
|
implementation project(':code:processes:process-mq-api')
|
2024-02-23 13:26:11 +01:00
|
|
|
implementation project(':third-party:encyclopedia-marginalia-nu')
|
|
|
|
|
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
|
2024-05-23 14:20:01 +02:00
|
|
|
implementation dependencies.create(libs.spark.get()) {
|
|
|
|
exclude group: 'org.eclipse.jetty'
|
|
|
|
}
|
|
|
|
implementation libs.bundles.jetty
|
|
|
|
|
|
|
|
implementation libs.guava
|
|
|
|
libs.bundles.grpc.get().each {
|
|
|
|
implementation dependencies.create(it) {
|
|
|
|
exclude group: 'com.google.guava'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-02-23 13:26:11 +01:00
|
|
|
implementation libs.gson
|
|
|
|
implementation libs.prometheus
|
|
|
|
implementation libs.notnull
|
2024-05-23 14:20:01 +02:00
|
|
|
implementation libs.guava
|
|
|
|
implementation dependencies.create(libs.guice.get()) {
|
|
|
|
exclude group: 'com.google.guava'
|
|
|
|
}
|
2024-02-23 13:26:11 +01:00
|
|
|
implementation libs.trove
|
|
|
|
implementation libs.zstd
|
|
|
|
implementation libs.jsoup
|
|
|
|
implementation libs.commons.io
|
|
|
|
implementation libs.commons.compress
|
|
|
|
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')
|
2024-08-25 10:35:48 +02:00
|
|
|
testImplementation libs.commons.codec
|
2024-02-23 13:26:11 +01:00
|
|
|
testImplementation 'org.testcontainers:mariadb:1.17.4'
|
|
|
|
testImplementation 'org.testcontainers:junit-jupiter:1.17.4'
|
|
|
|
testImplementation project(':code:libraries:test-helpers')
|
|
|
|
|
|
|
|
}
|