io.github.bjornvester.codenarcprinter
Owner: Bjørn Mølgård Vester
A plugin that prints CodeNarc violations to the console at QUIET level
https://github.com/bjornvester/codenarc-violations-printer-gradle-plugin
Sources: https://github.com/bjornvester/codenarc-violations-printer-gradle-plugin.git
Version 1.1 (latest)
1.1
Created 14 November 2023.
Changes:
- Support for the configuration cache
Using the plugins DSL:
plugins {
id("io.github.bjornvester.codenarcprinter") version "1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.bjornvester.codenarcprinter:plugin:1.1")
}
}
apply(plugin = "io.github.bjornvester.codenarcprinter")
Using the plugins DSL:
plugins {
id "io.github.bjornvester.codenarcprinter" version "1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.bjornvester.codenarcprinter:plugin:1.1"
}
}
apply plugin: "io.github.bjornvester.codenarcprinter"