搜索Gradle插件

io.github.5hmlA.protobuf-convention

所有者: 江祖贇

适用于任何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-convention") 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-convention")

使用插件DSL

plugins {
  id "io.github.5hmlA.protobuf-convention" 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-convention"

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