Skip to content

Commit 600a924

Browse files
committed
missing version for org.apache.felix:maven-bundle-plugin
``` $ mvn clean [INFO] Scanning for projects... [WARNING] [WARNING] Some problems were encountered while building the effective model for org.everit.json:org.everit.json.schema:bundle:1.4.1 [WARNING] 'build.plugins.plugin.version' fororg.apache.felix:maven-bundle-plugin is missing. @ line 57, column 21 [WARNING] [WARNING] It is highly recommended to fix these problems because theythreaten the stability of your build. [WARNING] [WARNING] For this reason, future Maven versions might no longer support building such malformed projects. [WARNING] ``` The (sub) module `core` did not reference the parent POM thus the version from the (transitive) parent `org.everit.config:org.everit.config.main` is not available. The version used is `3.0.0`. Apply quick fix by adding mandatory `<version/>`. The current version is `3.2.0` since Sep 27, 2016.
1 parent f86246a commit 600a924

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

core/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
<plugin>
5858
<groupId>org.apache.felix</groupId>
5959
<artifactId>maven-bundle-plugin</artifactId>
60+
<version>3.2.0</version>
6061
<extensions>true</extensions>
6162
<configuration>
6263
<instructions>

0 commit comments

Comments
 (0)