diff options
author | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-01-02 09:24:41 +0000 |
---|---|---|
committer | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-01-02 09:24:41 +0000 |
commit | 1a782a0069143286e9e386c628cd4e58c3b51e46 (patch) | |
tree | 57393296922a6f2b2b2d5a8476955e6e355b8152 /sandbox/travelsample/launchers/introducing-domain | |
parent | cb17099e7fb5f31435e57e1ee2c60f85b06e0868 (diff) |
Add/fix ant scripts for contents of travel sample services and launchers directories (TUSCANY-3398)
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@895152 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/travelsample/launchers/introducing-domain')
-rw-r--r-- | sandbox/travelsample/launchers/introducing-domain/build.xml | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/sandbox/travelsample/launchers/introducing-domain/build.xml b/sandbox/travelsample/launchers/introducing-domain/build.xml index 55334cf658..67d5fab24c 100644 --- a/sandbox/travelsample/launchers/introducing-domain/build.xml +++ b/sandbox/travelsample/launchers/introducing-domain/build.xml @@ -18,19 +18,16 @@ -->
<project name="scatours-launcher-introducing-domain" default="run">
- <property environment="env"/>
+ <import file="../../antdefs.xml"/>
- <target name="run">
+ <target name="run" depends="compile">
<java classname="org.apache.tuscany.sca.node.launcher.DomainManagerLauncher"
dir="target/classes" fork="true">
<classpath>
- <pathelement location="${env.TUSCANY}/lib/tuscany-sca-manifest.jar"/>
+ <fileset dir="${env.TUSCANY_HOME}/modules">
+ <include name="tuscany-node-launcher-*.jar"/>
+ </fileset>
</classpath>
</java>
</target>
-
- <target name="clean">
- <delete dir="./target"/>
- </target>
-
</project>
|