Skip to content

Commit

Permalink
Merge pull request #964 from jenkinsci/spotbugs-library
Browse files Browse the repository at this point in the history
Use separate versions of SpotBugs and PMD in API and Maven
  • Loading branch information
uhafner authored Oct 18, 2023
2 parents 8bb0fda + ac4e16a commit c2f6df4
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>edu.hm.hafner</groupId>
<artifactId>codingstyle-pom</artifactId>
<version>3.32.0</version>
<version>3.33.0</version>
<relativePath />
</parent>

Expand Down Expand Up @@ -64,15 +64,14 @@
<commons.digester.version>3.2</commons.digester.version>
<commons-beanutils.version>1.9.4</commons-beanutils.version>
<commons.text.version>1.10.0</commons.text.version>
<spotbugs.parser.library.version>6.0.4</spotbugs.parser.library.version>
<j2html.version>1.4.0</j2html.version>
<slf4j.version>2.0.9</slf4j.version>
<violations-lib.version>1.156.7</violations-lib.version>
<jsoup.version>1.16.1</jsoup.version>
<json.version>20230618</json.version>
<json-smart.version>2.5.0</json-smart.version>
<pmd.version>6.55.0</pmd.version>
<spotbugs.version>4.8.0</spotbugs.version>
<pmd.api.version>6.55.0</pmd.api.version>
<spotbugs.api.version>4.7.3</spotbugs.api.version>

<incrementals-plugin.version>1.7</incrementals-plugin.version>
<maven-shade-plugin.version>3.5.1</maven-shade-plugin.version>
Expand Down Expand Up @@ -147,7 +146,7 @@
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs</artifactId>
<version>${spotbugs.version}</version>
<version>${spotbugs.api.version}</version>
<exclusions>
<exclusion>
<groupId>com.github.spotbugs</groupId>
Expand Down Expand Up @@ -193,7 +192,7 @@
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
<version>${pmd.version}</version>
<version>${pmd.api.version}</version>
<exclusions>
<exclusion>
<groupId>com.ibm.icu</groupId>
Expand Down Expand Up @@ -234,7 +233,7 @@
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
<version>${pmd.version}</version>
<version>${pmd.api.version}</version>
<exclusions>
<exclusion>
<groupId>net.sourceforge.saxon</groupId>
Expand Down

0 comments on commit c2f6df4

Please sign in to comment.