2023-10-08 20:22:26 +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))
|
2023-10-08 20:22:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-23 15:13:40 +00:00
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
|
|
|
|
2023-10-08 20:22:26 +00:00
|
|
|
dependencies {
|
2024-02-22 17:01:35 +00:00
|
|
|
implementation project(':code:index:api')
|
2024-02-22 14:27:39 +00:00
|
|
|
|
|
|
|
implementation project(':code:common:db')
|
2023-10-08 20:22:26 +00:00
|
|
|
implementation project(':code:common:config')
|
2024-02-22 14:27:39 +00:00
|
|
|
implementation project(':code:common:model')
|
2024-09-27 11:22:26 +00:00
|
|
|
implementation project(':code:common:service')
|
2023-10-08 20:22:26 +00:00
|
|
|
|
2024-02-22 14:27:39 +00:00
|
|
|
implementation project(':code:functions:search-query:api')
|
|
|
|
|
2024-02-22 17:01:35 +00:00
|
|
|
implementation project(':code:index:query')
|
2024-02-22 14:27:39 +00:00
|
|
|
|
|
|
|
implementation project(':code:libraries:language-processing')
|
|
|
|
implementation project(':code:libraries:term-frequency-dict')
|
|
|
|
|
|
|
|
implementation project(':third-party:porterstemmer')
|
2024-03-12 12:12:50 +00:00
|
|
|
implementation project(':third-party:openzim')
|
|
|
|
implementation project(':third-party:commons-codec')
|
|
|
|
|
2024-02-22 14:27:39 +00:00
|
|
|
implementation project(':code:libraries:language-processing')
|
|
|
|
implementation project(':code:libraries:term-frequency-dict')
|
2024-07-30 08:04:59 +00:00
|
|
|
implementation project(':code:processes:converting-process:ft-keyword-extraction')
|
2024-02-22 14:27:39 +00:00
|
|
|
|
2023-10-08 20:22:26 +00:00
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
|
|
|
|
implementation libs.prometheus
|
2024-05-23 12:20:01 +00:00
|
|
|
|
|
|
|
implementation libs.guava
|
|
|
|
libs.bundles.grpc.get().each {
|
|
|
|
implementation dependencies.create(it) {
|
|
|
|
exclude group: 'com.google.guava'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-10-08 20:22:26 +00:00
|
|
|
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-03-12 12:12:50 +00:00
|
|
|
implementation libs.jsoup
|
|
|
|
implementation libs.commons.lang3
|
2024-02-22 14:27:39 +00:00
|
|
|
implementation libs.trove
|
|
|
|
implementation libs.fastutil
|
|
|
|
implementation libs.bundles.gson
|
|
|
|
implementation libs.bundles.mariadb
|
2023-10-08 20:22:26 +00:00
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
}
|