diff --git a/CHANGELOG.md b/CHANGELOG.md index edfa178..08c6967 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,20 @@ Changelog of Violation comments to gitlab gradle plugin. +## Unreleased +### No issue + +**doc** + + +[1743c5ea25efbd4](https://github.com/tomasbjerre/violation-comments-to-gitlab-gradle-plugin/commit/1743c5ea25efbd4) Tomas Bjerre *2019-10-09 16:58:45* + +**Create FUNDING.yml** + + +[357cda71327acdc](https://github.com/tomasbjerre/violation-comments-to-gitlab-gradle-plugin/commit/357cda71327acdc) Tomas Bjerre *2019-09-28 07:02:43* + + ## 1.32 ### No issue diff --git a/README.md b/README.md index 20fabfc..fd80746 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ A number of **parsers** have been implemented. Some **parsers** can parse output | [_CPPLint_](https://github.com/theandrewdavis/cpplint) | `CPPLINT` | | [_CSSLint_](https://github.com/CSSLint/csslint) | `CSSLINT` | | [_Checkstyle_](http://checkstyle.sourceforge.net/) | `CHECKSTYLE` | +| [_CodeClimate_](https://codeclimate.com/) | `CODECLIMATE` | | [_CodeNarc_](http://codenarc.sourceforge.net/) | `CODENARC` | | [_Detekt_](https://github.com/arturbosch/detekt) | `CHECKSTYLE` | With `--output-format xml`. | [_DocFX_](http://dotnet.github.io/docfx/) | `DOCFX` | @@ -37,6 +38,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` | @@ -67,7 +69,7 @@ A number of **parsers** have been implemented. Some **parsers** can parse output | [_SbtScalac_](http://www.scala-sbt.org/) | `SBTSCALAC` | | [_Scalastyle_](http://www.scalastyle.org/) | `CHECKSTYLE` | | [_Simian_](http://www.harukizaemon.com/simian/) | `SIMIAN` | -| [_Sonar_](https://www.sonarqube.org/) | `SONAR` | With `mvn sonar:sonar -Dsonar.analysis.mode=preview -Dsonar.report.export.path=sonar-report.json`. Removed in 7.7, see [SONAR-11670](https://jira.sonarsource.com/browse/SONAR-11670). +| [_Sonar_](https://www.sonarqube.org/) | `SONAR` | With `mvn sonar:sonar -Dsonar.analysis.mode=preview -Dsonar.report.export.path=sonar-report.json`. Removed in 7.7, see [SONAR-11670](https://jira.sonarsource.com/browse/SONAR-11670) but can be retrieved with: `curl --silent 'http://sonar-server/api/issues/search?componentKeys=unique-key&resolved=false' \| jq -f sonar-report-builder.jq > sonar-report.json`. | [_Spotbugs_](https://spotbugs.github.io/) | `FINDBUGS` | | [_StyleCop_](https://stylecop.codeplex.com/) | `STYLECOP` | | [_SwiftLint_](https://github.com/realm/SwiftLint) | `CHECKSTYLE` | With `--reporter checkstyle`. diff --git a/build.gradle b/build.gradle index 75ab27e..f4a903a 100644 --- a/build.gradle +++ b/build.gradle @@ -20,6 +20,6 @@ apply from: project.buildscript.classLoader.getResource('gradle-plugin.gradle'). apply from: project.buildscript.classLoader.getResource('violations.gradle').toURI() dependencies { - compile 'se.bjurr.violations:violation-comments-to-gitlab-lib:1.78' + compile 'se.bjurr.violations:violation-comments-to-gitlab-lib:1.80' compile 'se.bjurr.violations:violations-lib:1.96' }