Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.bybutter.sisyphus.project") version "0.0.20"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.bybutter.sisyphus.tools:sisyphus-project-gradle-plugin:0.0.20")
      }
    }
    
    apply(plugin = "com.bybutter.sisyphus.project")
  • Applying plugins to all subprojects .