MarginaliaSearch/third-party/commons-codec/build.gradle
Viktor Lofgren 002afca1c5 (sys) Upgrade to JDK22
This also entails upgrading JIB to 3.4.1 and Lombok to 1.18.32.
2024-03-21 14:33:27 +01:00

21 lines
349 B
Groovy

plugins {
id 'java'
id "me.champeau.jmh" version "0.6.6"
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(22))
}
}
dependencies {
jmhImplementation project(':code:libraries:language-processing')
jmhImplementation libs.guava
jmhImplementation libs.commons.codec
}
test {
useJUnitPlatform()
}