Search Gradle plugins

Version 1.1.0

Created 27 July 2019.

Changelog generator

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects