com.iantorno.xylographer
Owner: Mark Iantorno
A tool to assist with Android project versioning.
https://github.com/markiantorno/xylographer
Sources: https://github.com/markiantorno/xylographer
Version 1.0.2 (latest)
1.0.2
Created 05 March 2018.
Configures the findbugs plugin for Android projects
Using the plugins DSL:
plugins {
id("com.iantorno.xylographer") version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.iantorno.xylographer:xylographer:1.0.2")
}
}
apply(plugin = "com.iantorno.xylographer")
Using the plugins DSL:
plugins {
id "com.iantorno.xylographer" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.iantorno.xylographer:xylographer:1.0.2"
}
}
apply plugin: "com.iantorno.xylographer"