io.github.shayf0x.spigotwarden
Owner: ShayFox
like Warden mob in minecraft, Spigot Warden obscures what surrounds you
https://shayf0x.github.io/SpigotWarden/
Sources: https://github.com/ShayF0x/SpigotWarden
Version 1.0 (latest)
1.0
Created 20 July 2022.
like Warden mob in minecraft, Spigot Warden obscures what surrounds you
Using the plugins DSL:
plugins {
id("io.github.shayf0x.spigotwarden") version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.shayf0x:SpigotWarden:1.0")
}
}
apply(plugin = "io.github.shayf0x.spigotwarden")
Using the plugins DSL:
plugins {
id "io.github.shayf0x.spigotwarden" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.shayf0x:SpigotWarden:1.0"
}
}
apply plugin: "io.github.shayf0x.spigotwarden"