Skip to content

Commit

Permalink
Disable source JAR config from EE4J parent
Browse files Browse the repository at this point in the history
This POM has a custom source JAR config so disabling the one from the
EE4J parent prevents the possibility of the wrong source JAR
over-writing the correct one (plug-in execution order can vary).

Signed-off-by: Mark Thomas <markt@apache.org>
  • Loading branch information
markt-asf committed Jul 18, 2020
1 parent 9f94868 commit 4e69125
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions api/server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,14 @@
</execution>
</executions>
</plugin>
<!-- Disable source JAR from EE4j parent as we create the source JAR above -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<configuration>
<skipSource>true</skipSource>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Expand Down

0 comments on commit 4e69125

Please sign in to comment.