Search Gradle plugins

Version 1.10.0 (latest)

Created 21 April 2024.

handles release paperwork activities - release notes population, git tag creation, etc

Using the plugins DSL:

plugins {
  id("tech.harmonysoft.oss.gradle.release.paperwork") version "1.10.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("tech.harmonysoft:gradle-release-paperwork:1.10.0")
  }
}

apply(plugin = "tech.harmonysoft.oss.gradle.release.paperwork")

Using the plugins DSL:

plugins {
  id "tech.harmonysoft.oss.gradle.release.paperwork" version "1.10.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "tech.harmonysoft:gradle-release-paperwork:1.10.0"
  }
}

apply plugin: "tech.harmonysoft.oss.gradle.release.paperwork"

Learn how to apply plugins to subprojects