org.jetbrains.changelog
Owner:
JetBrains
Provides tasks and helper methods for handling changelog in the Project.
https://github.com/JetBrains/gradle-changelog-plugin
Sources: https://github.com/JetBrains/gradle-changelog-plugin.git
Version 1.3.1
Created 13 October 2021.
Provides tasks and helper methods for handling changelog in the Project.
Using the plugins DSL:
plugins {
id("org.jetbrains.changelog") version "1.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.jetbrains.intellij.plugins:gradle-changelog-plugin:1.3.1")
}
}
apply(plugin = "org.jetbrains.changelog")
Using the plugins DSL:
plugins {
id "org.jetbrains.changelog" version "1.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.jetbrains.intellij.plugins:gradle-changelog-plugin:1.3.1"
}
}
apply plugin: "org.jetbrains.changelog"