Thanks Dims, the hack alert log message seems to state what I found, but why the unusual name for the groupId and the unusual placement of the jars above the jars directory remains a mystery.
After doing maven create-lib, I hit the error below due to xalan-2.7.0.jar missing from lib/. It was also not in my .maven repository. So, per xdocs/faq.html, I obtained the jars from http://www.apache.org/dist/java-repository/xalan/jars/. Then I added them manually both to maven repository and lib/, but I'm confused why we have both xalan-2.6.0 and xalan-2.7.0. maven create-lib put xalan-2.6.0 in .maven/repository and in lib. It appears that some modules need 2.6.0 and others need 2.7.0? This is going to cause conflict at runtime. What is the best solution? After these two hacks, I did get a successful build. Thanks, Chuck BUILD FAILED File...... /home/chuck/.maven/cache/maven-multiproject-plugin-1.3.1/plugin.jelly Element... maven:reactor Line...... 217 Column.... 9 The build cannot continue because of the following unsatisfied dependency: xalan-2.6.0.jar; path override doesn't exist: /home/chuck/Repositories/MetaLINCSSVN/Libraries/axis2/trunk/axis2/modules/integration/../../lib/xalan-2.7.0.jar Davanum Srinivas wrote on 05/05/2006 01:54 AM: > Please check the commit message for hack alert :) > > On 5/5/06, Chuck Williams <[EMAIL PROTECTED]> wrote: >> Hi All, >> >> I found a workaround for this problem. The two missing jaxb jars are >> available here: >> >> http://www.ibiblio.org/maven2/openejb/jaxb-impl/2.0EA3/ >> http://www.ibiblio.org/maven2/openejb/jaxb-xjc/2.0EA3/ >> >> Download the jars below and their mdb signatures, then put all 4 >> files plus >> an empty jars/ directory into: .maven/repository/2.0EA3 >> >> It's a strange structure, but it's what called for by >> modules/jaxbri/project.xml: >> >> <dependency> >> <groupId>2.0EA3</groupId> >> <artifactId>../jaxb-impl</artifactId> >> <version>${jaxbri.version}</version> >> </dependency> >> <dependency> >> <groupId>2.0EA3</groupId> >> <artifactId>../jaxb-xjc</artifactId> >> <version>${jaxbri.version}</version> >> </dependency> >> >> Chuck >> >> >> Chuck Williams wrote on 05/04/2006 09:08 PM: >> I'm trying to build clean from the current svn to get the 1.0 release >> and encountering this consistent problem with (online) maven >> create-lib. Is there a workaround? >> >> >> >> +---------------------------------------- >> | Executing (): Apache Axis 2.0 - JAXB-RI Data Binding >> | Memory: 24M/34M >> +---------------------------------------- >> Attempting to download ../jaxb-impl-2.0EA3.jar. >> WARNING: Failed to download ../jaxb-impl-2.0EA3.jar. >> Attempting to download ../jaxb-xjc-2.0EA3.jar. >> WARNING: Failed to download ../jaxb-xjc-2.0EA3.jar. >> >> BUILD FAILED >> File...... >> /home/chuck/Repositories/MetaLINCSSVN/Libraries/axis2/trunk/axis2/maven.xml >> >> Element... maven:reactor >> Line...... 1081 >> Column.... 45 >> The build cannot continue because of the following unsatisfied >> dependencies: >> >> ../jaxb-impl-2.0EA3.jar >> ../jaxb-xjc-2.0EA3.jar >> >> Thanks, >> >> Chuck >> >> >> >> >> -- >> >> Chuck Williams >> Manawiz >> Principal >> V: (808)885-8688 >> C: (415)846-9018 >> [EMAIL PROTECTED] >> Skype: manawiz >> AIM: hawimanawiz >> Yahoo: jcwxx >> > > > -- > Davanum Srinivas : http://wso2.com/blogs/
