summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/trunk/tutorials/travelsample/domainconfig/fullapp/build.xml
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-05-19 22:12:38 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-05-19 22:12:38 +0000
commite9d972d2cf64e6d14fb3304c73fbbd10eeb0928e (patch)
tree74269a7f381d60a204fc001d216940e7ce4a4e70 /sca-java-1.x/trunk/tutorials/travelsample/domainconfig/fullapp/build.xml
parent79e07dec02a48f4f2bb89f1a69c736c602422c67 (diff)
Merge revision r946349 from 1.0 release branch
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@946458 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x/trunk/tutorials/travelsample/domainconfig/fullapp/build.xml')
-rw-r--r--sca-java-1.x/trunk/tutorials/travelsample/domainconfig/fullapp/build.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/sca-java-1.x/trunk/tutorials/travelsample/domainconfig/fullapp/build.xml b/sca-java-1.x/trunk/tutorials/travelsample/domainconfig/fullapp/build.xml
index 3fd52446fc..12229733f0 100644
--- a/sca-java-1.x/trunk/tutorials/travelsample/domainconfig/fullapp/build.xml
+++ b/sca-java-1.x/trunk/tutorials/travelsample/domainconfig/fullapp/build.xml
@@ -19,4 +19,20 @@
<project name="scatours-domainconfig-fullapp" default="compile">
<import file="../../antdefs.xml"/>
+
+ <property name="run-package-setup" value="true"/>
+ <target name="package-setup">
+ <mkdir dir="target/jar-classes/fullapp"/>
+ <copy todir="target/jar-classes/fullapp">
+ <fileset dir="src/main/resources">
+ <exclude name="workspace*.xml"/>
+ </fileset>
+ </copy>
+ <copy todir="target/jar-classes/fullapp">
+ <fileset dir="src/main/resources">
+ <include name="workspace-distribution.xml"/>
+ </fileset>
+ <globmapper from="workspace-distribution.xml" to="workspace.xml"/>
+ </copy>
+ </target>
</project>