搜索 Gradle 插件

io.github.5hmlA.protobuf

所有者: 江祖贇

适用于任何 Gradle 项目的 protobuf 配置,必要的配置和依赖关系将自动设置

https://github.com/5hmlA/conventions

来源: https://github.com/5hmlA/conventions

版本 2.1.8(最新版)

2.1.8

创建于 2024年 8月 1日。

适用于任何 Gradle 项目的 protobuf 配置,必要的配置和依赖关系将自动设置

使用插件 DSL

plugins {
  id("io.github.5hmlA.protobuf") version "2.1.8"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.5hmlA:conventions:2.1.8")
  }
}

apply(plugin = "io.github.5hmlA.protobuf")

使用插件 DSL

plugins {
  id "io.github.5hmlA.protobuf" version "2.1.8"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.5hmlA:conventions:2.1.8"
  }
}

apply plugin: "io.github.5hmlA.protobuf"

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