Search Gradle plugins

to.wetransform.semantic-release-version

Gradle plugin that determines the current version from a file with the last release version and information from Git. Intended to be used with semantic-release.

https://github.com/wetransform-os/gradle-semantic-release-version

Sources: https://github.com/wetransform-os/gradle-semantic-release-version

Version 2.1.0 (latest)

Created 17 April 2024.

Gradle plugin that determines the current release or SNAPSHOT version from Git based on existing tags. Intended to be used with semantic-release.

Using the plugins DSL:

plugins {
  id("to.wetransform.semantic-release-version") version "2.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("to.wetransform:gradle-semantic-release-version:2.1.0")
  }
}

apply(plugin = "to.wetransform.semantic-release-version")

Using the plugins DSL:

plugins {
  id "to.wetransform.semantic-release-version" version "2.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "to.wetransform:gradle-semantic-release-version:2.1.0"
  }
}

apply plugin: "to.wetransform.semantic-release-version"

Learn how to apply plugins to subprojects