[Util] Add missing build.gradle to util module

This commit is contained in:
2023-11-02 16:00:22 +01:00
parent 76adb78867
commit 0778d4ff2e

26
util/build.gradle Normal file
View File

@@ -0,0 +1,26 @@
plugins {
id 'java'
id 'application'
}
group = 'com.bartlomiejpluta.base'
version = 'unspecified'
repositories {
mavenCentral()
}
dependencies {
implementation project(":proto")
implementation "com.google.protobuf:protobuf-java-util:$protobufVersion"
compileOnly "org.projectlombok:lombok:${lombokVersion}"
annotationProcessor "org.projectlombok:lombok:${lombokVersion}"
}
task wrapper(type: Wrapper) {
}
task prepareKotlinBuildScriptModel {
}