OPENJPA-1712 Fix creation of openjpa-all jar

git-svn-id: https://svn.apache.org/repos/asf/openjpa/branches/2.0.x@986905 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Donald Woods 2010-08-18 20:15:50 +00:00
parent 41c67a0354
commit 4d9c4ea5ca
1 changed files with 14 additions and 0 deletions

View File

@ -52,6 +52,20 @@
</execution>
</executions>
</plugin>
<!--
Need to disable jar plugin here, as it overwrites the shade
plugin created binary jar.
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>attach-tests</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
<!-- Create our aggregate all JAR -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>