se.bjurr.violations.violations-gradle-plugin
Owner: Tomas Bjerre
Gradle that will find report files from static code analysis, present and optionally fail the build.
https://github.com/tomasbjerre/violations-gradle-plugin
Sources: https://github.com/tomasbjerre/violations-gradle-plugin
Version 3.0.2 (latest)
Created 09 November 2024.
Find report files from static code analysis, present and optionally fail the build.
Add this plugin to your build using the plugins DSL:
plugins {
id("se.bjurr.violations.violations-gradle-plugin") version "3.0.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("se.bjurr.violations.violations-gradle-plugin:se.bjurr.violations.violations-gradle-plugin.gradle.plugin:3.0.2") }
It can then be applied in the precompiled script plugin:plugins { id("se.bjurr.violations.violations-gradle-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("se.bjurr.violations.violations-gradle-plugin:se.bjurr.violations.violations-gradle-plugin.gradle.plugin:3.0.2") } } apply(plugin = "se.bjurr.violations.violations-gradle-plugin")
- Applying plugins to all subprojects .