Skip to content

Commit

Permalink
Set explicit plugin versions
Browse files Browse the repository at this point in the history
Fixes here:
[WARNING] Some problems were encountered while building the effective model for org.eclipse.ee4j:project:pom:1.0.6-SNAPSHOT
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ line 185, column 29
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ line 197, column 29
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-enforcer-plugin is missing. @ line 164, column 29
[WARNING]
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING]
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
and the same in children using oss-release profile.

Signed-off-by: Piotrek Zygielo <piotr@zygielo.pl>
  • Loading branch information
pzygielo committed Mar 20, 2020
1 parent 1033e69 commit ccab800
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions parent/pom.xml
Expand Up @@ -164,6 +164,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M3</version>
<executions>
<execution>
<id>enforce-maven</id>
Expand All @@ -185,6 +186,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -197,6 +199,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down

0 comments on commit ccab800

Please sign in to comment.