搜索 Gradle 插件

com.gitlab.protobuf-tools.proto-publish

所有者: Barak Silbert

管理 protobuf 架构 - 将 protobuf 架构发布到 Maven 仓库,发布前执行代码审查和向后兼容性验证,并生成文档。

https://gitlab.com/protobuf-tools/proto-publish

来源: https://gitlab.com/protobuf-tools/proto-publish.git

版本 1.0.0(最新版)

1.0.0

创建于 2021 年 8 月 18 日。

管理 protobuf 架构 - 将 protobuf 架构发布到 Maven 仓库,发布前执行代码审查和向后兼容性验证,并生成文档。

使用 plugins DSL

plugins {
  id("com.gitlab.protobuf-tools.proto-publish") version "1.0.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.gitlab.protobuf-tools:proto-publish:1.0.0")
  }
}

apply(plugin = "com.gitlab.protobuf-tools.proto-publish")

使用 plugins DSL

plugins {
  id "com.gitlab.protobuf-tools.proto-publish" version "1.0.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.gitlab.protobuf-tools:proto-publish:1.0.0"
  }
}

apply plugin: "com.gitlab.protobuf-tools.proto-publish"

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