Search Gradle plugins

Version 0.7.4-testing1

Created 22 January 2016.

The Protobuf plugin provides protobuf compilation to your project.

Using the plugins DSL:

plugins {
  id("com.google.protobuf") version "0.7.4-testing1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.google.protobuf:protobuf-gradle-plugin:0.7.4-testing1")
  }
}

apply(plugin = "com.google.protobuf")

Using the plugins DSL:

plugins {
  id "com.google.protobuf" version "0.7.4-testing1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.google.protobuf:protobuf-gradle-plugin:0.7.4-testing1"
  }
}

apply plugin: "com.google.protobuf"

Learn how to apply plugins to subprojects