Return-Path: Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: (qmail 65164 invoked from network); 14 Sep 2010 19:37:54 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 14 Sep 2010 19:37:54 -0000 Received: (qmail 66670 invoked by uid 500); 14 Sep 2010 19:37:54 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 66598 invoked by uid 500); 14 Sep 2010 19:37:53 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 66578 invoked by uid 99); 14 Sep 2010 19:37:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Sep 2010 19:37:53 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Sep 2010 19:37:53 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o8EJbWwp022640 for ; Tue, 14 Sep 2010 19:37:33 GMT Message-ID: <12450144.186961284493052482.JavaMail.jira@thor> Date: Tue, 14 Sep 2010 15:37:32 -0400 (EDT) From: "stack (JIRA)" To: issues@hbase.apache.org Subject: [jira] Commented: (HBASE-2290) in trunk, can't run bin/hbase CLASSNAME (broken by move to maven) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HBASE-2290?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12909405#action_12909405 ] stack commented on HBASE-2290: ------------------------------ Are you talking of something different from this from bin/hbase Lars? {code} add_maven_deps_to_classpath() { # The maven build dir is called 'target' target="${HBASE_HOME}/target" if [ ! -d "${HBASE_HOME}/target" ] then mkdir "${target}" fi # Need to generate classpath from maven pom. This is costly so generate it # and cache it. Save the file into our target dir so a mvn clean will get # clean it up and force us create a new one. f="${target}/cached_classpath.txt" if [ ! -f "${f}" ] then ${MVN} -f "${HBASE_HOME}/pom.xml" dependency:build-classpath -Dmdep.outputFile="${f}" &> /dev/null fi CLASSPATH=${CLASSPATH}:`cat "${f}"` } {code} > in trunk, can't run bin/hbase CLASSNAME (broken by move to maven) > ----------------------------------------------------------------- > > Key: HBASE-2290 > URL: https://issues.apache.org/jira/browse/HBASE-2290 > Project: HBase > Issue Type: Bug > Components: build > Reporter: stack > > We need to add maven made jars to bin/hbase CLASSPATH -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.