com.bybutter.sisyphus.protobuf
所有者: ButterCam
用于在基于 sisyphus 框架的项目中编译 proto 文件的插件。
源代码: https://github.com/ButterCam/sisyphus
使用 插件的 DSL
plugins {
id("com.bybutter.sisyphus.protobuf") version "2.1.0"
}
使用 旧插件应用方式
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.bybutter.sisyphus.tools:sisyphus-protobuf-gradle-plugin:2.1.0")
}
}
apply(plugin = "com.bybutter.sisyphus.protobuf")
使用 插件的 DSL
plugins {
id "com.bybutter.sisyphus.protobuf" version "2.1.0"
}
使用 旧插件应用方式
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.bybutter.sisyphus.tools:sisyphus-protobuf-gradle-plugin:2.1.0"
}
}
apply plugin: "com.bybutter.sisyphus.protobuf"