Hmm ... but when I only have the binary distribution there is no parent
pom. Any idea how we can change this? Does it make sense to ditribute
the parent pom in the binary distributrion or is there a better way to
solve the problem?
However this can be solved I think the examples should work using maven
without compiling from source.
Greetings
Christian
Willem Jiang schrieb:
FYI the below snapshot repository is in the camel-parent pom.xml for a
long time :)
Willem
Christian Schneider wrote:
Could this repository simply be added to the normal pom? Then people
who try the snapshot would have no problems with this.
On the other hand the repository entry could be removed for release
builds.
Greetings
Christian
Claus Ibsen schrieb:
Hi
Yes it does take time to do a clean rebuild ;) And you need to
increase the memory settings on Maven to let it be able to compile
it all.
The snapshorts is deployed on a public maven server
http://activemq.apache.org/camel/download.html
Apache snapshots
http://people.apache.org/repo/m2-snapshot-repository
http://people.apache.org/repo/m2-snapshot-repository/org/apache/camel/apache-camel/
So you can add the apache m2 snapshot in your pom.xml and you are
off to go.
<repository>
<id>apache.snapshots</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>