org.curioswitch.gradle-protobuf-plugin
所有者: Choko
使用 Gradle 最新功能的现代 protobuf 插件。
https://github.com/curioswitch/curiostack/tree/master/tools/gradle-plugins/gradle-protobuf-plugin
来源: https://github.com/curioswitch/curiostack.git
使用 插件 DSL
plugins {
id("org.curioswitch.gradle-protobuf-plugin") version "0.5.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("org.curioswitch.curiostack:gradle-protobuf-plugin:0.5.0")
}
}
apply(plugin = "org.curioswitch.gradle-protobuf-plugin")
使用 插件 DSL
plugins {
id "org.curioswitch.gradle-protobuf-plugin" version "0.5.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "org.curioswitch.curiostack:gradle-protobuf-plugin:0.5.0"
}
}
apply plugin: "org.curioswitch.gradle-protobuf-plugin"