From ccd2474dea0cec63461dbfc194df92d4c1f510bc Mon Sep 17 00:00:00 2001 From: Tomas Bjerre Date: Thu, 1 Sep 2022 20:46:42 +0200 Subject: [PATCH] feat: stepping violations-lib --- README.md | 5 +++-- build.gradle | 6 +++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5df7ac4..eba262c 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,7 @@ A number of **parsers** have been implemented. Some **parsers** can parse output | [_Flake8_](http://flake8.readthedocs.org/en/latest/) | `FLAKE8` | | [_FxCop_](https://en.wikipedia.org/wiki/FxCop) | `FXCOP` | | [_GCC_](https://gcc.gnu.org/) | `CLANG` | +| [_GHS_](https://www.ghs.com/) | `GHS` | | [_Gendarme_](http://www.mono-project.com/docs/tools+libraries/tools/gendarme/) | `GENDARME` | | [_Generic reporter_]() | `GENERIC` | Will create one single violation with all the content as message. | [_GoLint_](https://github.com/golang/lint) | `GOLINT` | @@ -110,7 +111,7 @@ A number of **parsers** have been implemented. Some **parsers** can parse output | [_PyLint_](https://www.pylint.org/) | `PYLINT` | With `pylint --output-format=parseable`. | [_ReSharper_](https://www.jetbrains.com/resharper/) | `RESHARPER` | | [_RubyCop_](http://rubocop.readthedocs.io/en/latest/formatters/) | `CLANG` | With `rubycop -f clang file.rb` -| [_SARIF_](https://github.com/oasis-tcs/sarif-spec) | `SARIF` | +| [_SARIF_](https://github.com/oasis-tcs/sarif-spec) | `SARIF` | v2.x. Microsoft Visual C# can generate it with `ErrorLog="BuildErrors.sarif,version=2"`. | [_SbtScalac_](http://www.scala-sbt.org/) | `SBTSCALAC` | | [_Scalastyle_](http://www.scalastyle.org/) | `CHECKSTYLE` | | [_Simian_](http://www.harukizaemon.com/simian/) | `SIMIAN` | @@ -125,7 +126,7 @@ A number of **parsers** have been implemented. Some **parsers** can parse output | [_YAMLLint_](https://yamllint.readthedocs.io/en/stable/index.html) | `YAMLLINT` | With `-f parsable` | [_ZPTLint_](https://pypi.python.org/pypi/zptlint) | `ZPTLINT` | -48 parsers and 74 reporters. +49 parsers and 75 reporters. Missing a format? Open an issue [here](https://github.com/tomasbjerre/violations-lib/issues)! diff --git a/build.gradle b/build.gradle index 1780743..cc7a435 100644 --- a/build.gradle +++ b/build.gradle @@ -31,7 +31,7 @@ apply from: project.buildscript.classLoader.getResource('main.gradle').toURI() dependencies { implementation 'se.bjurr.violations:violation-comments-to-bitbucket-cloud-lib:1.+' - implementation 'se.bjurr.violations:violations-lib:1.+' - implementation 'se.softhouse:jargo:0.1.1' - implementation 'org.slf4j:slf4j-simple:1.8.0-beta2' + implementation 'se.bjurr.violations:violations-lib:1.155.1' + implementation 'se.softhouse:jargo:0.4.14' + implementation 'org.slf4j:slf4j-simple:2.0.0' }