Yes, it does, both for trunk and for release 5.10.0. For convenience, here's a patch for the trunk branch that adds the repository you provided.
On Monday 24 November 2014 13:08:13 Hadrian Zbarcea wrote: > By the way, the same applies to trunk. > Hadrian > > On 11/24/2014 12:53 PM, Hadrian Zbarcea wrote: > > Hi, > > > > I did have paho in my local maven repo, I had to remove it to reproduce. > > > > It looks like paho is not (no longer) in maven central. It is > > available in the spring maven repo [1]. Unfortunately that's not much > > we can do about the release, the easiest thing is to add the spring > > repo in your local settings.xml and it should work. Can you please > > confirm? As a workaround you can exclude activemq-mqtt from the build > > and it should work. > > > > [...] > > > > <repository> > > > > <id>spring.io</id> > > > > <url>http://repo.spring.io/plugins-release</url> > > > > <releases> > > > > <enabled>true</enabled> > > > > </releases> > > <snapshots> > > > > <enabled>false</enabled> > > > > </snapshots> > > > > </repository> > > > > Cheers, > > Hadrian > > > > [1] > > http://repo.spring.io/plugins-release/org/eclipse/paho/mqtt-client/0.4.0/ > > > > On 11/24/2014 12:46 PM, Ciprian Ciubotariu wrote: > >> Using the git tag activemq-5.10.0 and running mvn clean install - > >> DskipTests=true (or -Dmaven.test.skip=true) I get: > >> > >> Failed to execute goal on project activemq-mqtt: Could not resolve > >> dependencies for project > >> org.apache.activemq:activemq-mqtt:jar:5.10.0: Failure > >> to find org.eclipse.paho:mqtt-client:jar:0.4.0 in > >> https://repo.eclipse.org/content/groups/releases/ was cached in the > >> local > >> repository, resolution will not be reattempted until the update > >> interval of > >> eclipse.m2 has elapsed or updates are forced -> [Help 1]
>From e4a49ca9454422f7efd0c618b08f1d71737675aa Mon Sep 17 00:00:00 2001 From: Ciprian Ciubotariu <[email protected]> Date: Mon, 24 Nov 2014 21:18:45 +0200 Subject: [PATCH] Fix mqtt-client artifact missing from eclipse repository Add alternate repository --- activemq-mqtt/pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/activemq-mqtt/pom.xml b/activemq-mqtt/pom.xml index c94d324..a466b00 100755 --- a/activemq-mqtt/pom.xml +++ b/activemq-mqtt/pom.xml @@ -287,6 +287,16 @@ <releases><enabled>true</enabled></releases> <snapshots><enabled>false</enabled></snapshots> </repository> + <repository> + <id>spring.io</id> + <url>http://repo.spring.io/plugins-release</url> + <releases> + <enabled>true</enabled> + </releases> + <snapshots> + <enabled>false</enabled> + </snapshots> + </repository> </repositories> </project> -- 2.0.4
