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 2008/09/15 19:49:47 UTC

svn commit: r695562 - /ode/trunk/Rakefile

Author: mriou
Date: Mon Sep 15 10:49:47 2008
New Revision: 695562

URL: http://svn.apache.org/viewvc?rev=695562&view=rev
Log:
More wildcards for Axis2 webapp exclusion.

Modified:
    ode/trunk/Rakefile

Modified: ode/trunk/Rakefile
URL: http://svn.apache.org/viewvc/ode/trunk/Rakefile?rev=695562&r1=695561&r2=695562&view=diff
==============================================================================
--- ode/trunk/Rakefile (original)
+++ ode/trunk/Rakefile Mon Sep 15 10:49:47 2008
@@ -226,7 +226,7 @@
       web_inf.include project("bpel-schemas").path_to("src/main/xsd/pmapi.xsd")
     end
     package(:war).tap do |root|
-      root.merge(artifact(AXIS2_WAR)).exclude("WEB-INF/*").exclude("META-INF/*")
+      root.merge(artifact(AXIS2_WAR)).exclude("WEB-INF/**/*").exclude("META-INF/**/*")
     end
 
     task("start"=>[package(:war), jetty.use]) do |task|