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 10A5998B6 for ; Tue, 13 Mar 2012 03:01:43 +0000 (UTC) Received: (qmail 81122 invoked by uid 500); 13 Mar 2012 03:01:42 -0000 Delivered-To: apmail-incubator-accumulo-dev-archive@incubator.apache.org Received: (qmail 81096 invoked by uid 500); 13 Mar 2012 03:01:42 -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 81067 invoked by uid 99); 13 Mar 2012 03:01:41 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Mar 2012 03:01:41 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of david.medinets@gmail.com designates 209.85.210.47 as permitted sender) Received: from [209.85.210.47] (HELO mail-pz0-f47.google.com) (209.85.210.47) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Mar 2012 03:01:35 +0000 Received: by dado14 with SMTP id o14so127640dad.6 for ; Mon, 12 Mar 2012 20:01:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=u3KCnUNp5WAw1IE2gjv0YOAML+XtG8kCkT8UBMn0gQM=; b=AhUHHVBat8WGhxTHnWNWRW+Z5InyRo9siTvjh0EkLqHH+QCK+o38qQ3uC3LP8AMywq HGG6zSvgAfJn+mcwWHbUkP9fj91Xu1+RDrxgpu9fKcpw0xfOtqSsEg9kL4Pk1OU0lBBk kMElCK2EpjSUjp1TfXAd8k6gZyVyISB/uh099VMRPIbHq+qzHeH+enPBqSthVRs8e/sA b6dJ+eRSJbTmrLhSh4gotesn7ALaxHNl410zvcAp4Yzs1AUO2xDvdDRxTydyTknPigNh uN6Qz/NKjz2Asu3KImhG7WjRg4dKgrtHP+NqL+oKWYvY/ghHMZw68ifEPRiSblGnYMx+ dBCQ== MIME-Version: 1.0 Received: by 10.68.130.106 with SMTP id od10mr4318320pbb.91.1331607675025; Mon, 12 Mar 2012 20:01:15 -0700 (PDT) Received: by 10.68.197.233 with HTTP; Mon, 12 Mar 2012 20:01:15 -0700 (PDT) Date: Mon, 12 Mar 2012 23:01:15 -0400 Message-ID: Subject: weak maven fu From: David Medinets To: accumulo-dev Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org As an experiment, I have rejiggered the project's root directory hierarchy to be have these modules: module_assemble module_core module_example_simple module_server module_start module_trace module_wikisearch_ingest module_wikisearch_query module_wikisearch_query-war With minor changes to the pom.xml, the start and trace sub-projects package and install fine.However, the core module is kicking my butt. For some reason, maven is looking at repository.apache.org/snapshots. Here are the lines: Downloading: http://repository.apache.org/snapshots/org/apache/accumulo/accumulo/1.5.0-incubating-SNAPSHOT/maven-metadata.xml Downloading: http://repository.apache.org/snapshots/org/apache/accumulo/accumulo/1.5.0-incubating-SNAPSHOT/accumulo-1.5.0-incubating-SNAPSHOT.pom [ERROR] Failed to execute goal on project accumulo-core: Could not resolve dependencies for project org.apache.accumulo:accumulo-core:jar:1.5.0-incubating-SNAPSHOT: Failed to collect dependencies for [org.apache.hadoop:hadoop-core:jar:0.20.2 (provided), org.apache.hadoop:zookeeper:jar:3.3.1 (provided), log4j:log4j:jar:1.2.16 (compile), org.slf4j:slf4j-api:jar:1.4.3 (compile), org.slf4j:slf4j-log4j12:jar:1.4.3 (compile), commons-collections:commons-collections:jar:3.2 (compile), org.apache.thrift:libthrift:jar:0.6.1 (compile), org.apache.accumulo:accumulo-start:jar:1.5.0-incubating-SNAPSHOT (compile), org.apache.accumulo:cloudtrace:jar:1.5.0-incubating-SNAPSHOT (compile), jline:jline:jar:0.9.94 (compile), commons-lang:commons-lang:jar:2.4 (compile), junit:junit:jar:4.4 (test)]: Failed to read artifact descriptor for org.apache.accumulo:accumulo-start:jar:1.5.0-incubating-SNAPSHOT: Could not find artifact org.apache.accumulo:accumulo:pom:1.5.0-incubating-SNAPSHOT in apache.snapshots (http://repository.apache.org/snapshots) -> [Help 1] I don't understand why start and trace compile but core does not. I can't see any cause for the different behaviour in the sub-project pom files. Does anyone want to work on this with me? I don't know enough maven arcana to figure this issue out.