diff --git a/bin/hbase b/bin/hbase index b5293b6..efa06e6 100755 --- a/bin/hbase +++ b/bin/hbase @@ -158,11 +158,15 @@ fi # For releases, add hbase & webapps to CLASSPATH # Webapps must come first else it messes up Jetty -if [ -d "$HBASE_HOME/webapps" ]; then +if [ -d "$HBASE_HOME/hbase-webapps" ]; then CLASSPATH=${CLASSPATH}:$HBASE_HOME fi for f in $HBASE_HOME/hbase*.jar; do - if [ -f $f ]; then + if [[ $f = *sources.jar ]] + then + : # Skip sources.jar + elif [ -f $f ] + then CLASSPATH=${CLASSPATH}:$f; fi done diff --git a/pom.xml b/pom.xml index 03c6ec8..435b05c 100644 --- a/pom.xml +++ b/pom.xml @@ -7,13 +7,11 @@ jar 0.21.0-SNAPSHOT HBase - HBase is the &lt;a href="http://hadoop.apache.org"&rt;Hadoop</a&rt; database. Use it when you need random, realtime read/write access to your Big Data. This project's goal is the hosting of very large tables -- billions of rows X millions of columns -- atop clusters of commodity hardware. - http://hbase.apache.org @@ -289,7 +287,7 @@ src/main/resources - src/main/hbase-webapps + src/main/resources/hbase-webapps */.gif */.css @@ -379,6 +377,7 @@ generate-sources +