Search Gradle plugins

Version 0.9.2

Created 17 February 2016.

Creating a semi-automatic changelog on top of nebula release plugin

Using the plugins DSL:

plugins {
  id("emetriq.changelog-release") version "0.9.2"
}

Using legacy plugin application:

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

apply(plugin = "emetriq.changelog-release")

Using the plugins DSL:

plugins {
  id "emetriq.changelog-release" version "0.9.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.emetriq.gradle:changelog-release-plugin:0.9.2"
  }
}

apply plugin: "emetriq.changelog-release"

Learn how to apply plugins to subprojects