Skip to content

Commit

Permalink
Fix NPE caused by old bundle plugin version (#13106)
Browse files Browse the repository at this point in the history
Motivation:

We used some very old bundle plugin version in our commons module. This caused a NPE when using a more recent JDK.

Modifications:

- Update the plugin version in general
- Remove extra version declaration in common pom.xml

Result:

No more NPE during build
  • Loading branch information
normanmaurer committed Jan 10, 2023
1 parent 05153ac commit ba78f17
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,6 @@
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.5.4</version>
<executions>
<execution>
<id>generate-manifest</id>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1490,7 +1490,7 @@
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.5.4</version>
<version>5.1.8</version>
<executions>
<execution>
<id>generate-manifest</id>
Expand Down

0 comments on commit ba78f17

Please sign in to comment.