2024-02-23 12:26:11 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'jvm-test-suite'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2024-04-24 11:54:04 +00:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
|
2024-02-23 12:26:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-23 15:13:40 +00:00
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
|
|
|
|
2024-02-23 12:26:11 +00:00
|
|
|
dependencies {
|
|
|
|
// These look weird but they're needed to be able to spawn the processes
|
|
|
|
// from the executor service
|
|
|
|
|
|
|
|
implementation project(':code:processes:website-adjacencies-calculator')
|
|
|
|
implementation project(':code:processes:crawling-process')
|
2024-11-19 18:35:01 +00:00
|
|
|
implementation project(':code:processes:live-crawler')
|
2024-02-23 12:26:11 +00:00
|
|
|
implementation project(':code:processes:loading-process')
|
|
|
|
implementation project(':code:processes:converting-process')
|
|
|
|
implementation project(':code:processes:index-constructor-process')
|
|
|
|
|
|
|
|
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(':third-party:commons-codec')
|
|
|
|
|
|
|
|
implementation project(':code:libraries:message-queue')
|
2024-03-19 13:28:42 +00:00
|
|
|
implementation project(':code:libraries:term-frequency-dict')
|
2024-02-23 12:26:11 +00:00
|
|
|
|
2024-02-28 10:40:11 +00:00
|
|
|
implementation project(':code:functions:link-graph:api')
|
2024-11-08 17:55:02 +00:00
|
|
|
implementation project(':code:functions:live-capture:api')
|
2024-03-18 12:45:23 +00:00
|
|
|
implementation project(':code:functions:search-query')
|
2024-02-23 12:26:11 +00:00
|
|
|
implementation project(':code:execution:api')
|
|
|
|
|
2024-07-27 09:44:13 +00:00
|
|
|
implementation project(':code:processes:crawling-process:model')
|
|
|
|
implementation project(':code:processes:crawling-process:model')
|
2024-07-30 08:04:59 +00:00
|
|
|
implementation project(':code:processes:crawling-process:ft-link-parser')
|
|
|
|
implementation project(':code:execution:data-extractors')
|
2024-02-23 12:26:11 +00:00
|
|
|
implementation project(':code:index:index-journal')
|
|
|
|
implementation project(':code:index:api')
|
2024-07-27 09:44:13 +00:00
|
|
|
implementation project(':code:processes:process-mq-api')
|
2024-02-23 12:26:11 +00:00
|
|
|
implementation project(':third-party:encyclopedia-marginalia-nu')
|
|
|
|
|
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
|
2024-05-23 12:20:01 +00: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 12:26:11 +00:00
|
|
|
implementation libs.gson
|
|
|
|
implementation libs.prometheus
|
|
|
|
implementation libs.notnull
|
2024-05-23 12:20:01 +00:00
|
|
|
implementation libs.guava
|
|
|
|
implementation dependencies.create(libs.guice.get()) {
|
|
|
|
exclude group: 'com.google.guava'
|
|
|
|
}
|
2024-02-23 12:26:11 +00: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 08:35:48 +00:00
|
|
|
testImplementation libs.commons.codec
|
2024-02-23 12:26:11 +00:00
|
|
|
testImplementation 'org.testcontainers:mariadb:1.17.4'
|
|
|
|
testImplementation 'org.testcontainers:junit-jupiter:1.17.4'
|
|
|
|
testImplementation project(':code:libraries:test-helpers')
|
|
|
|
|
|
|
|
}
|