MarginaliaSearch/code/libraries/test-helpers/build.gradle
Viktor Lofgren fe8d583fdd (sys) Upgrade to JDK22
This also entails upgrading JIB to 3.4.1 and Lombok to 1.18.32.
2024-03-21 14:27:13 +01:00

30 lines
627 B
Groovy

plugins {
id 'java'
id "com.google.protobuf" version "0.9.4"
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(22))
}
}
apply from: "$rootProject.projectDir/protobuf.gradle"
apply from: "$rootProject.projectDir/srcsets.gradle"
dependencies {
implementation libs.bundles.protobuf
implementation libs.bundles.grpc
implementation libs.bundles.slf4j
implementation libs.bundles.mariadb
implementation libs.bundles.slf4j.test
implementation libs.bundles.junit
implementation libs.mockito
implementation libs.bundles.flyway
}
test {
useJUnitPlatform()
}