Skip to content

Commit ba78f17

Browse files
committed
Fix NPE caused by old bundle plugin version (#13106)
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
1 parent 05153ac commit ba78f17

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

common/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,6 @@
195195
<plugin>
196196
<groupId>org.apache.felix</groupId>
197197
<artifactId>maven-bundle-plugin</artifactId>
198-
<version>2.5.4</version>
199198
<executions>
200199
<execution>
201200
<id>generate-manifest</id>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1490,7 +1490,7 @@
14901490
<plugin>
14911491
<groupId>org.apache.felix</groupId>
14921492
<artifactId>maven-bundle-plugin</artifactId>
1493-
<version>2.5.4</version>
1493+
<version>5.1.8</version>
14941494
<executions>
14951495
<execution>
14961496
<id>generate-manifest</id>

0 commit comments

Comments
 (0)