io.fairyproject
Owner: LeeGod
The fairy gradle plugin
https://github.com/FairyProject/fairy
Sources: https://github.com/FairyProject/fairy
Version 1.3.1b2 (latest)
1.3.1b2
Created 08 January 2023.
A Gradle plugin that provides ability to manage fairy project easily.
Using the plugins DSL:
plugins {
id("io.fairyproject") version "1.3.1b2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.fairyproject:fairy-gradle-plugin:1.3.1b2")
}
}
apply(plugin = "io.fairyproject")
Using the plugins DSL:
plugins {
id "io.fairyproject" version "1.3.1b2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.fairyproject:fairy-gradle-plugin:1.3.1b2"
}
}
apply plugin: "io.fairyproject"