Author: veithen
Date: Sat Jun 12 10:38:02 2010
New Revision: 953984
URL: http://svn.apache.org/viewvc?rev=953984&view=rev
Log:
Fixed the all-in-one JAR assembly: the JAR should not contain OSGi metadata.
Modified:
webservices/commons/trunk/modules/axiom/src/main/assembly/jar.xml
Modified: webservices/commons/trunk/modules/axiom/src/main/assembly/jar.xml
URL:
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/src/main/assembly/jar.xml?rev=953984&r1=953983&r2=953984&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/src/main/assembly/jar.xml (original)
+++ webservices/commons/trunk/modules/axiom/src/main/assembly/jar.xml Sat Jun
12 10:38:02 2010
@@ -22,6 +22,12 @@
<formats>
<format>jar</format>
</formats>
+ <fileSets>
+ <fileSet>
+
<directory>${project.build.directory}/maven-shared-archive-resources</directory>
+ <outputDirectory>/</outputDirectory>
+ </fileSet>
+ </fileSets>
<moduleSets>
<moduleSet>
<includes>
@@ -33,6 +39,12 @@
<binaries>
<includeDependencies>false</includeDependencies>
<unpack>true</unpack>
+ <unpackOptions>
+ <excludes>
+ <exclude>OSGI-INF/**</exclude>
+ <exclude>META-INF/**</exclude>
+ </excludes>
+ </unpackOptions>
</binaries>
</moduleSet>
</moduleSets>