搜索Gradle插件

net.minecrell.plugin-yml.bungee

所有者: Minecrell

一个用于根据Gradle项目生成Bukkit/BungeeCord插件的plugin.yml的Gradle插件

https://github.com/Minecrell/plugin-yml

来源: https://github.com/Minecrell/plugin-yml

版本 0.6.0 (最新版)

0.6.0

创建于2023年6月19日。

根据Gradle项目生成BungeeCord插件的bungee.yml

使用 plugins DSL

plugins {
  id("net.minecrell.plugin-yml.bungee") version "0.6.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("net.minecrell:plugin-yml:0.6.0")
  }
}

apply(plugin = "net.minecrell.plugin-yml.bungee")

使用 plugins DSL

plugins {
  id "net.minecrell.plugin-yml.bungee" version "0.6.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "net.minecrell:plugin-yml:0.6.0"
  }
}

apply plugin: "net.minecrell.plugin-yml.bungee"

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