Search Gradle plugins

to.wetransform.semantic-release-version-custom

Gradle plugin that determines the current version based on information from Git and optionally a version file. Compared to the semantic-release-version plugin the behavior can be customized.

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 version based on information from Git and optionally a version file. Compared to the semantic-release-version plugin the behavior can be customized.

Using the plugins DSL:

plugins {
  id("to.wetransform.semantic-release-version-custom") 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-custom")

Using the plugins DSL:

plugins {
  id "to.wetransform.semantic-release-version-custom" 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-custom"

Learn how to apply plugins to subprojects