Search Gradle plugins

Version 0.4.0-SNAPSHOT (latest)

Created 01 December 2016.

Plugin to generate a changelog based on the project's Git history

Using the plugins DSL:

plugins {
  id("com.selesse.git.changelog") version "0.4.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.selesse:gradle-git-changelog:0.4.0-SNAPSHOT")
  }
}

apply(plugin = "com.selesse.git.changelog")

Using the plugins DSL:

plugins {
  id "com.selesse.git.changelog" version "0.4.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.selesse:gradle-git-changelog:0.4.0-SNAPSHOT"
  }
}

apply plugin: "com.selesse.git.changelog"

Learn how to apply plugins to subprojects