com.thaid.xylographer
Owner: David Thai
Configures the findbugs plugin for Android projects
https://github.com/thaid/xylographer
Sources: https://github.com/markiantorno/xylographer.git
Version 1.0.4 (latest)
1.0.4
Created 23 May 2018.
Configures the findbugs plugin for Android projects
Using the plugins DSL:
plugins {
id("com.thaid.xylographer") version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.thaid.xylographer:xylographer:1.0.4")
}
}
apply(plugin = "com.thaid.xylographer")
Using the plugins DSL:
plugins {
id "com.thaid.xylographer" version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.thaid.xylographer:xylographer:1.0.4"
}
}
apply plugin: "com.thaid.xylographer"