Search Gradle plugins

Version 0.3.2 (latest)

0.3.2

Created 02 March 2020.

Generating source code from protobuf.

Add this plugin to your build using the plugins DSL:

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

See also:

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