Search Gradle plugins

net.minecrell.plugin-yml.nukkit

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)

0.6.0

Created 19 June 2023.

Generate nukkit.yml for Nukkit plugins based on the Gradle project

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("net.minecrell:plugin-yml:0.6.0")
      }
    }
    
    apply(plugin = "net.minecrell.plugin-yml.nukkit")
  • Applying plugins to all subprojects .