Search Gradle plugins

tech.ferus.gradle.spigotgradle

Gradle Plugin intended to provide resources for quicker Spigot plugin development.

https://ferus.tech

Sources: https://github.com/FerusTech/SpigotGradle

Version 1.2.0 (latest)

Created 05 October 2017.

Gradle Plugin intended to provide resources for quicker Spigot plugin development.

Add this plugin to your build using the plugins DSL:

plugins {
  id("tech.ferus.gradle.spigotgradle") version "1.2.0"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("tech.ferus.gradle.spigotgradle:tech.ferus.gradle.spigotgradle.gradle.plugin:1.2.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("tech.ferus.gradle.spigotgradle")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("tech.ferus.gradle.spigotgradle:tech.ferus.gradle.spigotgradle.gradle.plugin:1.2.0")
      }
    }
    
    apply(plugin = "tech.ferus.gradle.spigotgradle")
  • Applying plugins to all subprojects .