Search Gradle plugins

io.datalbry.plugin.semver.github

Simple plugin to update the gradle version property using the git history and create GitHub releases

https://datalbry.io

Sources: https://github.com/datalbry/gradle-semver-plugin

Version 0.4.2 (latest)

0.4.2

Created 16 March 2022.

Simple plugin to update the gradle version property using the git history and create GitHub releases

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.datalbry.plugin.semver.github") version "0.4.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.datalbry.gradle:gradle.semver-github:0.4.2")
      }
    }
    
    apply(plugin = "io.datalbry.plugin.semver.github")
  • Applying plugins to all subprojects .