You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-dev@ws.apache.org by ch...@apache.org on 2006/03/22 07:17:54 UTC

svn commit: r387753 - /webservices/commons/modules/axiom/maven.xml

Author: chinthaka
Date: Tue Mar 21 22:17:53 2006
New Revision: 387753

URL: http://svn.apache.org/viewcvs?rev=387753&view=rev
Log:
Adding a goal to create axiom api and axiom impl jars

Modified:
    webservices/commons/modules/axiom/maven.xml

Modified: webservices/commons/modules/axiom/maven.xml
URL: http://svn.apache.org/viewcvs/webservices/commons/modules/axiom/maven.xml?rev=387753&r1=387752&r2=387753&view=diff
==============================================================================
--- webservices/commons/modules/axiom/maven.xml (original)
+++ webservices/commons/modules/axiom/maven.xml Tue Mar 21 22:17:53 2006
@@ -17,8 +17,24 @@
         </j:if>
     </preGoal>
 
+    <postGoal name="jar">
+        <jar destfile="target/axiom-api-SNAPSHOT.jar">
+            <ant:fileset dir="target/classes">
+                <ant:exclude name="org/apache/ws/commons/soap/impl/llom/**"/>
+                <ant:exclude name="org/apache/ws/commons/om/impl/llom/**"/>
+            </ant:fileset>
+        </jar>
+        <jar destfile="target/axiom-impl-SNAPSHOT.jar">
+            <ant:fileset dir="target/classes">
+                <ant:include name="org/apache/ws/commons/soap/impl/llom/**"/>
+                <ant:include name="org/apache/ws/commons/om/impl/llom/**"/>
+            </ant:fileset>
+        </jar>
+
+    </postGoal>
+
     <goal name="jar">
         <attainGoal name="jar:install"/>
     </goal>
-    
+
 </project>