xyz.maow.iron
Owner: Aidan
A Gradle plugin for easy setup and testing of Spigot plugins
https://github.com/Spigot-MSPL/iron
Sources: https://github.com/Spigot-MSPL/iron.git
Version 1.2.0 (latest)
1.2.0
Created 14 October 2021.
A Gradle plugin for easy setup and testing of Spigot plugins
Using the plugins DSL:
plugins {
id("xyz.maow.iron") version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("xyz.maow:iron:1.2.0")
}
}
apply(plugin = "xyz.maow.iron")
Using the plugins DSL:
plugins {
id "xyz.maow.iron" version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "xyz.maow:iron:1.2.0"
}
}
apply plugin: "xyz.maow.iron"