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 2012/11/29 07:47:35 UTC

svn commit: r1415056 - in /hbase/trunk: pom.xml src/assembly/components.xml

Author: stack
Date: Thu Nov 29 06:47:34 2012
New Revision: 1415056

URL: http://svn.apache.org/viewvc?rev=1415056&view=rev
Log:
HBASE-7225 on trunk, integration tests are not packaged into distribution

Modified:
    hbase/trunk/pom.xml
    hbase/trunk/src/assembly/components.xml

Modified: hbase/trunk/pom.xml
URL: http://svn.apache.org/viewvc/hbase/trunk/pom.xml?rev=1415056&r1=1415055&r2=1415056&view=diff
==============================================================================
--- hbase/trunk/pom.xml (original)
+++ hbase/trunk/pom.xml Thu Nov 29 06:47:34 2012
@@ -878,6 +878,7 @@
     <!-- TODO this is pretty ugly, but works for the moment.
       Modules are pretty heavy-weight things, so doing this work isn't too bad. -->
     <server.test.jar>hbase-server-${project.version}-tests.jar</server.test.jar>
+    <it.test.jar>hbase-it-${project.version}-tests.jar</it.test.jar>
     <surefire.version>2.12-TRUNK-HBASE-2</surefire.version>
     <surefire.provider>surefire-junit47</surefire.provider>
     <compat.module>hbase-hadoop1-compat</compat.module>
@@ -962,6 +963,13 @@
         <groupId>org.apache.hbase</groupId>
         <version>${project.version}</version>
       </dependency>
+      <dependency>
+        <artifactId>hbase-it</artifactId>
+        <groupId>org.apache.hbase</groupId>
+        <version>${project.version}</version>
+        <type>test-jar</type>
+        <scope>test</scope>
+      </dependency>
       <!-- General dependencies -->
       <dependency>
         <groupId>io.netty</groupId>

Modified: hbase/trunk/src/assembly/components.xml
URL: http://svn.apache.org/viewvc/hbase/trunk/src/assembly/components.xml?rev=1415056&r1=1415055&r2=1415056&view=diff
==============================================================================
--- hbase/trunk/src/assembly/components.xml (original)
+++ hbase/trunk/src/assembly/components.xml Thu Nov 29 06:47:34 2012
@@ -104,5 +104,13 @@
       </includes>
       <fileMode>0644</fileMode>
     </fileSet>
+    <fileSet>
+      <directory>hbase-it/target/</directory>
+      <outputDirectory>lib</outputDirectory>
+      <includes>
+        <include>${it.test.jar}</include>
+      </includes>
+      <fileMode>0644</fileMode>
+    </fileSet>
   </fileSets>
 </component>
\ No newline at end of file