Author: billie
Date: Mon Apr 30 15:45:22 2012
New Revision: 1332259
URL: http://svn.apache.org/viewvc?rev=1332259&view=rev
Log:
ACCUMULO-563 added default maven.repo.local property of "null" so that it
doesn't have to be set on the command line
Modified:
accumulo/branches/1.3/pom.xml
accumulo/branches/1.3/src/assemble/install-thrift-jar.sh
Modified: accumulo/branches/1.3/pom.xml
URL:
http://svn.apache.org/viewvc/accumulo/branches/1.3/pom.xml?rev=1332259&r1=1332258&r2=1332259&view=diff
==============================================================================
--- accumulo/branches/1.3/pom.xml (original)
+++ accumulo/branches/1.3/pom.xml Mon Apr 30 15:45:22 2012
@@ -30,6 +30,8 @@
<packaging>pom</packaging>
<version>1.3.6-SNAPSHOT</version>
<name>accumulo</name>
+
+ <properties><maven.repo.local>null</maven.repo.local></properties>
<url>http://accumulo.apache.org</url>
<description>Apache Accumulo is a sorted, distributed key/value store based
on Google's BigTable design. It is built on top of Apache Hadoop, Zookeeper,
and Thrift. It features a few novel improvements on the BigTable design in the
form of cell-level access labels and a server-side programming mechanism that
can modify key/value pairs at various points in the data management
process.</description>
Modified: accumulo/branches/1.3/src/assemble/install-thrift-jar.sh
URL:
http://svn.apache.org/viewvc/accumulo/branches/1.3/src/assemble/install-thrift-jar.sh?rev=1332259&r1=1332258&r2=1332259&view=diff
==============================================================================
--- accumulo/branches/1.3/src/assemble/install-thrift-jar.sh (original)
+++ accumulo/branches/1.3/src/assemble/install-thrift-jar.sh Mon Apr 30
15:45:22 2012
@@ -35,7 +35,9 @@ runAt() {
LOCAL_MAVEN_REPO=$1
-if [ ! -z $LOCAL_MAVEN_REPO ] ; then
+if [ "null" = $LOCAL_MAVEN_REPO ] ; then
+ LOCAL_MAVEN_REPO=
+elif [ ! -z $LOCAL_MAVEN_REPO ] ; then
LOCAL_MAVEN_REPO="-Dmaven.repo.local=$LOCAL_MAVEN_REPO"
fi