io.intrepid.static-analysis
Owner: Intrepid Pursuits
Greetings from here!
https://github.com/IntrepidPursuits/static-analysis-gradle-plugin
Sources: https://github.com/IntrepidPursuits/static-analysis-gradle-plugin
Version 2.0.0-prealpha1 (latest)
2.0.0-prealpha1
Created 18 March 2020.
Adds gradle tasks for running PMD and FindBugs, and includes a default configuration that is common to most Intrepid projects.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.intrepid.static-analysis") version "2.0.0-prealpha1"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("gradle.plugin.io.intrepid:static-analysis:2.0.0-prealpha1") } } apply(plugin = "io.intrepid.static-analysis")
- Applying plugins to all subprojects .