tech.ferus.gradle.spigotgradle
Owner:
Nicholas Badger
Gradle Plugin intended to provide resources for quicker Spigot plugin development.
Sources: https://github.com/FerusTech/SpigotGradle
Version 1.0.4
Created 15 August 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.0.4"
}
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.0.4") }
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.0.4") } } apply(plugin = "tech.ferus.gradle.spigotgradle")
- Applying plugins to all subprojects .