Search Gradle plugins

Version 2.3.6 (latest)

2.3.6

Created 04 January 2024.

Small collection of utilities for standerdizing our gradle scripts

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.minecraftforge.gradleutils") version "2.3.6"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("net.minecraftforge:gradleutils:2.3.6")
      }
    }
    
    apply(plugin = "net.minecraftforge.gradleutils")
  • Applying plugins to all subprojects .