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 2.0.0
Created 29 October 2022.
Provides tasks and helper methods for handling changelog in the Project.
Using the plugins DSL:
plugins {
id("org.jetbrains.changelog") version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.jetbrains.intellij.plugins:gradle-changelog-plugin:2.0.0")
}
}
apply(plugin = "org.jetbrains.changelog")
Using the plugins DSL:
plugins {
id "org.jetbrains.changelog" version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.jetbrains.intellij.plugins:gradle-changelog-plugin:2.0.0"
}
}
apply plugin: "org.jetbrains.changelog"