com.vanniktech.code.quality.tools
Owner:
Niklas Baudy
Gradle plugin that Gradle plugin that generates Findbugs-, Checkstyle- and PMD Tasks for every subproject.
http://github.com/vanniktech/gradle-code-quality-tools-plugin/
Sources: https://github.com/vanniktech/gradle-code-quality-tools-plugin
Version 0.20.0 (latest)
Created 10 April 2020.
Gradle plugin that generates ErrorProne, Checkstyle, PMD, CPD, Lint, Detekt & Ktlint Tasks for every subproject.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.vanniktech.code.quality.tools") version "0.20.0"
}
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.vanniktech.code.quality.tools:com.vanniktech.code.quality.tools.gradle.plugin:0.20.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.vanniktech.code.quality.tools") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.vanniktech.code.quality.tools:com.vanniktech.code.quality.tools.gradle.plugin:0.20.0") } } apply(plugin = "com.vanniktech.code.quality.tools")
- Applying plugins to all subprojects .