Author: rgemmell
Date: 2011-10-02 10:49:37 -0400 (Sun, 02 Oct 2011)
New Revision: 4482
Added:
store/trunk/java/bdbstore/README.txt
Removed:
store/trunk/java/bdbstore/bin/
store/trunk/java/bdbstore/build.xml
store/trunk/java/bdbstore/etc/
store/trunk/java/bdbstore/lib/
store/trunk/java/bdbstore/resources/
store/trunk/java/bdbstore/src/
store/trunk/java/bdbstore/test-profiles/
Log:
remove the trunk code for the Java broker BDB store module following move to main Qpid
repo. Leave a temporary README.txt to indicate new home, to be removed later along with
the directory.
Added: store/trunk/java/bdbstore/README.txt
===================================================================
--- store/trunk/java/bdbstore/README.txt (rev 0)
+++ store/trunk/java/bdbstore/README.txt 2011-10-02 14:49:37 UTC (rev 4482)
@@ -0,0 +1,3 @@
+The BDB store module for the Qpid Java broker is now located in the main project
repository at:
+
+http://svn.apache.org/repos/asf/qpid/trunk/qpid/java/bdbstore
Deleted: store/trunk/java/bdbstore/build.xml
===================================================================
--- store/trunk/java/bdbstore/build.xml 2011-09-24 16:59:25 UTC (rev 4481)
+++ store/trunk/java/bdbstore/build.xml 2011-10-02 14:49:37 UTC (rev 4482)
@@ -1,44 +0,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="BDBMessageStore" default="build">
- <property name="module.depends" value="common client
management/common broker perftests systests" />
- <property name="module.test.depends" value="test common/test
broker/test management/common perftests systests management/tools/qpid-cli" />
-
- <property name="bdb.lib.dir" value
="broker-plugins/bdbstore/lib"/>
- <property name="broker-plugins-bdbstore.libs"
value="${bdb.lib.dir}/je-4.0.103.jar ${bdb.lib.dir}/JEJConsole.jar" />
- <property name="broker-plugins-bdbstore.test.libs"
value="${test.libs} ${broker-plugins-bdbstore.libs}" />
-
- <import file="../../module.xml" />
-
- <target name="postbuild"
depends="copy-store-to-upgrade,copy-test-profiles" />
-
- <target name="copy-store-to-upgrade" description="copy the upgrade
tool resource folder contents into the build tree">
- <copy todir="${qpid.home}" failonerror="true">
- <fileset dir="src/test/resources/upgrade"/>
- </copy>
- </target>
-
- <target name="copy-test-profiles" description="copy the
test-profile files into the build tree">
- <copy todir="${project.root}/test-profiles"
failonerror="true">
- <fileset dir="test-profiles"/>
- </copy>
- </target>
-
-
-</project>