mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-10-05 21:22:39 +02:00
It's long surpassed the single-responsibility library it once was, and is as such out of place in its original location, and fits better among the function-type modules.
21 lines
373 B
Groovy
21 lines
373 B
Groovy
plugins {
|
|
id 'java'
|
|
id "me.champeau.jmh" version "0.6.6"
|
|
}
|
|
|
|
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()
|
|
}
|