com.novoda.static-analysis
Owner: Novoda
A Gradle plugin to easily apply the same setup of static analysis tools across different Android, Java or Kotlin projects.
https://github.com/novoda/gradle-static-analysis-plugin
Sources: https://github.com/novoda/gradle-static-analysis-plugin
Version 1.2 (latest)
Created 22 November 2019.
A Gradle plugin to easily apply the same setup of static analysis tools across different Android, Java or Kotlin projects.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.novoda.static-analysis") version "1.2"
}
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.novoda.static-analysis:com.novoda.static-analysis.gradle.plugin:1.2") }
It can then be applied in the precompiled script plugin:plugins { id("com.novoda.static-analysis") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.novoda.static-analysis:com.novoda.static-analysis.gradle.plugin:1.2") } } apply(plugin = "com.novoda.static-analysis")
- Applying plugins to all subprojects .