summaryrefslogtreecommitdiff
path: root/java
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2008-02-13 17:13:45 +0000
committerRafael H. Schloming <rhs@apache.org>2008-02-13 17:13:45 +0000
commitfac55474706bd3bb736c8977c7cf1deb1945b2a0 (patch)
tree5b02a3a6a7f3e341c4ed45d61fd662c245cbbf05 /java
parent4deb3b4fd425aecd74c8c00983a199dd139df858 (diff)
downloadqpid-python-fac55474706bd3bb736c8977c7cf1deb1945b2a0.tar.gz
added client/example to the build
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@627531 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
-rw-r--r--java/build.deps2
-rw-r--r--java/build.xml3
-rw-r--r--java/client/example/build.xml27
3 files changed, 31 insertions, 1 deletions
diff --git a/java/build.deps b/java/build.deps
index 27af291610..2ddc9fba7f 100644
--- a/java/build.deps
+++ b/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/java/build.xml b/java/build.xml
index 440c361a29..5b00f630d1 100644
--- a/java/build.xml
+++ b/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/java/client/example/build.xml b/java/client/example/build.xml
new file mode 100644
index 0000000000..8bcd59d829
--- /dev/null
+++ b/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>