Search Gradle plugins

Version 1.0.0

Created 23 February 2016.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "emetriq.changelog-release"

Learn how to apply plugins to subprojects