net.galacticraft.changelog
Owner: ROM
Plugin that aids in project Changelog generation
https://github.com/TeamGalacticraft/GalacticGradle
Sources: https://github.com/TeamGalacticraft/GalacticGradle
Version 1.0.1 (latest)
1.0.1
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"