diff options
Diffstat (limited to 'qpid/java')
| -rw-r--r-- | qpid/java/build.deps | 2 | ||||
| -rw-r--r-- | qpid/java/build.xml | 3 | ||||
| -rw-r--r-- | qpid/java/client/example/build.xml | 27 |
3 files changed, 31 insertions, 1 deletions
diff --git a/qpid/java/build.deps b/qpid/java/build.deps index 27af291610..2ddc9fba7f 100644 --- a/qpid/java/build.deps +++ b/qpid/java/build.deps @@ -34,6 +34,8 @@ systests.libs=${client.libs} ${test.libs} perftests.libs=${systests.libs} integrationtests.libs=${systests.libs} +client-example.libs=${client.libs} + ibm-icu=lib/com.ibm.icu-3.4.4.jar ecl-core-jface=lib/org.eclipse.jface-3.2.0.jar ecl-core-commands=lib/org.eclipse.core.commands-3.2.0.jar diff --git a/qpid/java/build.xml b/qpid/java/build.xml index 440c361a29..5b00f630d1 100644 --- a/qpid/java/build.xml +++ b/qpid/java/build.xml @@ -23,10 +23,11 @@ <import file="common.xml"/> <property name="modules.core" value="common broker client"/> + <property name="modules.examples" value="client/example"/> <property name="modules.tests" value="systests perftests integrationtests"/> <property name="modules.management" value="management/eclipse-plugin"/> - <property name="modules" value="${modules.core} ${modules.tests} ${modules.management}"/> + <property name="modules" value="${modules.core} ${modules.examples} ${modules.tests} ${modules.management}"/> <property name="qpid.jar" location="${build.lib}/qpid-incubating.jar"/> <basename property="qpid.jar.name" file="${qpid.jar}"/> diff --git a/qpid/java/client/example/build.xml b/qpid/java/client/example/build.xml new file mode 100644 index 0000000000..8bcd59d829 --- /dev/null +++ b/qpid/java/client/example/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="AMQ Client" default="build"> + + <property name="module.depends" value="common client"/> + + <import file="../../module.xml"/> + +</project> |
