Search Gradle plugins

Version 0.3.1

Created 16 June 2020.

Provides tasks and helper methods for handling changelog in the Project.

Using the plugins DSL:

plugins {
  id("org.jetbrains.changelog") version "0.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:0.3.1")
  }
}

apply(plugin = "org.jetbrains.changelog")

Using the plugins DSL:

plugins {
  id "org.jetbrains.changelog" version "0.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.jetbrains.intellij.plugins:gradle-changelog-plugin:0.3.1"
  }
}

apply plugin: "org.jetbrains.changelog"

Learn how to apply plugins to subprojects