Return-Path: X-Original-To: apmail-incubator-accumulo-dev-archive@minotaur.apache.org Delivered-To: apmail-incubator-accumulo-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3F2819B74 for ; Thu, 8 Mar 2012 14:53:31 +0000 (UTC) Received: (qmail 18201 invoked by uid 500); 8 Mar 2012 14:42:50 -0000 Delivered-To: apmail-incubator-accumulo-dev-archive@incubator.apache.org Received: (qmail 18169 invoked by uid 500); 8 Mar 2012 14:42:49 -0000 Mailing-List: contact accumulo-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: accumulo-dev@incubator.apache.org Delivered-To: mailing list accumulo-dev@incubator.apache.org Received: (qmail 17955 invoked by uid 99); 8 Mar 2012 14:42:38 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Mar 2012 14:42:38 +0000 X-ASF-Spam-Status: No, hits=1.5 required=5.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [206.112.75.239] (HELO iron-u-b-out.osis.gov) (206.112.75.239) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Mar 2012 14:42:27 +0000 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgEFAE3EWE+sEAbx/2dsb2JhbABDpAGIHQGId4EPggoBAQEDARICE1cLCws7IQETBR0ZGweHYxCcUgqdXYk4hzYEiFKMc4sihHaDAQ X-IronPort-AV: E=Sophos;i="4.73,552,1325480400"; d="scan'208";a="8701791" Received: from ghost-a.center.osis.gov (HELO mail-vx0-f175.google.com) ([172.16.6.241]) by iron-u-b-in.osis.gov with ESMTP/TLS/RC4-SHA; 08 Mar 2012 09:40:38 -0500 Received: by vcbfl13 with SMTP id fl13so408992vcb.6 for ; Thu, 08 Mar 2012 06:42:04 -0800 (PST) Received: by 10.52.88.235 with SMTP id bj11mr10399009vdb.119.1331217724255; Thu, 08 Mar 2012 06:42:04 -0800 (PST) MIME-Version: 1.0 Received: by 10.220.148.199 with HTTP; Thu, 8 Mar 2012 06:41:44 -0800 (PST) In-Reply-To: <874940092.190355.1331179183181.JavaMail.root@linzimmb04o.imo.intelink.gov> References: <874940092.190355.1331179183181.JavaMail.root@linzimmb04o.imo.intelink.gov> From: John Vines Date: Thu, 8 Mar 2012 09:41:44 -0500 Message-ID: Subject: Re: Failed to execute goal org.apache.maven.plugins:maven-assembly-plugin:2.2.1:single To: accumulo-dev@incubator.apache.org Content-Type: multipart/alternative; boundary=20cf3071d0ce92ad3a04babc4741 X-Virus-Checked: Checked by ClamAV on apache.org --20cf3071d0ce92ad3a04babc4741 Content-Type: text/plain; charset=ISO-8859-1 For 1.5+, you should run mvn package -P assemble, not mvn package && mvn assemble:single. This should be documented in the README. If you find it documented elsewhere, we need to fix it. John On Wed, Mar 7, 2012 at 10:59 PM, David Medinets wrote: > Following the instructions on > http://incubator.apache.org/accumulo/source.html, I did this: > > rm -rf accumulo > svn co https://svn.apache.org/repos/asf/incubator/accumulo/trunk accumulo > mvn package && mvn assembly:single > > The package command worked fine. I saw success for each sub-project. But > then... > > [INFO] Scanning for projects... > [INFO] > ------------------------------------------------------------------------ > [INFO] Reactor Build Order: > [INFO] > [INFO] accumulo > [INFO] cloudtrace > [INFO] accumulo-start > [INFO] accumulo-core > [INFO] accumulo-server > [INFO] accumulo-examples > [INFO] examples-simple > [INFO] accumulo-wikisearch > [INFO] wikisearch-ingest > [INFO] wikisearch-query > [INFO] wikisearch-query-war > [INFO] accumulo-assemble > [INFO] > [INFO] > ------------------------------------------------------------------------ > [INFO] Building accumulo 1.5.0-incubating-SNAPSHOT > [INFO] > ------------------------------------------------------------------------ > [INFO] > [INFO] --- maven-assembly-plugin:2.2.1:single (default-cli) @ accumulo --- > [INFO] > ------------------------------------------------------------------------ > [INFO] Reactor Summary: > [INFO] > [INFO] accumulo .......................................... FAILURE [2.336s] > [INFO] cloudtrace ........................................ SKIPPED > [INFO] accumulo-start .................................... SKIPPED > [INFO] accumulo-core ..................................... SKIPPED > [INFO] accumulo-server ................................... SKIPPED > [INFO] accumulo-examples ................................. SKIPPED > [INFO] examples-simple ................................... SKIPPED > [INFO] accumulo-wikisearch ............................... SKIPPED > [INFO] wikisearch-ingest ................................. SKIPPED > [INFO] wikisearch-query .................................. SKIPPED > [INFO] wikisearch-query-war .............................. SKIPPED > [INFO] accumulo-assemble ................................. SKIPPED > [INFO] > ------------------------------------------------------------------------ > [INFO] BUILD FAILURE > [INFO] > ------------------------------------------------------------------------ > [INFO] Total time: 5.771s > [INFO] Finished at: Wed Mar 07 22:52:23 EST 2012 > [INFO] Final Memory: 13M/89M > [INFO] > ------------------------------------------------------------------------ > [ERROR] Failed to execute goal > org.apache.maven.plugins:maven-assembly-plugin:2.2.1:single > (default-cli) on project accumulo: Error reading assemblies: No > assembly descriptors found. -> [Help 1] > [ERROR] > [ERROR] To see the full stack trace of the errors, re-run Maven with > the -e switch. > [ERROR] Re-run Maven using the -X switch to enable full debug logging. > [ERROR] > [ERROR] For more information about the errors and possible solutions, > please read the following articles: > [ERROR] [Help 1] > http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException > > Did I do something wrong? > --20cf3071d0ce92ad3a04babc4741--