You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by rv...@apache.org on 2011/11/19 01:08:24 UTC

svn commit: r1203907 - /incubator/bigtop/trunk/bigtop-tests/test-execution/smokes/hbase/pom.xml

Author: rvs
Date: Sat Nov 19 00:08:23 2011
New Revision: 1203907

URL: http://svn.apache.org/viewvc?rev=1203907&view=rev
Log:
BIGTOP-265. HBase smoke test execution needs to have extra class-path elements to pick up HBase configs

Modified:
    incubator/bigtop/trunk/bigtop-tests/test-execution/smokes/hbase/pom.xml

Modified: incubator/bigtop/trunk/bigtop-tests/test-execution/smokes/hbase/pom.xml
URL: http://svn.apache.org/viewvc/incubator/bigtop/trunk/bigtop-tests/test-execution/smokes/hbase/pom.xml?rev=1203907&r1=1203906&r2=1203907&view=diff
==============================================================================
--- incubator/bigtop/trunk/bigtop-tests/test-execution/smokes/hbase/pom.xml (original)
+++ incubator/bigtop/trunk/bigtop-tests/test-execution/smokes/hbase/pom.xml Sat Nov 19 00:08:23 2011
@@ -40,6 +40,7 @@
 
     <HBASE_HOME>${env.HBASE_HOME}</HBASE_HOME>
     <ZOOKEEPER_HOME>${env.ZOOKEEPER_HOME}</ZOOKEEPER_HOME>
+    <HBASE_CONF_DIR>${env.HBASE_CONF_DIR}</HBASE_CONF_DIR>
   </properties>
 
   <dependencies>
@@ -69,6 +70,10 @@
                   <message>HBASE_HOME env. variable has to be set</message>
                 </requireProperty>
                 <requireProperty>
+                  <property>HBASE_CONF_DIR</property>
+                  <message>HBASE_CONF_DIR env. variable has to be set</message>
+                </requireProperty>
+                <requireProperty>
                   <property>ZOOKEEPER_HOME</property>
                   <message>ZOOKEEPER_HOME env. variable has to be set</message>
                 </requireProperty>
@@ -93,6 +98,9 @@
             ${ZOOKEEPER_HOME}/${zookeeper.jar}:${HBASE_HOME}/${hbase.jar}:${HBASE_HOME}/lib/guava-r06.jar
             </org.apache.bigtop.itest.hbasesmoke.TestHbasePigSmoke.extra_jars>
           </systemPropertyVariables>
+          <additionalClasspathElements>
+            <additionalClasspathElement>${HBASE_CONF_DIR}</additionalClasspathElement>
+          </additionalClasspathElements>
         </configuration>
       </plugin>
       <plugin>