Search Gradle plugins

Version 1.0.1 (latest)

1.0.1

Created 04 March 2022.

Butterfly plugin

Add this plugin to your build using the plugins DSL:

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

See also:

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