搜索Gradle插件

io.github.shayf0x.spigotwarden

所有者: ShayFox

类似Minecraft中的Warden怪物,Spigot Warden掩盖了你周围的环境

https://shayf0x.github.io/SpigotWarden/

来源:https://github.com/ShayF0x/SpigotWarden

版本1.0(最新版)

1.0

创建于2022年7月20日。

类似Minecraft中的Warden怪物,Spigot Warden掩盖了你周围的环境

使用插件DSL

plugins {
  id("io.github.shayf0x.spigotwarden") version "1.0"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.shayf0x:SpigotWarden:1.0")
  }
}

apply(plugin = "io.github.shayf0x.spigotwarden")

使用插件DSL

plugins {
  id "io.github.shayf0x.spigotwarden" version "1.0"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.shayf0x:SpigotWarden:1.0"
  }
}

apply plugin: "io.github.shayf0x.spigotwarden"

了解如何将插件应用到子项目中