Search Gradle plugins

net.minecrell.plugin-yml.bungee

A Gradle plugin that generates plugin.yml for Bukkit/BungeeCord plugins based on the Gradle project

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

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

Version 0.6.0 (latest)

Created 19 June 2023.

Generate bungee.yml for BungeeCord plugins based on the Gradle project

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects