搜索Gradle插件

版本 0.9.4(最新版)

0.9.4

创建于2023年7月14日。

The Protobuf插件为您的项目提供protobuf编译功能。

使用插件DSL

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

使用旧插件应用程序

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

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

使用插件DSL

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

使用旧插件应用程序

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

apply plugin: "com.google.protobuf"

了解如何将插件应用到子项目