Search Gradle plugins

Version 1.0.0

Created 26 August 2021.

A gradle plugin allowing to automatically bump the patch version for a CI/CD process.

Using the plugins DSL:

plugins {
  id("com.github.virtualcitysystems.semver") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.virtualcitysystems:gradle-plugin-semver:1.0.0")
  }
}

apply(plugin = "com.github.virtualcitysystems.semver")

Using the plugins DSL:

plugins {
  id "com.github.virtualcitysystems.semver" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.virtualcitysystems:gradle-plugin-semver:1.0.0"
  }
}

apply plugin: "com.github.virtualcitysystems.semver"

Learn how to apply plugins to subprojects