On Sat, 2012-06-09 at 15:48 +0200, Gilles Scokart wrote: > The current trunk build is failing because of a parsing exception > triggered by qdox, a dependency of xbean. It seems to not like the > generics structure. > > It might not be the patch you want (and I don't know what the > consequence of this upgrade is on the artefact produced), but I > managed to continue the build with this patch (I tried first by > upgrading xbeans, and I tried also with qdox 1.9.2 because I saw a > similar defects solved in this version). > > If it can help, here is the patch : >
Thanks that seems to be the fix. Applied in trunk should see a new build soon. > Index: activemq-core/pom.xml > =================================================================== > --- activemq-core/pom.xml (revision 1348409) > +++ activemq-core/pom.xml (working copy) > @@ -639,6 +639,13 @@ > </goals> > </execution> > </executions> > + <dependencies> > + <dependency> > + <groupId>com.thoughtworks.qdox</groupId> > + <artifactId>qdox</artifactId> > + <version>1.12</version> > + </dependency> > + </dependencies> > </plugin> > > <plugin> > > > > Gilles Scokart -- Tim Bish Sr Software Engineer | FuseSource Corp [email protected] | www.fusesource.com skype: tabish121 | twitter: @tabish121 blog: http://timbish.blogspot.com/
