> -----Original Message----- > From: Jochen Wiedmann [mailto:[EMAIL PROTECTED] > Sent: Wednesday, January 04, 2006 5:12 AM > To: [email protected] > Subject: How to resolve jaxmejs problems with Gump? > > > Hi, > > if you'll be so kind to look at > > http://vmgump.apache.org/gump/public/JaxMeAll/jaxmejs/index.html > > then you'll find that the build fails because of the > following error in > the BeanReaderTest: > > Testcase: > testCreateSchema(org.apache.ws.jaxme.js.junit.BeanReade > rTest): Caused an > ERROR > org/apache/xml/serializer/TreeWalker > java.lang.NoClassDefFoundError: > org/apache/xml/serializer/TreeWalker > at > org.apache.xalan.processor.TransformerFactoryImpl.newTransform > erHandler(TransformerFactoryImpl.java:753) > at > org.apache.ws.jaxme.js.junit.BeanReaderTest.testCreateSchema(B > eanReaderTest.java:307) > > The problem occurs at the following line in BeanReaderTest.java: > > TransformerHandler t = ((SAXTransformerFactory) > > TransformerFactory.newInstance()).newTransformerHandler(); > > JaxMeJS is a build script based on Maven 1. A dependency on > xalan-2.3.1.jar is present. The build script works fine > outside of Gump, > even if I use the same JVM (1.4.2_08). >
Of course, Gump is using the xalan that it built instead of xalan-2.3.1. If it was an ant project, then usually adding a <depend project="xml-apis" /> would fix it. However, I don't think that Maven will do anything with it if it's not declared in the POM. You can take a look at the 'build.properties' file linked from the JaxMeAll Gump page referenced above to see what Gump is doing different from you. You could probably try to build the project normally, except override the xalan jars to be those from a nightly build to see if you can reproduce what Gump is doing. > > Thanks for any hints, > > Jochen > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > This message is intended only for the use of the person(s) listed above as the intended recipient(s), and may contain information that is PRIVILEGED and CONFIDENTIAL. If you are not an intended recipient, you may not read, copy, or distribute this message or any attachment. If you received this communication in error, please notify us immediately by e-mail and then delete all copies of this message and any attachments. In addition you should be aware that ordinary (unencrypted) e-mail sent through the Internet is not secure. Do not send confidential or sensitive information, such as social security numbers, account numbers, personal identification numbers and passwords, to us via ordinary (unencrypted) e-mail. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
