Skip to content

Instantly share code, notes, and snippets.

@mukeshsolanki
Last active September 14, 2023 07:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mukeshsolanki/841003e3ddc2ec7f6992c436579e3839 to your computer and use it in GitHub Desktop.
Save mukeshsolanki/841003e3ddc2ec7f6992c436579e3839 to your computer and use it in GitHub Desktop.
plugins {
id "com.google.protobuf" version "0.9.4"
}
dependencies {
implementation "com.google.protobuf:protobuf-javalite:3.24.3"
}
protobuf {
protoc {
artifact = "com.google.protobuf:protoc:3.24.3"
}
// Generates the java Protobuf-lite code for the Protobufs in this project. See
// https://github.com/google/protobuf-gradle-plugin#customizing-protobuf-compilation
// for more information.
generateProtoTasks {
all().each { task ->
task.builtins {
java {
option 'lite'
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment