mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-02-24 21:29:00 +00:00
30 lines
627 B
Groovy
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()
|
|
}
|