com.bybutter.sisyphus.protobuf
Owner: ButterCam
Plugin for compiling proto files in project which based on sisyphus framework.
Sources: https://github.com/ButterCam/sisyphus
Version 0.0.12-M1
0.0.12-M1
Created 29 October 2020.
Protobuf compiler plugin for sisyphus framework.
Using the plugins DSL:
plugins {
id("com.bybutter.sisyphus.protobuf") version "0.0.12-M1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.bybutter.sisyphus.tools:sisyphus-protobuf-gradle-plugin:0.0.12-M1")
}
}
apply(plugin = "com.bybutter.sisyphus.protobuf")
Using the plugins DSL:
plugins {
id "com.bybutter.sisyphus.protobuf" version "0.0.12-M1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.bybutter.sisyphus.tools:sisyphus-protobuf-gradle-plugin:0.0.12-M1"
}
}
apply plugin: "com.bybutter.sisyphus.protobuf"