Skip to content

Commit

Permalink
feat: coverity parser
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasbjerre committed Mar 24, 2024
1 parent 94ae421 commit 7f0d36b
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 8 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

Changelog of Violation Comments to Bitbucket Server Plugin.

## Unreleased
### No issue

**chore: Modernize to Jenkins 2.401.3 (#84)**

* Use this link to re-run the recipe: https://app.moderne.io/recipes/org.openrewrite.jenkins.ModernizePlugin
* Co-authored-by: Moderne <[email protected]>

[94ae421bab8a7a5](https://github.com/jenkinsci/violation-comments-to-stash-plugin/commit/94ae421bab8a7a5) Steve Hill *2023-12-06 06:35:16*


## 1.132
### No issue

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ A number of **parsers** have been implemented. Some **parsers** can parse output
| [_CloudFormation Linter_](https://github.com/aws-cloudformation/cfn-lint) | `JUNIT` | `cfn-lint . -f junit --output-file report-junit.xml`
| [_CodeClimate_](https://codeclimate.com/) | `CODECLIMATE` |
| [_CodeNarc_](http://codenarc.sourceforge.net/) | `CODENARC` |
| [_Coverity_](https://scan.coverity.com/) | `COVERITY` |
| [_Dart_](https://dart.dev/) | `MACHINE` | With `dart analyze --format=machine`
| [_Dependency Check_](https://jeremylong.github.io/DependencyCheck/) | `SARIF` | Using `--format SARIF`
| [_Detekt_](https://github.com/arturbosch/detekt) | `CHECKSTYLE` | With `--output-format xml`.
Expand Down Expand Up @@ -94,7 +95,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` |

51 parsers and 78 reporters.
52 parsers and 79 reporters.

Missing a format? Open an issue [here](https://github.com/tomasbjerre/violations-lib/issues)!

Expand Down
20 changes: 13 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@

<properties>
<java.level>11</java.level>
<jenkins.version>2.401.3</jenkins.version>
<jenkins.version>2.414.3</jenkins.version>
<findbugs.failOnError>false</findbugs.failOnError>
<maven.javadoc.skip>true</maven.javadoc.skip>
<violation-comments-lib>1.101.4</violation-comments-lib>
<violations-lib>1.156.6</violations-lib>
<violations-maven>1.50.8</violations-maven>
<changelog>1.99.0</changelog>
<violation-comments-lib>2.0.0</violation-comments-lib>
<violations-lib>1.157.0</violations-lib>
<violations-maven>2.1.0</violations-maven>
<changelog>2.1.0</changelog>
</properties>

<artifactId>violation-comments-to-stash</artifactId>
Expand Down Expand Up @@ -56,8 +56,8 @@
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.401.x</artifactId>
<version>2612.v3d6a_2128c0ef</version>
<artifactId>bom-2.414.x</artifactId>
<version>2884.vc36b_64ce114a_</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -195,6 +195,12 @@ Changelog of Violation Comments to Bitbucket Server Plugin.
<groupId>se.bjurr.violations</groupId>
<artifactId>violation-comments-to-bitbucket-server-lib</artifactId>
<version>${violation-comments-lib}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>se.bjurr.violations</groupId>
Expand Down

0 comments on commit 7f0d36b

Please sign in to comment.