com.google.protobuf
Owner: Eric Anderson
The Protobuf plugin provides protobuf compilation to your project.
https://github.com/google/protobuf-gradle-plugin
Sources: https://github.com/google/protobuf-gradle-plugin
Version 0.9.4 (latest)
0.9.4
Created 14 July 2023.
The Protobuf plugin provides protobuf compilation to your project.
Using the plugins DSL:
plugins {
id("com.google.protobuf") version "0.9.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.google.protobuf:protobuf-gradle-plugin:0.9.4")
}
}
apply(plugin = "com.google.protobuf")
Using the plugins DSL:
plugins {
id "com.google.protobuf" version "0.9.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.google.protobuf:protobuf-gradle-plugin:0.9.4"
}
}
apply plugin: "com.google.protobuf"