com.github.moleksyuk.vcs-semantic-version
Owner: Mykhailo Oleksiuk
Gradle plugin for building project semantic version based on this http://semver.org/ specification.
https://github.com/moleksyuk/vcs-semantic-version
Version 1.1.3 (latest)
1.1.3
Created 23 April 2015.
No version description available.
Using the plugins DSL:
plugins {
id("com.github.moleksyuk.vcs-semantic-version") version "1.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.moleksyuk:vcs-semantic-version:1.1.3")
}
}
apply(plugin = "com.github.moleksyuk.vcs-semantic-version")
Using the plugins DSL:
plugins {
id "com.github.moleksyuk.vcs-semantic-version" version "1.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.moleksyuk:vcs-semantic-version:1.1.3"
}
}
apply plugin: "com.github.moleksyuk.vcs-semantic-version"