Author: dkulp
Date: Mon Apr 23 13:19:28 2007
New Revision: 531583

URL: http://svn.apache.org/viewvc?view=rev&rev=531583
Log:
Fix ant builds in samples withouts servlet targets

Modified:
    incubator/cxf/trunk/distribution/src/main/release/samples/common_build.xml

Modified: 
incubator/cxf/trunk/distribution/src/main/release/samples/common_build.xml
URL: 
http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/common_build.xml?view=diff&rev=531583&r1=531582&r2=531583
==============================================================================
--- incubator/cxf/trunk/distribution/src/main/release/samples/common_build.xml 
(original)
+++ incubator/cxf/trunk/distribution/src/main/release/samples/common_build.xml 
Mon Apr 23 13:19:28 2007
@@ -251,7 +251,10 @@
         </copy>
     </target>
 
-    <target name="deploy" depends="war, deploy-tomcat" description="deploy the 
application into the container"/>
+    <target name="deploy" description="deploy the application into the 
container">
+        <antcall target="war"/>
+        <antcall target="deploy-tomcat"/>
+    </target>
     <target name="undeploy" depends="undeploy-tomcat" description="undeploy 
the application from the container"/>
 
     <target name="deploy-tomcat" if="tomcat">


Reply via email to