br.com.sabium.guilherme.gradle-bump
Owner: Guilherme Egoroff Scalassara
Gradle Bump - Bump your version lol
https://github.com/sabium/gradle-bump
Sources: https://github.com/sabium/gradle-bump
Version 1.0.3 (latest)
1.0.3
Created 31 August 2016.
Gradle Bump - Bump your version lol
Using the plugins DSL:
plugins {
id("br.com.sabium.guilherme.gradle-bump") version "1.0.3"
}
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.3")
}
}
apply(plugin = "br.com.sabium.guilherme.gradle-bump")
Using the plugins DSL:
plugins {
id "br.com.sabium.guilherme.gradle-bump" version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.br.com.sabium:gradle-bump:1.0.3"
}
}
apply plugin: "br.com.sabium.guilherme.gradle-bump"