搜索Gradle插件

版本 0.3.2 (最新)

0.3.2

创建日期:2020年3月2日。

从protobuf生成源代码。

使用 插件DSL

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

使用 旧插件应用程序

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

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

使用 插件DSL

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

使用 旧插件应用程序

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

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

学习如何将插件应用于子项目