]> git.aero2k.de Git - tmp/jakarta-migration.git/commitdiff
CSPACE-30 convenient ant build with target to copy helloworld.war to jboss deploy dir
authorSanjay Dalal <sanjay.dalal@berkeley.edu>
Thu, 26 Mar 2009 20:18:01 +0000 (20:18 +0000)
committerSanjay Dalal <sanjay.dalal@berkeley.edu>
Thu, 26 Mar 2009 20:18:01 +0000 (20:18 +0000)
HelloWorld/HelloWorldNuxeoService/build.xml [new file with mode: 0644]

diff --git a/HelloWorld/HelloWorldNuxeoService/build.xml b/HelloWorld/HelloWorldNuxeoService/build.xml
new file mode 100644 (file)
index 0000000..cdba863
--- /dev/null
@@ -0,0 +1,13 @@
+<?xml version="1.0"?>
+<project name="helloworld" default="deploy" basedir=".">
+
+  <property file="build.properties" />
+
+
+  <target name="deploy" description="Deploy">
+    <copy todir="${jboss.dir}/server/default/deploy">
+      <fileset file="${basedir}/target/helloworld.war" />
+    </copy>
+  </target>
+
+</project>