You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by to...@apache.org on 2011/03/02 22:00:35 UTC

svn commit: r1076371 - in /hbase/trunk: CHANGES.txt pom.xml

Author: todd
Date: Wed Mar  2 21:00:34 2011
New Revision: 1076371

URL: http://svn.apache.org/viewvc?rev=1076371&view=rev
Log:
HBASE-3589. test jar should not include mapred-queues.xml and log4j.properties

Modified:
    hbase/trunk/CHANGES.txt
    hbase/trunk/pom.xml

Modified: hbase/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hbase/trunk/CHANGES.txt?rev=1076371&r1=1076370&r2=1076371&view=diff
==============================================================================
--- hbase/trunk/CHANGES.txt (original)
+++ hbase/trunk/CHANGES.txt Wed Mar  2 21:00:34 2011
@@ -127,6 +127,8 @@ Release 0.90.2 - Unreleased
    HBASE-3576  MasterAddressTracker is registered to ZooKeeperWatcher twice
    HBASE-3561  OPTS arguments are duplicated
    HBASE-3572  memstore lab can leave half inited data structs (bad!)
+   HBASE-3589  test jar should not include mapred-queues.xml and
+               log4j.properties
 
   IMPROVEMENTS
    HBASE-3542  MultiGet methods in Thrift

Modified: hbase/trunk/pom.xml
URL: http://svn.apache.org/viewvc/hbase/trunk/pom.xml?rev=1076371&r1=1076370&r2=1076371&view=diff
==============================================================================
--- hbase/trunk/pom.xml (original)
+++ hbase/trunk/pom.xml Wed Mar  2 21:00:34 2011
@@ -363,7 +363,9 @@
             <exclude>org/apache/jute/**</exclude>
             <exclude>org/apache/zookeeper/**</exclude>
             <exclude>**/*.jsp</exclude>
-            <exclude>**/hbase-site.xml</exclude>
+            <exclude>hbase-site.xml</exclude>
+            <exclude>log4j.properties</exclude>
+            <exclude>mapred-queues.xml</exclude>
           </excludes>
         </configuration>
       </plugin>