net.minecraftforge.gradleutils
Owner:
Blake Hanson
Small collection of utilities for standerdizing our gradle scripts
https://github.com/MinecraftForge/GradleUtils
Sources: https://github.com/MinecraftForge/GradleUtils.git
Version 2.4.13 (latest)
Created 19 March 2025.
Small collection of utilities for standardizing our gradle scripts
Add this plugin to your build using the plugins DSL:
plugins {
id("net.minecraftforge.gradleutils") version "2.4.13"
}
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.minecraftforge.gradleutils:net.minecraftforge.gradleutils.gradle.plugin:2.4.13") }
It can then be applied in the precompiled script plugin:plugins { id("net.minecraftforge.gradleutils") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.minecraftforge.gradleutils:net.minecraftforge.gradleutils.gradle.plugin:2.4.13") } } apply(plugin = "net.minecraftforge.gradleutils")
- Applying plugins to all subprojects .