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