Search Gradle plugins

Version 0.9.4 (latest)

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"

Learn how to apply plugins to subprojects