Search Gradle plugins

Version 1.3 (latest)

1.3

Created 08 October 2018.

Automatically generates Spigot metadata files (plugin.yml and bungee.yml) from project extensions and annotation processor

Add this plugin to your build using the plugins DSL:

plugins {
  id("eu.hexagonmc.gradle.spigot") version "1.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("eu.hexagonmc:Spigot-Gradle:1.3")
      }
    }
    
    apply(plugin = "eu.hexagonmc.gradle.spigot")
  • Applying plugins to all subprojects .