Return-Path: Delivered-To: apmail-camel-users-archive@www.apache.org Received: (qmail 28822 invoked from network); 14 Dec 2009 19:06:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 14 Dec 2009 19:06:37 -0000 Received: (qmail 48813 invoked by uid 500); 14 Dec 2009 19:06:36 -0000 Delivered-To: apmail-camel-users-archive@camel.apache.org Received: (qmail 48741 invoked by uid 500); 14 Dec 2009 19:06:36 -0000 Mailing-List: contact users-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@camel.apache.org Delivered-To: mailing list users@camel.apache.org Received: (qmail 48731 invoked by uid 99); 14 Dec 2009 19:06:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Dec 2009 19:06:36 +0000 X-ASF-Spam-Status: No, hits=-2.6 required=5.0 tests=AWL,BAYES_00,HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of janstey@gmail.com designates 209.85.218.211 as permitted sender) Received: from [209.85.218.211] (HELO mail-bw0-f211.google.com) (209.85.218.211) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Dec 2009 19:06:34 +0000 Received: by bwz3 with SMTP id 3so1705848bwz.36 for ; Mon, 14 Dec 2009 11:06:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=In5eTc4F81e+/0bwi2WZxcssrb6v+cOsBbPRXKl/Gr4=; b=xUjpTxWf/lnMWjt3wKbLnfTQRQ7XeBjwUzDWyOLjoAMH9whWKpCMYMuuWGqot9c60f sXYJVs/Vf+XGWKixlQqb6MqU4quH8I7BGU+3bZEBFHE7hlzJ5hSyHMl93hoG9qgboMiL svCR3g6WvXG/b3g+NFzHItg7zFDmzfeDG4Fzw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=JnpPzkLCNt5zQVw8XaEJd2QllIXF9T0VDInyTEu1lMW0aN9umVna2GhfhRosLITcUK ZS9AVQhE9/rh+t0smwV9m7YlsWtf/LBKTZVBOxc3RGQ/jib5zn55X/qClsv22zHkEI+N EW6jXWVU4A/hxL6xSzWROLP6Ke+fKSWZLWshw= MIME-Version: 1.0 Received: by 10.204.5.207 with SMTP id 15mr3012572bkw.89.1260817572488; Mon, 14 Dec 2009 11:06:12 -0800 (PST) In-Reply-To: <26779953.post@talk.nabble.com> References: <26779953.post@talk.nabble.com> Date: Mon, 14 Dec 2009 15:36:12 -0330 Message-ID: <2748945d0912141106x37520b7bjeaceca7c4771e5e3@mail.gmail.com> Subject: Re: maven pom unable to resolve artifact? From: Jon Anstey To: users@camel.apache.org Content-Type: multipart/alternative; boundary=00151758864e89058b047ab4f73e --00151758864e89058b047ab4f73e Content-Type: text/plain; charset=ISO-8859-1 Try adding this repo: camel.internal.maven.repository Camel internal Maven Repo http://svn.apache.org/repos/asf/camel/m2-repo On Mon, Dec 14, 2009 at 3:23 PM, Gareth Williams < gareth.williams@firstclarity.com> wrote: > > I have a camel 2.0 project, and I am using maven. if i type > mvn clean compile camel:run > I get > > Missing indirectly referenced artifact > > org.springframework.javaconfig:org.springframework.config.java:jar:1.0.0-20090215:compile > ... > Path to dependency: > 1) com.evolok:eventbroker:jar:1.1.0-SNAPSHOT > 2) org.apache.camel:camel-spring-javaconfig:jar:2.0.0 > 3) > > org.springframework.javaconfig:org.springframework.config.java:jar:1.0.0-20090215 > > > i tried changing my pom to use camel v 2.1.0, it didnt help > > i cant find this spring jar in any of the (several ;) maven repositories I > am aware of - any of you hit this? do you have any suggestions? I guess > need to manually download this jar and install it into the local maven repo > for my dev team? > > pom snippets: > > --- > --- > > 2.0.0 > 5.2.0 > 3.5 > 1.2.14 > 2.2.1 > > > > ---- > ---- > > > org.springframework > spring-context > 2.5.6 > > > > org.apache.activemq > activemq-core > ${activemq-version} > > > org.apache.activemq > activemq-camel > ${activemq-version} > > > org.apache.camel > camel-core > ${camel-version} > > > org.apache.camel > camel-stream > ${camel-version} > > > org.apache.camel > camel-quartz > ${camel-version} > > > org.apache.camel > camel-jms > ${camel-version} > > > org.apache.camel > camel-spring > ${camel-version} > > > org.apache.camel > camel-spring-javaconfig > ${camel-version} > > > org.apache.camel > camel-restlet > ${camel-version} > > > org.apache.camel > camel-ftp > ${camel-version} > > > --- > --- > > > org.apache.camel > camel-maven-plugin > ${camel-version} > > > --- > > Hmmm, have i missed something obvious? > Or is there a newer version of the spring config jar that the camel-spring > pom should be referencing? > Thanks. > > -- > View this message in context: > http://old.nabble.com/maven-pom-unable-to-resolve-artifact--tp26779953p26779953.html > Sent from the Camel - Users mailing list archive at Nabble.com. > > -- Cheers, Jon Camel in Action: http://manning.com/ibsen Blog: http://janstey.blogspot.com --00151758864e89058b047ab4f73e--