2023-03-04 12:19:01 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2023-09-23 09:01:43 +00:00
|
|
|
|
2023-03-11 12:48:40 +00:00
|
|
|
id 'jvm-test-suite'
|
2023-03-04 12:19:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2024-04-24 11:54:04 +00:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
|
2023-03-04 12:19:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-23 15:13:40 +00:00
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
|
|
|
|
2023-03-04 12:19:01 +00:00
|
|
|
dependencies {
|
2023-03-13 16:39:53 +00:00
|
|
|
implementation project(':third-party:porterstemmer')
|
|
|
|
implementation project(':code:common:model')
|
2023-03-11 12:48:40 +00:00
|
|
|
implementation project(':code:common:config')
|
|
|
|
implementation project(':code:libraries:language-processing')
|
2023-03-13 22:40:26 +00:00
|
|
|
implementation project(':code:libraries:term-frequency-dict')
|
2023-03-04 12:19:01 +00:00
|
|
|
|
2023-03-11 12:48:40 +00:00
|
|
|
implementation libs.bundles.slf4j
|
2023-03-13 16:39:53 +00:00
|
|
|
|
2023-03-04 12:19:01 +00:00
|
|
|
implementation libs.notnull
|
2023-03-13 16:39:53 +00:00
|
|
|
|
2023-03-11 12:48:40 +00:00
|
|
|
implementation libs.jsoup
|
2023-03-13 16:39:53 +00:00
|
|
|
implementation libs.commons.lang3
|
|
|
|
|
2024-05-23 12:20:01 +00:00
|
|
|
implementation libs.guava
|
|
|
|
implementation dependencies.create(libs.guice.get()) {
|
|
|
|
exclude group: 'com.google.guava'
|
|
|
|
}
|
2023-03-13 16:39:53 +00:00
|
|
|
implementation libs.guava
|
|
|
|
|
|
|
|
implementation libs.trove
|
|
|
|
implementation libs.fastutil
|
2023-03-04 12:19:01 +00:00
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
2023-04-02 11:43:24 +00:00
|
|
|
testImplementation project(':code:processes:converting-process')
|
2023-03-04 12:19:01 +00:00
|
|
|
}
|