2023-03-13 22:40:26 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2023-09-23 09:01:43 +00:00
|
|
|
|
2023-03-13 22:40:26 +00:00
|
|
|
|
|
|
|
id 'jvm-test-suite'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2024-04-24 11:54:04 +00:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
|
2023-03-13 22:40:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-23 15:13:40 +00:00
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
|
|
|
|
2023-03-13 22:40:26 +00:00
|
|
|
dependencies {
|
|
|
|
implementation project(':third-party:rdrpostagger')
|
|
|
|
implementation project(':third-party:porterstemmer')
|
2024-03-19 13:28:42 +00:00
|
|
|
implementation project(':third-party:commons-codec')
|
|
|
|
implementation project(':third-party:openzim')
|
2023-03-13 22:40:26 +00:00
|
|
|
implementation project(':code:common:model')
|
|
|
|
implementation project(':code:common:config')
|
|
|
|
implementation project(':code:libraries:easy-lsh')
|
2023-03-17 15:03:11 +00:00
|
|
|
implementation project(':code:libraries:array')
|
2024-04-13 15:07:23 +00:00
|
|
|
implementation project(':code:libraries:blocking-thread-pool')
|
2023-03-13 22:40:26 +00:00
|
|
|
|
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
implementation libs.notnull
|
|
|
|
|
|
|
|
implementation libs.guice
|
|
|
|
implementation libs.jsoup
|
|
|
|
implementation libs.trove
|
|
|
|
implementation libs.fastutil
|
|
|
|
|
|
|
|
implementation libs.bundles.nlp
|
|
|
|
implementation libs.commons.lang3
|
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
}
|