1
1
mirror of https://github.com/MarginaliaSearch/MarginaliaSearch.git synced 2025-10-05 21:22:39 +02:00
Files
MarginaliaSearch/third-party/commons-codec/build.gradle
Viktor Lofgren f6d5d7f196 (chore) Update to Java 25
As usual most of the change is dealing with gradle churn.
2025-09-30 15:59:35 +02:00

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()
}