Return-Path: X-Original-To: apmail-accumulo-commits-archive@www.apache.org Delivered-To: apmail-accumulo-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1AC1FC54C for ; Mon, 30 Apr 2012 15:45:46 +0000 (UTC) Received: (qmail 63545 invoked by uid 500); 30 Apr 2012 15:45:46 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 63520 invoked by uid 500); 30 Apr 2012 15:45:46 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 63513 invoked by uid 99); 30 Apr 2012 15:45:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Apr 2012 15:45:46 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Apr 2012 15:45:43 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id BF43C238890B for ; Mon, 30 Apr 2012 15:45:22 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1332259 - in /accumulo/branches/1.3: pom.xml src/assemble/install-thrift-jar.sh Date: Mon, 30 Apr 2012 15:45:22 -0000 To: commits@accumulo.apache.org From: billie@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120430154522.BF43C238890B@eris.apache.org> 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 @@ pom 1.3.6-SNAPSHOT accumulo + + null http://accumulo.apache.org 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. 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