mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-02-24 13:19:02 +00:00
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(22))
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
jmhImplementation project(':code:libraries:language-processing')
|
|
jmhImplementation libs.guava
|
|
jmhImplementation libs.commons.codec
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|