Wayne Fay wrote on Saturday, February 18, 2006 7:21 AM: > This is bizarre... > > http://www.ibiblio.org/maven2/xpp3/xpp3/1.1.3.4/ > > xpp3-1.1.3.4-RC3_min.jar (md5, sha1) > xpp3-1.1.3.4-RC8_min.jar (md5, sha1) > xpp3-1.1.3.4.pom (md5, sha1) > > I tried: > <dependency> > <groupId>xpp3</groupId> > <artifactId>xpp3</artifactId> > <version>1.1.3.4</version> > </dependency> > > Of course this fails because the name of the jar is actually > xpp-1.1.3.4-RC8_min.jar and M2 can't find the right directory etc. > > How in the world did these files end up in Maven2 repository? And what > can we do to fix it? All we'd need to do is move those files out of > this directory and into directories named 1.1.3.4-RC3_min/... and > 1.1.3.4-RC8_min/... with appropriate poms etc. > > Obviously I can pull down the jars and add them manually to my own > local repo. But I'd rather get this fixed in the master M2 repo so we > can all benefit.
You have to use the correct version: 1.1.3.4-RC8: http://www.ibiblio.org/maven2/xpp3/xpp3/1.1.3.4-RC8/ (although this does not explain, why these are also available in 1.1.3.4) But you might use a more official version: http://jira.codehaus.org/browse/MAVENUPLOAD-745 - Jörg --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
