dev.projectenhanced.enhancedspigot
Owner:
Krzysztof Kok
Gradle plugin which automatically generates proper configuration for EnhancedSpigot library
https://projectenhanced.dev/category/enhancedspigot
Sources: https://github.com/KPGTB/EnhancedSpigot.git
Version 1.0.0 (latest)
Created 21 November 2025.
Gradle plugin which automatically generates proper configuration for EnhancedSpigot library
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.projectenhanced.enhancedspigot") version "1.0.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("dev.projectenhanced.enhancedspigot:dev.projectenhanced.enhancedspigot.gradle.plugin:1.0.0") }It can then be applied in the precompiled script plugin:plugins { id("dev.projectenhanced.enhancedspigot") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.projectenhanced.enhancedspigot:dev.projectenhanced.enhancedspigot.gradle.plugin:1.0.0") } } apply(plugin = "dev.projectenhanced.enhancedspigot") - Applying plugins to all subprojects .