Search Gradle plugins

Version 0.3.2 (latest)

Created 02 March 2020.

Generating source code from protobuf.

Using the plugins DSL:

plugins {
  id("io.logbee.gradle.protobuf.python") version "0.3.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.logbee:gradle-protobuf-plugin:0.3.2")
  }
}

apply(plugin = "io.logbee.gradle.protobuf.python")

Using the plugins DSL:

plugins {
  id "io.logbee.gradle.protobuf.python" version "0.3.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.logbee:gradle-protobuf-plugin:0.3.2"
  }
}

apply plugin: "io.logbee.gradle.protobuf.python"

Learn how to apply plugins to subprojects