Search Gradle plugins

Version 2.3.6 (latest)

Created 04 January 2024.

Creates a changelog text file based on git history

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.minecraftforge:gradleutils:2.3.6")
  }
}

apply(plugin = "net.minecraftforge.changelog")

Using the plugins DSL:

plugins {
  id "net.minecraftforge.changelog" version "2.3.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.minecraftforge:gradleutils:2.3.6"
  }
}

apply plugin: "net.minecraftforge.changelog"

Learn how to apply plugins to subprojects