[Util] Add missing build.gradle to util module
This commit is contained in:
26
util/build.gradle
Normal file
26
util/build.gradle
Normal 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 {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user