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)

Created 16 March 2022.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.datalbry.gradle:gradle.semver-github:0.4.2")
  }
}

apply(plugin = "io.datalbry.plugin.semver.github")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.datalbry.gradle:gradle.semver-github:0.4.2"
  }
}

apply plugin: "io.datalbry.plugin.semver.github"

Learn how to apply plugins to subprojects