You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by rh...@apache.org on 2008/02/13 18:13:52 UTC

svn commit: r627531 - in /incubator/qpid/trunk/qpid/java: build.deps build.xml client/example/build.xml

Author: rhs
Date: Wed Feb 13 09:13:45 2008
New Revision: 627531

URL: http://svn.apache.org/viewvc?rev=627531&view=rev
Log:
added client/example to the build

Added:
    incubator/qpid/trunk/qpid/java/client/example/build.xml   (with props)
Modified:
    incubator/qpid/trunk/qpid/java/build.deps
    incubator/qpid/trunk/qpid/java/build.xml

Modified: incubator/qpid/trunk/qpid/java/build.deps
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/build.deps?rev=627531&r1=627530&r2=627531&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/java/build.deps (original)
+++ incubator/qpid/trunk/qpid/java/build.deps Wed Feb 13 09:13:45 2008
@@ -34,6 +34,8 @@
 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

Modified: incubator/qpid/trunk/qpid/java/build.xml
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/build.xml?rev=627531&r1=627530&r2=627531&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/java/build.xml (original)
+++ incubator/qpid/trunk/qpid/java/build.xml Wed Feb 13 09:13:45 2008
@@ -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}"/>

Added: incubator/qpid/trunk/qpid/java/client/example/build.xml
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/client/example/build.xml?rev=627531&view=auto
==============================================================================
--- incubator/qpid/trunk/qpid/java/client/example/build.xml (added)
+++ incubator/qpid/trunk/qpid/java/client/example/build.xml Wed Feb 13 09:13:45 2008
@@ -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>

Propchange: incubator/qpid/trunk/qpid/java/client/example/build.xml
------------------------------------------------------------------------------
    svn:eol-style = native