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(17))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
jmhImplementation project(':code:libraries:language-processing')
|
||
|
jmhImplementation libs.guava
|
||
|
jmhImplementation libs.commons.codec
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
useJUnitPlatform()
|
||
|
}
|