summaryrefslogtreecommitdiff
path: root/qpid/java/management/tools/qpid-cli/build.xml
diff options
context:
space:
mode:
authorLahiru Gunathilake <lahiru@apache.org>2008-10-08 17:55:40 +0000
committerLahiru Gunathilake <lahiru@apache.org>2008-10-08 17:55:40 +0000
commit9ceb93486900099b1e9bed375cea8316165ef529 (patch)
tree68146c5026347267fa6443dd7ca46f19ad4b30e0 /qpid/java/management/tools/qpid-cli/build.xml
parent267674ed762620900d2343f5dcdd5b18733708c6 (diff)
downloadqpid-python-9ceb93486900099b1e9bed375cea8316165ef529.tar.gz
change the build according to bind with management console.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@702940 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/management/tools/qpid-cli/build.xml')
-rw-r--r--qpid/java/management/tools/qpid-cli/build.xml29
1 files changed, 27 insertions, 2 deletions
diff --git a/qpid/java/management/tools/qpid-cli/build.xml b/qpid/java/management/tools/qpid-cli/build.xml
index e1dc06b4be..41f0b5101e 100644
--- a/qpid/java/management/tools/qpid-cli/build.xml
+++ b/qpid/java/management/tools/qpid-cli/build.xml
@@ -1,7 +1,28 @@
-<?xml version="1.0" ?>
+<!--
+ -
+ - Licensed to the Apache Software Foundation (ASF) under one
+ - or more contributor license agreements. See the NOTICE file
+ - distributed with this work for additional information
+ - regarding copyright ownership. The ASF licenses this file
+ - to you under the Apache License, Version 2.0 (the
+ - "License"); you may not use this file except in compliance
+ - with the License. You may obtain a copy of the License at
+ -
+ - http://www.apache.org/licenses/LICENSE-2.0
+ -
+ - Unless required by applicable law or agreed to in writing,
+ - software distributed under the License is distributed on an
+ - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ - KIND, either express or implied. See the License for the
+ - specific language governing permissions and limitations
+ - under the License.
+ -
+ -->
<project name="lahirugsoc2008">
+ <import file="../../../module.xml"/>
+ <property name="module.depends" value="common"/>
<property name="src.dir" value="src"/>
- <property name="build.dir" value="build"/>
+ <property name="build.dir" value="${module.build}"/>
<property name="build.src.dir" value="${build.dir}/main/"/>
<property name="build.test.dir" value="${build.dir}/test/"/>
<property name="build.src.classes.dir" value="${build.src.dir}/classes"/>
@@ -22,6 +43,10 @@
<mkdir dir="${build.src.classes.dir}" />
<mkdir dir="${build.test.classes.dir}"/>
<mkdir dir="${jar.dir}"/>
+ <copy file="lib/${dependency1}" todir="${project.root}/lib"/>
+ <copy file="lib/${dependency2}" todir="${project.root}/lib"/>
+ <copy file="bin/qpid-cli" todir="${project.root}/bin"/>
+ <copy file="bin/qpid-cli.bat" todir="${project.root}/bin"/>
</target>
<target name="clean">
<delete dir="${build.src.dir}"/>