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 "de.undercouch.download" version "5.1.0"
|
|
|
|
|
|
|
|
id 'jvm-test-suite'
|
2023-03-04 12:19:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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-11 12:48:40 +00:00
|
|
|
implementation project(':code:common:config')
|
|
|
|
implementation project(':code:libraries:language-processing')
|
2023-03-12 09:04:48 +00:00
|
|
|
implementation project(':third-party:porterstemmer')
|
2023-03-04 12:19:01 +00:00
|
|
|
|
2023-03-11 12:48:40 +00:00
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
implementation libs.guice
|
2023-03-04 12:19:01 +00:00
|
|
|
implementation libs.notnull
|
2023-03-11 12:48:40 +00:00
|
|
|
implementation libs.jsoup
|
2023-03-04 12:19:01 +00:00
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
}
|