Search Gradle plugins

Version 0.1.3

Created 01 June 2020.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "org.jetbrains.changelog"

Learn how to apply plugins to subprojects