Search Gradle plugins

Version 0.5.0

Created 06 July 2019.

Changelog generator

Using the plugins DSL:

plugins {
  id("com.chmyaf.gradle.plugin.changelog") version "0.5.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.chmyaf.gradle.plugin:changelog:0.5.0")
  }
}

apply(plugin = "com.chmyaf.gradle.plugin.changelog")

Using the plugins DSL:

plugins {
  id "com.chmyaf.gradle.plugin.changelog" version "0.5.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.chmyaf.gradle.plugin:changelog:0.5.0"
  }
}

apply plugin: "com.chmyaf.gradle.plugin.changelog"

Learn how to apply plugins to subprojects