com.gradleup.static-analysis
Owner: GradleUp plugins
Easy and consistent setup of static analysis tools for Android and Java projects
https://github.com/GradleUp/static-analysis-plugin/
Sources: https://github.com/GradleUp/static-analysis-plugin.git
Version 1.4 (latest)
Created 13 June 2021.
Easy and consistent setup of static analysis tools for Android and Java projects
Add this plugin to your build using the plugins DSL:
plugins {
id("com.gradleup.static-analysis") version "1.4"
}
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("com.gradleup.static-analysis:com.gradleup.static-analysis.gradle.plugin:1.4") }
It can then be applied in the precompiled script plugin:plugins { id("com.gradleup.static-analysis") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.gradleup.static-analysis:com.gradleup.static-analysis.gradle.plugin:1.4") } } apply(plugin = "com.gradleup.static-analysis")
- Applying plugins to all subprojects .