Search Gradle plugins

Version 0.1.0 (latest)

Created 29 July 2019.

Changelog plugin for gradle

Using the plugins DSL:

plugins {
  id("davethe8.changelog") version "0.1.0"
}

Using legacy plugin application:

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

apply(plugin = "davethe8.changelog")

Using the plugins DSL:

plugins {
  id "davethe8.changelog" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.davethe8.gradle.changelog:changelog:0.1.0"
  }
}

apply plugin: "davethe8.changelog"

Learn how to apply plugins to subprojects