diff options
author | Rafael H. Schloming <rhs@apache.org> | 2008-10-09 21:45:21 +0000 |
---|---|---|
committer | Rafael H. Schloming <rhs@apache.org> | 2008-10-09 21:45:21 +0000 |
commit | e7ceead683231ef2cb35a6ee70488e859f023d12 (patch) | |
tree | c2f0a312bb3b57ab6c65d7d3c0fbfcae2d32fe60 | |
parent | e0389bd4dc0acbb764e2e85f2ba7272139798cea (diff) | |
download | qpid-python-e7ceead683231ef2cb35a6ee70488e859f023d12.tar.gz |
QPID-1343: added build scripts for management/client
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@703270 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | java/build.deps | 3 | ||||
-rw-r--r-- | java/build.xml | 2 | ||||
-rw-r--r-- | java/management/client/build.xml | 27 |
3 files changed, 31 insertions, 1 deletions
diff --git a/java/build.deps b/java/build.deps index c201bdbab2..cc9cdbd68c 100644 --- a/java/build.deps +++ b/java/build.deps @@ -6,6 +6,7 @@ commons-collections=lib/commons-collections-3.2.jar commons-configuration=lib/commons-configuration-1.2.jar commons-lang=lib/commons-lang-2.2.jar commons-logging=lib/commons-logging-1.0.4.jar +commons-pool=lib/commons-pool-1.4.jar geronimo-jms=lib/geronimo-jms_1.1_spec-1.0.jar @@ -39,6 +40,7 @@ broker.libs=${common.libs} ${commons-cli} ${commons-logging} ${log4j} \ ${slf4j-log4j} ${xalan} ${felix.libs} ${build.lib}/${project.name}-common-${project.version}.jar broker-plugins.libs=${common.libs} ${felix.libs} +management-client.libs=${client.libs} ${commons-pool} junit-toolkit.libs=${log4j} ${junit} ${slf4j-api} test.libs=${slf4j-log4j} ${junit-toolkit.libs} @@ -83,6 +85,7 @@ client.test.libs=${broker.libs} ${test.libs} client-example.test.libs=${test.libs} tools.test.libs=${client.test.libs} testkit.test.libs=${test.libs} +management-client.test.libs=${client.test.libs} management-eclipse-plugin.test.libs=${systests.libs} broker-plugins.test.libs=${test.libs} management-tools-qpid-cli.test.libs=${junit4} ${slf4j-log4j} ${log4j} ${client.libs} diff --git a/java/build.xml b/java/build.xml index c704aff43a..5117ceba0c 100644 --- a/java/build.xml +++ b/java/build.xml @@ -25,7 +25,7 @@ <property name="modules.core" value="junit-toolkit common broker client tools"/> <property name="modules.examples" value="client/example"/> <property name="modules.tests" value="systests perftests integrationtests testkit"/> - <property name="modules.management" value="management/eclipse-plugin"/> + <property name="modules.management" value="management/client management/eclipse-plugin"/> <property name="modules.plugin" value="broker-plugins"/> <property name="modules.management.tools" value="management/tools/qpid-cli"/> <property name="modules" value="${modules.core} diff --git a/java/management/client/build.xml b/java/management/client/build.xml new file mode 100644 index 0000000000..b0cd3d1b37 --- /dev/null +++ b/java/management/client/build.xml @@ -0,0 +1,27 @@ +<!-- + - + - 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="Qpid Management Client" default="build"> + + <property name="module.depends" value="client common"/> + + <import file="../../module.xml"/> + +</project> |