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 1.52.1
1.52.1
Created 24 September 2022.
Gradle that will find report files from static code analysis, present and optionally fail the build.
Using the plugins DSL:
plugins {
id("se.bjurr.violations.violations-gradle-plugin") version "1.52.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.se.bjurr.violations:violations-gradle-plugin:1.52.1")
}
}
apply(plugin = "se.bjurr.violations.violations-gradle-plugin")
Using the plugins DSL:
plugins {
id "se.bjurr.violations.violations-gradle-plugin" version "1.52.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.se.bjurr.violations:violations-gradle-plugin:1.52.1"
}
}
apply plugin: "se.bjurr.violations.violations-gradle-plugin"