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.3.0

Created 24 July 2018.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects