搜索Gradle插件

dev.simplix.helper.bungee

所有者: Leonhard

基于Gradle项目生成BungeeCord插件的bungee.yml

https://simplixsoft.com/

来源:https://simplixsoft.com/

版本 1.0.4 (最新版)

1.0.4

创建于2022年12月12日。

基于Gradle项目生成BungeeCord插件的bungee.yml

使用插件DSL

plugins {
  id("dev.simplix.helper.bungee") version "1.0.4"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("dev.simplix.helper:plugin-yml:1.0.4")
  }
}

apply(plugin = "dev.simplix.helper.bungee")

使用插件DSL

plugins {
  id "dev.simplix.helper.bungee" version "1.0.4"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "dev.simplix.helper:plugin-yml:1.0.4"
  }
}

apply plugin: "dev.simplix.helper.bungee"

学习如何将插件应用于子项目