You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2011/02/14 21:13:49 UTC

svn commit: r1070637 - in /hbase/branches/0.90: CHANGES.txt pom.xml src/assembly/all.xml

Author: stack
Date: Mon Feb 14 20:13:49 2011
New Revision: 1070637

URL: http://svn.apache.org/viewvc?rev=1070637&view=rev
Log:
HBASE-3525 mvn assembly is over-filling the hbase lib dir

Modified:
    hbase/branches/0.90/CHANGES.txt
    hbase/branches/0.90/pom.xml
    hbase/branches/0.90/src/assembly/all.xml

Modified: hbase/branches/0.90/CHANGES.txt
URL: http://svn.apache.org/viewvc/hbase/branches/0.90/CHANGES.txt?rev=1070637&r1=1070636&r2=1070637&view=diff
==============================================================================
--- hbase/branches/0.90/CHANGES.txt (original)
+++ hbase/branches/0.90/CHANGES.txt Mon Feb 14 20:13:49 2011
@@ -33,6 +33,7 @@ Release 0.90.1 - February 9th, 2011
                out of GC
    HBASE-3517  Store build version in hbase-default.xml and verify at runtime
    HBASE-3524  NPE from CompactionChecker
+   HBASE-3525  mvn assembly is over-filling the hbase lib dir
 
 
   IMPROVEMENTS

Modified: hbase/branches/0.90/pom.xml
URL: http://svn.apache.org/viewvc/hbase/branches/0.90/pom.xml?rev=1070637&r1=1070636&r2=1070637&view=diff
==============================================================================
--- hbase/branches/0.90/pom.xml (original)
+++ hbase/branches/0.90/pom.xml Mon Feb 14 20:13:49 2011
@@ -440,6 +440,7 @@
     <!-- Dependencies -->
     <avro.version>1.3.3</avro.version>
     <commons-cli.version>1.2</commons-cli.version>
+    <commons-el.version>1.0</commons-el.version>
     <commons-codec.version>1.4</commons-codec.version>
     <commons-httpclient.version>3.1</commons-httpclient.version><!-- pretty outdated -->
     <commons-lang.version>2.5</commons-lang.version>
@@ -490,6 +491,11 @@
       <version>${guava.version}</version>
     </dependency>
     <dependency>
+      <groupId>commons-el</groupId>
+      <artifactId>commons-el</artifactId>
+      <version>${commons-el.version}</version>
+    </dependency>
+    <dependency>
       <groupId>commons-cli</groupId>
       <artifactId>commons-cli</artifactId>
       <version>${commons-cli.version}</version>

Modified: hbase/branches/0.90/src/assembly/all.xml
URL: http://svn.apache.org/viewvc/hbase/branches/0.90/src/assembly/all.xml?rev=1070637&r1=1070636&r2=1070637&view=diff
==============================================================================
--- hbase/branches/0.90/src/assembly/all.xml (original)
+++ hbase/branches/0.90/src/assembly/all.xml Mon Feb 14 20:13:49 2011
@@ -54,8 +54,12 @@
   <dependencySets>
     <dependencySet>
       <outputDirectory>/lib</outputDirectory>
+      <excludes>
+        <exclude>org.apache.hbase:hbase</exclude>
+      </excludes>
       <unpack>false</unpack>
       <scope>runtime</scope>
+      <useTransitiveDependencies>false</useTransitiveDependencies>
     </dependencySet>
   </dependencySets>
 </assembly>