Owner:
Blake Hanson
Small collection of utilities for standerdizing our gradle scripts
Version 2.4.19
Created 30 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.19"
}
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.19") }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.19") } } apply(plugin = "net.minecraftforge.gradleutils") - Applying plugins to all subprojects .