Search Gradle plugins

Version 1.0.1 (latest)

Created 05 January 2023.

Plugin that aids in project Changelog generation

Using the plugins DSL:

plugins {
  id("net.galacticraft.changelog") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.galacticraft:changelog:1.0.1")
  }
}

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

Using the plugins DSL:

plugins {
  id "net.galacticraft.changelog" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.galacticraft:changelog:1.0.1"
  }
}

apply plugin: "net.galacticraft.changelog"

Learn how to apply plugins to subprojects