Return-Path: X-Original-To: apmail-accumulo-dev-archive@www.apache.org Delivered-To: apmail-accumulo-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 982DBD9F9 for ; Tue, 28 May 2013 01:45:46 +0000 (UTC) Received: (qmail 45165 invoked by uid 500); 28 May 2013 01:45:46 -0000 Delivered-To: apmail-accumulo-dev-archive@accumulo.apache.org Received: (qmail 45130 invoked by uid 500); 28 May 2013 01:45:46 -0000 Mailing-List: contact dev-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 dev@accumulo.apache.org Received: (qmail 45121 invoked by uid 99); 28 May 2013 01:45:46 -0000 Received: from minotaur.apache.org (HELO minotaur.apache.org) (140.211.11.9) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 May 2013 01:45:46 +0000 Received: from localhost (HELO mail-lb0-f179.google.com) (127.0.0.1) (smtp-auth username ctubbsii, mechanism plain) by minotaur.apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 May 2013 01:45:46 +0000 Received: by mail-lb0-f179.google.com with SMTP id r11so7244704lbv.10 for ; Mon, 27 May 2013 18:45:44 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=UyXk9Gn0Wch+yT5jDn1S6ip41o0dcScoGgQCi/cfPwc=; b=U3oiv93LwDNR2I+HZaRuOLQMbYHil2QNDGtjcKvW+RGs9TSjZPuaLpvTJvk/ERZGZT UIsUGIHJ7g09vEIY1wIR+X87pp59Y0pGl/X7HWVd97XLVfa6KFXtD7rz8XYNeaTJogjy RNOi0C93JIcAGQPCnmOju18L01TVM7xIarID1sCzA4pj5cq6DXsfsojpx9yEUe1QhAw+ h49ZajumKRlDuEZnKw1WjxbOMalvlbmy9EkmD4ihodpANuqtdkqR0jLo11LUpLYM0Q13 0p7OfJZ0qC4GHwgggPQivuj1UNaS46mIVo7/U6tV1WUP/3L68iCvOyorejO6d+PabrRU okdA== MIME-Version: 1.0 X-Received: by 10.112.235.131 with SMTP id um3mr11960145lbc.27.1369705544104; Mon, 27 May 2013 18:45:44 -0700 (PDT) Received: by 10.114.185.195 with HTTP; Mon, 27 May 2013 18:45:44 -0700 (PDT) In-Reply-To: References: Date: Mon, 27 May 2013 21:45:44 -0400 Message-ID: Subject: Re: dependency issue in 1.5... again From: Christopher To: Accumulo Dev List Content-Type: text/plain; charset=ISO-8859-1 Mini Accumulo was moved to its own module at the last moment, and there wasn't time to discuss dependency issues relating to it. I'm thinking that Mini should not have any "provided" dependencies, so that depending on it via Maven goes smoothly. However, we still shouldn't be packaging these dependencies. An alternative is to make Mini behave the same as regular Accumulo, and just require you to provide them just as you'd have to if you were running the real thing. -- Christopher L Tubbs II http://gravatar.com/ctubbsii On Mon, May 27, 2013 at 9:13 PM, Jim Klucar wrote: > I know there was a discussion about this earlier, and I'm sorry I missed > the RC testing window, but I'm still having a problem with miniaccumulo in > 1.5. > > The issue is that in the pom.xml there are dependencies listed as provided. > (commons-*, zookeeper, hadoop-client, log4j) This means that when I have a > dependency on miniaccumulo, I have to also go depend on these other > libraries. This fact must be learned by reading pom files or launching a > miniaccumulo and reading the class not found errors in the logs.