Search Gradle plugins

Version 0.6.0

Created 29 September 2020.

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

Using the plugins DSL:

plugins {
  id("org.jetbrains.changelog") version "0.6.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.jetbrains.intellij.plugins:gradle-changelog-plugin:0.6.0")
  }
}

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "org.jetbrains.changelog"

Learn how to apply plugins to subprojects