You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@camel.apache.org by HockeyDave <da...@yahoo.com> on 2008/10/25 19:07:45 UTC

1.50 Maven repository

I am trying to run some tests w/ Camel 1.5.0-SNAPSHOT for Claus, but I cannot
seem to find the maven repository for Camel 1.5.0-SNAPSHOT.

 This is from the maven team:
http://n2.nabble.com/camel-1.5.0-SNAPSHOT-td1376120.html
----------------
No snapshots are available in the central repository.  You'll need to
find a snapshot repository that has this artifact, and add the
<repository> to your pom.xml or settings.xml. 
---------------

Can someone point me to where I can find it.  Here is what I currently have
in my settings.xml?

<repositories>
				<repository>
					<id>apache-snaps</id>
					<name>Apache Development Snapshot Repository</name>
					<url>http://people.apache.org/repo/m2-snapshot-repository</url>
					<releases>
						<enabled>false</enabled>
					</releases>
					<snapshots>
						<enabled>true</enabled>
					</snapshots>
				</repository>
			</repositories>
-- 
View this message in context: http://www.nabble.com/1.50-Maven-repository-tp20165979s22882p20165979.html
Sent from the Camel - Users mailing list archive at Nabble.com.


Re: 1.50 Maven repository

Posted by HockeyDave <da...@yahoo.com>.
Thanks Jon.  I hadn't realized that I had <repositories> in both my pom.xml
and setting.xml until I received your note.  Evidently the pom.xml ones
override the settings.xml ones totally so the settings.xml ones get lost.  I
merged and moved everything to settings.xml and it's all good now. 

Much appreciated!
D
-- 
View this message in context: http://www.nabble.com/1.50-Maven-repository-tp20165979s22882p20168907.html
Sent from the Camel - Users mailing list archive at Nabble.com.


Re: 1.50 Maven repository

Posted by Jon Anstey <ja...@gmail.com>.
Try adding this to your pom:

<repositories>
    <repository>
        <id>apache-snaps</id>
        <name>Apache Development Snapshot Repository</name>
        <url>http://people.apache.org/repo/m2-snapshot-repository</url>
        <releases>
            <enabled>false</enabled>
        </releases>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
    </repository>
</repositories>


2008/10/25 HockeyDave <da...@yahoo.com>

>
> also, I'm using maven 2.
> pom.xml
>        <properties>
>                <camel-version>1.5-SNAPSHOT</camel-version>
>                 <camelx-version>1.0</camelx-version>
>                <maven-version>2.0.9</maven-version>
>      </properties>
>                <dependency>
>                        <groupId>org.apache.maven</groupId>
>                        <artifactId>maven-plugin-api</artifactId>
>                        <version>${maven-version}</version>
>                </dependency>
>                <dependency>
>                        <groupId>org.apache.maven</groupId>
>                        <artifactId>maven-project</artifactId>
>                        <version>${maven-version}</version>
>                </dependency>
> --
> View this message in context:
> http://www.nabble.com/1.50-Maven-repository-tp20165979s22882p20166516.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
>


-- 
Cheers,
Jon

http://janstey.blogspot.com/

Re: 1.50 Maven repository

Posted by HockeyDave <da...@yahoo.com>.
also, I'm using maven 2.
pom.xml
	<properties>
		<camel-version>1.5-SNAPSHOT</camel-version>
		<camelx-version>1.0</camelx-version>
		<maven-version>2.0.9</maven-version>
      </properties>
		<dependency>
			<groupId>org.apache.maven</groupId>
			<artifactId>maven-plugin-api</artifactId>
			<version>${maven-version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.maven</groupId>
			<artifactId>maven-project</artifactId>
			<version>${maven-version}</version>
		</dependency>
-- 
View this message in context: http://www.nabble.com/1.50-Maven-repository-tp20165979s22882p20166516.html
Sent from the Camel - Users mailing list archive at Nabble.com.


Re: 1.50 Maven repository

Posted by HockeyDave <da...@yahoo.com>.
Note all the missing artifact errors at the bottom.

My settings.xml
<repositories>
				<repository>
					<id>apache-snaps</id>
					<name>Apache Development Snapshot Repository</name>
					<url>http://people.apache.org/repo/m2-snapshot-repository</url>
					<releases>
						<enabled>false</enabled>
					</releases>
					<snapshots>
						<enabled>true</enabled>
					</snapshots>
				</repository>
				<repository>
					<id>apache-snaps</id>
					<name>Apache Development Snapshot Repository</name>
					<url>http://people.apache.org/repo/maven-snapshot-repository</url>
					<releases>
						<enabled>false</enabled>
					</releases>
					<snapshots>
						<enabled>true</enabled>
					</snapshots>
				</repository>
			</repositories>

My Pom.xml
	<properties>
		<camel-version>1.5-SNAPSHOT</camel-version>
        </properties>
		<dependency>
			<artifactId>camel-core</artifactId>
			<groupId>org.apache.camel</groupId>
			<version>${camel-version}</version>
		</dependency>

Output from Eclipse:

10/25/08 1:50:38 PM EDT: Downloading central :
nexus-maven-repository-index.properties
10/25/08 1:50:38 PM EDT: Downloaded [central] ->
http://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties
10/25/08 1:50:38 PM EDT: No index update available for central
10/25/08 1:50:57 PM EDT: [INFO] snapshot
org.apache.camel:camel-core:1.5-SNAPSHOT: checking for updates from java.net
10/25/08 1:50:59 PM EDT: [INFO] snapshot
org.apache.camel:camel-core:1.5-SNAPSHOT: checking for updates from
camel-extra-release
10/25/08 1:50:59 PM EDT: [INFO] snapshot
org.apache.camel:camel-mail:1.5-SNAPSHOT: checking for updates from java.net
10/25/08 1:51:00 PM EDT: [INFO] snapshot
org.apache.camel:camel-mail:1.5-SNAPSHOT: checking for updates from
camel-extra-release
10/25/08 1:51:01 PM EDT: [INFO] snapshot
org.apache.camel:camel-http:1.5-SNAPSHOT: checking for updates from java.net
10/25/08 1:51:01 PM EDT: [INFO] snapshot
org.apache.camel:camel-http:1.5-SNAPSHOT: checking for updates from
camel-extra-release
10/25/08 1:51:02 PM EDT: [INFO] snapshot
org.apache.camel:camel-jaxb:1.5-SNAPSHOT: checking for updates from java.net
10/25/08 1:51:02 PM EDT: [INFO] snapshot
org.apache.camel:camel-jaxb:1.5-SNAPSHOT: checking for updates from
camel-extra-release
10/25/08 1:51:03 PM EDT: [INFO] snapshot
org.apache.camel:camel-csv:1.5-SNAPSHOT: checking for updates from java.net
10/25/08 1:51:03 PM EDT: [INFO] snapshot
org.apache.camel:camel-csv:1.5-SNAPSHOT: checking for updates from
camel-extra-release
10/25/08 1:51:04 PM EDT: [INFO] snapshot
org.apache.camel:camel-spring:1.5-SNAPSHOT: checking for updates from
java.net
10/25/08 1:51:04 PM EDT: [INFO] snapshot
org.apache.camel:camel-spring:1.5-SNAPSHOT: checking for updates from
camel-extra-release
10/25/08 1:51:09 PM EDT: Missing artifact
org.apache.camel:camel-core:jar:1.5-SNAPSHOT:compile
10/25/08 1:51:09 PM EDT: Missing artifact
org.apache.camel:camel-core:test-jar:tests:1.5-SNAPSHOT:test
10/25/08 1:51:09 PM EDT: Missing artifact
org.apache.camel:camel-mail:jar:1.5-SNAPSHOT:compile
10/25/08 1:51:09 PM EDT: Missing artifact
org.apache.camel:camel-spring:jar:1.5-SNAPSHOT:compile
10/25/08 1:51:09 PM EDT: Missing artifact
org.apache.camel:camel-http:jar:1.5-SNAPSHOT:compile
10/25/08 1:51:09 PM EDT: Missing artifact
org.apache.camel:camel-jaxb:jar:1.5-SNAPSHOT:compile
10/25/08 1:51:09 PM EDT: Missing artifact
org.apache.camel:camel-csv:jar:1.5-SNAPSHOT:compile
10/25/08 1:51:09 PM EDT: Missing artifact
org.apache.camel:camel-spring:test-jar:tests:1.5-SNAPSHOT:test
10/25/08 1:52:19 PM EDT: Missing artifact
org.apache.camel:camel-core:jar:1.5-SNAPSHOT:compile
10/25/08 1:52:19 PM EDT: Missing artifact
org.apache.camel:camel-core:test-jar:tests:1.5-SNAPSHOT:test
10/25/08 1:52:19 PM EDT: Missing artifact
org.apache.camel:camel-mail:jar:1.5-SNAPSHOT:compile
10/25/08 1:52:19 PM EDT: Missing artifact
org.apache.camel:camel-spring:jar:1.5-SNAPSHOT:compile
10/25/08 1:52:19 PM EDT: Missing artifact
org.apache.camel:camel-http:jar:1.5-SNAPSHOT:compile
10/25/08 1:52:19 PM EDT: Missing artifact
org.apache.camel:camel-jaxb:jar:1.5-SNAPSHOT:compile
10/25/08 1:52:19 PM EDT: Missing artifact
org.apache.camel:camel-csv:jar:1.5-SNAPSHOT:compile
10/25/08 1:52:19 PM EDT: Missing artifact
org.apache.camel:camel-spring:test-jar:tests:1.5-SNAPSHOT:test
10/25/08 1:52:43 PM EDT: Missing artifact
org.apache.camel:camel-core:jar:1.5-SNAPSHOT:compile
10/25/08 1:52:43 PM EDT: Missing artifact
org.apache.camel:camel-core:test-jar:tests:1.5-SNAPSHOT:test
10/25/08 1:52:43 PM EDT: Missing artifact
org.apache.camel:camel-mail:jar:1.5-SNAPSHOT:compile
10/25/08 1:52:43 PM EDT: Missing artifact
org.apache.camel:camel-spring:jar:1.5-SNAPSHOT:compile
10/25/08 1:52:43 PM EDT: Missing artifact
org.apache.camel:camel-http:jar:1.5-SNAPSHOT:compile
10/25/08 1:52:43 PM EDT: Missing artifact
org.apache.camel:camel-jaxb:jar:1.5-SNAPSHOT:compile
10/25/08 1:52:43 PM EDT: Missing artifact
org.apache.camel:camel-csv:jar:1.5-SNAPSHOT:compile
10/25/08 1:52:43 PM EDT: Missing artifact
org.apache.camel:camel-spring:test-jar:tests:1.5-SNAPSHOT:test
-- 
View this message in context: http://www.nabble.com/1.50-Maven-repository-tp20165979s22882p20166395.html
Sent from the Camel - Users mailing list archive at Nabble.com.


Re: 1.50 Maven repository

Posted by Jon Anstey <ja...@gmail.com>.
Hi Dave,

Try 1.5-SNAPSHOT, that should work.

http://people.apache.org/maven-snapshot-repository/org/apache/camel/camel-mail/1.5-SNAPSHOT

On Sat, Oct 25, 2008 at 2:37 PM, HockeyDave <da...@yahoo.com>wrote:

>
> I am trying to run some tests w/ Camel 1.5.0-SNAPSHOT for Claus, but I
> cannot
> seem to find the maven repository for Camel 1.5.0-SNAPSHOT.
>
>  This is from the maven team:
> http://n2.nabble.com/camel-1.5.0-SNAPSHOT-td1376120.html
> ----------------
> No snapshots are available in the central repository.  You'll need to
> find a snapshot repository that has this artifact, and add the
> <repository> to your pom.xml or settings.xml.
> ---------------
>
> Can someone point me to where I can find it.  Here is what I currently have
> in my settings.xml?
>
> <repositories>
>                                <repository>
>                                        <id>apache-snaps</id>
>                                        <name>Apache Development Snapshot
> Repository</name>
>                                        <url>
> http://people.apache.org/repo/m2-snapshot-repository</url>
>                                        <releases>
>                                                <enabled>false</enabled>
>                                        </releases>
>                                        <snapshots>
>                                                <enabled>true</enabled>
>                                        </snapshots>
>                                </repository>
>                        </repositories>
> --
> View this message in context:
> http://www.nabble.com/1.50-Maven-repository-tp20165979s22882p20165979.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
>


-- 
Cheers,
Jon

http://janstey.blogspot.com/