Search Gradle plugins

Using the plugins DSL:

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

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.4.1")
  }
}

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

Using the plugins DSL:

plugins {
  id "com.google.protobuf" version "0.4.1"
}

Using legacy plugin application:

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

apply plugin: "com.google.protobuf"

Learn how to apply plugins to subprojects