From eb7b6f8213dd1db5829f8d9371718c457925b245 Mon Sep 17 00:00:00 2001 From: Tomas Bjerre Date: Fri, 3 Jan 2020 08:31:39 +0100 Subject: [PATCH] Add support for sonar issue report formats >= v7.5 tomasbjerre/violations-lib#80 --- README.md | 2 ++ build.gradle | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9b7295b..a685574 100644 --- a/README.md +++ b/README.md @@ -71,6 +71,7 @@ A number of **parsers** have been implemented. Some **parsers** can parse output | [_GoVet_](https://golang.org/cmd/vet/) | `GOLINT` | Same format as GoLint. | [_GolangCI-Lint_](https://github.com/golangci/golangci-lint/) | `CHECKSTYLE` | With `--out-format=checkstyle`. | [_GoogleErrorProne_](https://github.com/google/error-prone) | `GOOGLEERRORPRONE` | +| [_HadoLint_](https://github.com/hadolint/hadolint/) | `CHECKSTYLE` | With `-f checkstyle` | [_IAR_](https://www.iar.com/iar-embedded-workbench/) | `IAR` | With `--no_wrap_diagnostics` | [_Infer_](http://fbinfer.com/) | `PMD` | Facebook Infer. With `--pmd-xml`. | [_JCReport_](https://github.com/jCoderZ/fawkez/wiki/JcReport) | `JCREPORT` | @@ -92,6 +93,7 @@ A number of **parsers** have been implemented. Some **parsers** can parse output | [_Pep8_](https://github.com/PyCQA/pycodestyle) | `FLAKE8` | | [_PerlCritic_](https://github.com/Perl-Critic) | `PERLCRITIC` | | [_PiTest_](http://pitest.org/) | `PITEST` | +| [_ProtoLint_](https://github.com/yoheimuta/protolint) | `PROTOLINT` | | [_Puppet-Lint_](http://puppet-lint.com/) | `CLANG` | With `-log-format %{fullpath}:%{line}:%{column}: %{kind}: %{message}` | [_PyDocStyle_](https://pypi.python.org/pypi/pydocstyle) | `PYDOCSTYLE` | | [_PyFlakes_](https://pypi.python.org/pypi/pyflakes) | `FLAKE8` | diff --git a/build.gradle b/build.gradle index 26f405d..f90fed9 100644 --- a/build.gradle +++ b/build.gradle @@ -28,7 +28,7 @@ apply from: project.buildscript.classLoader.getResource('violations.gradle').toU dependencies { compile 'se.bjurr.violations:violation-comments-to-gitlab-lib:1.78' - compile 'se.bjurr.violations:violations-lib:1.101' + compile 'se.bjurr.violations:violations-lib:1.108' compile 'se.softhouse:jargo:0.1.1' compile 'org.slf4j:slf4j-simple:1.8.0-beta2' }