com.github.deckyfx.autoversion
Owner: Decky Fiyemonda
A plugin that helps you test your plugin against a variety of Gradle versions
https://github.com/deckyfx/autoversion
Sources: https://github.com/deckyfx/autoversion
Version 1.0.4 (latest)
1.0.4
Created 12 May 2019.
Automatically add and bump android semantic version in AndroidManifest and gradle.properties
Using the plugins DSL:
plugins {
id("com.github.deckyfx.autoversion") version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.deckyfx:autoversion:1.0.4")
}
}
apply(plugin = "com.github.deckyfx.autoversion")
Using the plugins DSL:
plugins {
id "com.github.deckyfx.autoversion" version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.deckyfx:autoversion:1.0.4"
}
}
apply plugin: "com.github.deckyfx.autoversion"