Search Gradle plugins

Using the plugins DSL:

plugins {
  id("com.bybutter.sisyphus.project") version "0.0.6-M3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.bybutter.sisyphus.tools:sisyphus-project-gradle-plugin:0.0.6-M3")
  }
}

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

Using the plugins DSL:

plugins {
  id "com.bybutter.sisyphus.project" version "0.0.6-M3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.bybutter.sisyphus.tools:sisyphus-project-gradle-plugin:0.0.6-M3"
  }
}

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

Learn how to apply plugins to subprojects