aa0d256d6a
* Change language version * Upgrade Lombok to a JDK20 compatible version
21 lines
349 B
Groovy
21 lines
349 B
Groovy
plugins {
|
|
id 'java'
|
|
id "me.champeau.jmh" version "0.6.6"
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(20))
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
jmhImplementation project(':code:libraries:language-processing')
|
|
jmhImplementation libs.guava
|
|
jmhImplementation libs.commons.codec
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|