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 {
|
2024-03-21 11:09:24 +00:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(22))
|
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 {
|
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
|
2023-03-16 20:35:54 +00:00
|
|
|
implementation libs.notnull
|
2023-03-12 10:42:07 +00:00
|
|
|
|
|
|
|
implementation libs.jsoup
|
|
|
|
|
2023-03-16 20:35:54 +00:00
|
|
|
implementation libs.guice
|
|
|
|
implementation libs.guava
|
|
|
|
implementation libs.bundles.gson
|
|
|
|
implementation libs.trove
|
|
|
|
implementation libs.fastutil
|
|
|
|
implementation libs.commons.lang3
|
2023-03-12 10:42:07 +00:00
|
|
|
|
2023-03-04 12:19:01 +00:00
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
2023-06-10 09:00:11 +00:00
|
|
|
|
|
|
|
testImplementation project(':code:features-convert:keyword-extraction')
|
|
|
|
testImplementation project(':code:libraries:language-processing')
|
|
|
|
testImplementation project(':code:libraries:term-frequency-dict')
|
|
|
|
testImplementation project(':code:common:config')
|
|
|
|
testImplementation project(':code:common:model')
|
2023-03-04 12:19:01 +00:00
|
|
|
}
|
|
|
|
|