Search Gradle plugins

Version 1.0.0

1.0.0

Created 01 March 2022.

Butterfly plugin

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.ssseasonnn.butterfly") version "1.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.ssseasonnn:plugin:1.0.0")
      }
    }
    
    apply(plugin = "io.github.ssseasonnn.butterfly")
  • Applying plugins to all subprojects .