mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-10-05 21:22:39 +02:00
21 lines
373 B
Groovy
21 lines
373 B
Groovy
plugins {
|
|
id 'java'
|
|
id "me.champeau.jmh" version "0.7.3"
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
jmhImplementation project(':code:functions:language-processing')
|
|
jmhImplementation libs.guava
|
|
jmhImplementation libs.commons.codec
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|