Open GoogleCodeExporter opened 9 years ago
I think the problem is the XPP is a dependency of some of the core libraries
used in
the samples. It's looking for a particular version - perhaps the quickest way
is to
google for them,
For example the follow Maven repository appears to have the correct version
(but can
sometimes respond slowly) ; www.mvnrepository.com/artifact/xpp/xpp
You could either download and install these manually, or make sure this (or
other
appropriate repository) is listed in your Maven settings. Not going to detail
how to
do this here - it's detailled on the Apache maven site (or get your friendly
tech
support to do this, as suggested in the book!)
Other solution is to update the version numbers of Drools and other Libs used in
Pom.xml - these will probably require a later / more available version of XPP
that
could resolve the issue
Original comment by paul.m.browne
on 26 Jul 2009 at 11:08
For people having the same problem, the repository
www.mvnrepository.com/artifact/xpp/xpp has a different version (3-1.1.3.4-RC8).
However, searching Internet I've found a repository with the correct one:
http://www.extreme.indiana.edu/xgws/xsoap/xpp/mxp1/.
You have to modify pom.xml file adding the new repository:
<repository>
<id>extreme_xpp3</id>
<url>http://www.extreme.indiana.edu/dist/java-repository/xpp3/jars/</url>
</repository>
and change the dependency to:
<dependency>
<!-- TODO remove this dependency and change MANIFEST.MF to use xpp3_min.jar
(non-optional dep of xstream) -->
<groupId>xpp3</groupId>
<artifactId>xpp3</artifactId>
<version>1.1.3.4.O</version>
<scope>runtime</scope>
</dependency>
as the final 'o' is uppercase in this repository. Hope this helps.
Original comment by amador.c...@gmail.com
on 1 Oct 2009 at 4:18
Original comment by paul.m.browne
on 26 Jan 2011 at 11:18
Original comment by paul.m.browne
on 26 Jan 2011 at 11:42
Original comment by paul.m.browne
on 26 Jan 2011 at 11:43
Original comment by paul.m.browne
on 26 Jan 2011 at 11:44
Original comment by paul.m.browne
on 26 Jan 2011 at 11:47
Original issue reported on code.google.com by
paul.m.browne
on 26 Jul 2009 at 10:49