2023-11-04 13:24:17 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id "de.undercouch.download" version "5.1.0"
|
|
|
|
id 'jvm-test-suite'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2024-04-24 11:54:04 +00:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
|
2023-11-04 13:24:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-23 15:13:40 +00:00
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
|
|
|
|
2023-11-04 13:24:17 +00:00
|
|
|
dependencies {
|
|
|
|
implementation project(':code:common:config')
|
|
|
|
implementation project(':code:common:model')
|
|
|
|
implementation project(':code:common:db')
|
|
|
|
implementation project(':code:common:process')
|
|
|
|
implementation project(':code:features-convert:keyword-extraction')
|
|
|
|
implementation project(':code:libraries:language-processing')
|
2024-03-19 13:28:42 +00:00
|
|
|
implementation project(':code:libraries:term-frequency-dict')
|
2023-11-04 13:24:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
implementation libs.guice
|
2024-03-21 13:24:25 +00:00
|
|
|
implementation libs.trove
|
2023-11-04 13:24:17 +00:00
|
|
|
implementation libs.bundles.mariadb
|
|
|
|
implementation libs.duckdb
|
|
|
|
implementation libs.notnull
|
|
|
|
implementation libs.jsoup
|
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
}
|
|
|
|
|