Search Gradle plugins

com.bybutter.sisyphus.protobuf

Plugin for compiling proto files in project which based on sisyphus framework.

https://sisyphus.bybutter.com

Sources: https://github.com/ButterCam/sisyphus

Using the plugins DSL:

plugins {
  id("com.bybutter.sisyphus.protobuf") version "0.0.1-M3"
}

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.1-M3")
  }
}

apply(plugin = "com.bybutter.sisyphus.protobuf")

Using the plugins DSL:

plugins {
  id "com.bybutter.sisyphus.protobuf" version "0.0.1-M3"
}

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.1-M3"
  }
}

apply plugin: "com.bybutter.sisyphus.protobuf"

Learn how to apply plugins to subprojects