You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by mr...@apache.org on 2007/05/04 22:00:55 UTC

svn commit: r535368 - /incubator/ode/trunk/Rakefile

Author: mriou
Date: Fri May  4 13:00:55 2007
New Revision: 535368

URL: http://svn.apache.org/viewvc?view=rev&rev=535368
Log:
Excluding also MET-INF from Axis2 overlaying.

Modified:
    incubator/ode/trunk/Rakefile

Modified: incubator/ode/trunk/Rakefile
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/Rakefile?view=diff&rev=535368&r1=535367&r2=535368
==============================================================================
--- incubator/ode/trunk/Rakefile (original)
+++ incubator/ode/trunk/Rakefile Fri May  4 13:00:55 2007
@@ -139,7 +139,7 @@
       web_inf.include project("ode:bpel-schemas").path_to("src/main/xsd/pmapi.xsd")
     end
     package(:war).tap do |root|
-      root.merge(artifact(AXIS2_WAR)).exclude("WEB-INF/*")
+      root.merge(artifact(AXIS2_WAR)).exclude("WEB-INF/*").exclude("META-INF/*")
     end
 
     task("start"=>[package(:war), jetty.use]) do |task|