Search Gradle plugins

net.minecrell.plugin-yml.paper

Generate paper-plugin.yml for Paper 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 paper-plugin.yml for Paper plugins based on the Gradle project

Using the plugins DSL:

plugins {
  id("net.minecrell.plugin-yml.paper") 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.paper")

Using the plugins DSL:

plugins {
  id "net.minecrell.plugin-yml.paper" 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.paper"

Learn how to apply plugins to subprojects