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 'jvm-test-suite'
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2023-09-23 09:01:43 +00:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(21))
|
2023-03-04 12:19:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
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-12-16 14:57:10 +00:00
|
|
|
implementation project(':code:common:config')
|
2023-03-16 20:35:54 +00:00
|
|
|
implementation project(':code:common:process')
|
2023-03-07 16:14:32 +00:00
|
|
|
implementation project(':code:libraries:big-string')
|
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:service-discovery')
|
2023-12-13 14:33:42 +00:00
|
|
|
implementation project(':code:features-crawl:content-type')
|
2023-03-07 16:14:32 +00:00
|
|
|
implementation project(':code:libraries:language-processing')
|
2023-12-13 15:22:19 +00:00
|
|
|
implementation project(':third-party:parquet-floor')
|
2023-12-15 20:31:16 +00:00
|
|
|
implementation project(':third-party:commons-codec')
|
2023-03-04 12:19:01 +00:00
|
|
|
|
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
|
|
|
|
implementation libs.notnull
|
2023-12-13 15:22:19 +00:00
|
|
|
implementation libs.bundles.parquet
|
2023-03-04 12:19:01 +00:00
|
|
|
|
2023-12-13 14:33:42 +00:00
|
|
|
implementation libs.jwarc
|
2023-03-04 12:19:01 +00:00
|
|
|
implementation libs.gson
|
2023-12-13 14:33:42 +00:00
|
|
|
implementation libs.commons.io
|
2023-12-16 14:57:10 +00:00
|
|
|
implementation libs.commons.lang3
|
2023-12-13 14:33:42 +00:00
|
|
|
implementation libs.okhttp3
|
|
|
|
implementation libs.jsoup
|
2023-03-16 20:35:54 +00:00
|
|
|
implementation libs.snakeyaml
|
2023-03-04 12:19:01 +00:00
|
|
|
implementation libs.zstd
|
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
}
|