io.fairyproject
Owner: LeeGod
The fairy gradle plugin
https://github.com/FairyProject/fairy
Sources: https://github.com/FairyProject/fairy
Using the plugins DSL:
plugins {
id("io.fairyproject") version "1.0.1b4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.fairyproject:gradle-plugin:1.0.1b4")
}
}
apply(plugin = "io.fairyproject")
Using the plugins DSL:
plugins {
id "io.fairyproject" version "1.0.1b4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.fairyproject:gradle-plugin:1.0.1b4"
}
}
apply plugin: "io.fairyproject"