io.freefair.android-findbugs
Owner: Lars Grefer
Run FindBugs on your android source-sets
https://github.com/freefair/gradle-plugins/tree/3.4.2.2
Sources: https://github.com/freefair/android-gradle-plugins
Version 3.0.0-beta1
Created 06 January 2018.
Run FindBugs on your android source-sets
Add this plugin to your build using the plugins DSL:
plugins {
id("io.freefair.android-findbugs") version "3.0.0-beta1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.freefair.android-findbugs:io.freefair.android-findbugs.gradle.plugin:3.0.0-beta1") }
It can then be applied in the precompiled script plugin:plugins { id("io.freefair.android-findbugs") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.freefair.android-findbugs:io.freefair.android-findbugs.gradle.plugin:3.0.0-beta1") } } apply(plugin = "io.freefair.android-findbugs")
- Applying plugins to all subprojects .