com.intershop.gradle.version.gitflow
Owner: M.Raab
Gradle SCM version plugin - SCM based version handling for Gradle
https://github.com/IntershopCommunicationsAG/gitflow-version-gradle-plugin
Sources: https://github.com/IntershopCommunicationsAG/gitflow-version-gradle-plugin
Version 2.0.1 (latest)
2.0.1
Created 09 October 2024.
Gradle SCM version plugin - SCM based version handling for Gradle
Using the plugins DSL:
plugins {
id("com.intershop.gradle.version.gitflow") version "2.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.intershop.gradle.version:gitflow-version-gradle-plugin:2.0.1")
}
}
apply(plugin = "com.intershop.gradle.version.gitflow")
Using the plugins DSL:
plugins {
id "com.intershop.gradle.version.gitflow" version "2.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.intershop.gradle.version:gitflow-version-gradle-plugin:2.0.1"
}
}
apply plugin: "com.intershop.gradle.version.gitflow"