Search Gradle plugins

Version 0.9.4 (latest)

0.9.4

Created 14 July 2023.

The Protobuf plugin provides protobuf compilation to your project.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.google.protobuf") version "0.9.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.google.protobuf:protobuf-gradle-plugin:0.9.4")
      }
    }
    
    apply(plugin = "com.google.protobuf")
  • Applying plugins to all subprojects .