br.com.sabium.gradle-bump
Owner: Humberto Rodrigo Zussa
Gradle Bump - Bump your version lol
https://github.com/sabium/gradle-bump
Sources: https://github.com/sabium/gradle-bump
Version 1.0.1 (latest)
1.0.1
Created 31 May 2016.
Gradle Bump - Bump your version lol
Using the plugins DSL:
plugins {
id("br.com.sabium.gradle-bump") version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.br.com.sabium:gradle-bump:1.0.1")
}
}
apply(plugin = "br.com.sabium.gradle-bump")
Using the plugins DSL:
plugins {
id "br.com.sabium.gradle-bump" version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.br.com.sabium:gradle-bump:1.0.1"
}
}
apply plugin: "br.com.sabium.gradle-bump"