MarginaliaSearch/code/features-convert/summary-extraction/build.gradle
Viktor Lofgren fe8d583fdd (sys) Upgrade to JDK22
This also entails upgrading JIB to 3.4.1 and Lombok to 1.18.32.
2024-03-21 14:27:13 +01:00

40 lines
963 B
Groovy

plugins {
id 'java'
id 'jvm-test-suite'
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(22))
}
}
apply from: "$rootProject.projectDir/srcsets.gradle"
dependencies {
implementation libs.bundles.slf4j
implementation libs.notnull
implementation libs.jsoup
implementation libs.guice
implementation libs.guava
implementation libs.bundles.gson
implementation libs.trove
implementation libs.fastutil
implementation libs.commons.lang3
testImplementation libs.bundles.slf4j.test
testImplementation libs.bundles.junit
testImplementation libs.mockito
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')
}