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:01:26 UTC

svn commit: r1076373 - in /hbase/branches/0.90: CHANGES.txt pom.xml

Author: todd
Date: Wed Mar  2 21:01:25 2011
New Revision: 1076373

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

Modified:
    hbase/branches/0.90/CHANGES.txt
    hbase/branches/0.90/pom.xml

Modified: hbase/branches/0.90/CHANGES.txt
URL: http://svn.apache.org/viewvc/hbase/branches/0.90/CHANGES.txt?rev=1076373&r1=1076372&r2=1076373&view=diff
==============================================================================
--- hbase/branches/0.90/CHANGES.txt (original)
+++ hbase/branches/0.90/CHANGES.txt Wed Mar  2 21:01:25 2011
@@ -11,6 +11,8 @@ Release 0.90.2 - February 9th, 2011
    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/branches/0.90/pom.xml
URL: http://svn.apache.org/viewvc/hbase/branches/0.90/pom.xml?rev=1076373&r1=1076372&r2=1076373&view=diff
==============================================================================
--- hbase/branches/0.90/pom.xml (original)
+++ hbase/branches/0.90/pom.xml Wed Mar  2 21:01:25 2011
@@ -317,7 +317,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>