net.neoforged.gradleutils
Owner:
The NeoForged Project
A plugin with different utilities for NeoForged projects. Includes tag-based versioning and changelog generation
https://github.com/neoforged/GradleUtils
Sources: https://github.com/neoforged/GradleUtils.git
Version 5.0.4
Created 26 August 2025.
A plugin with different utilities for NeoForged projects. Includes tag-based versioning and changelog generation
Add this plugin to your build using the plugins DSL:
plugins {
id("net.neoforged.gradleutils") version "5.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("net.neoforged.gradleutils:net.neoforged.gradleutils.gradle.plugin:5.0.4") }It can then be applied in the precompiled script plugin:plugins { id("net.neoforged.gradleutils") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.neoforged.gradleutils:net.neoforged.gradleutils.gradle.plugin:5.0.4") } } apply(plugin = "net.neoforged.gradleutils") - Applying plugins to all subprojects .