ConfigurationHow can I use another parser - like PiccoloJDOM uses the JAXP package and this allow you to change the parser implementation without any recompilation. We chosen to let JAXP handle this configuration. For more information read the JAXP documentation . BuildingMissing librariesBecause of license reason we can't include the tools.jar file from the jdk. In order to compile the project you will have to include the file into maven. Can add it to lib/tools/jars. I'm new to Maven - how do I start ?A good starting point is Maven's Getting started page. But I'm going to give you some commands in order to get a jumpstart:
Maven sucks - why not use ANT ?There is an ANT script for those who want to use ANT instead. This ANT script will only do the basic stuff such as compiling and jar'ing. Why is Maven slow and sluggish ?
The current version (beta 10) haven't had focus on performance and
memory efficiency. It will be better but if you have a lot of memory
I would recommend to run the
DependenciesWhat kind of logging implementation are used ?We're using the jakarta common logging API for logging. This makes jDiSeq undependent on the actual logging toolkit so both log4j and the jdk1.4 logging toolkit can be used. Read more on the jakarta common logging userguide . UnittestingFrequently asked questions about unittesting jDiSeq Why do several of my unittests fail ?
It might be because assertion isn't default enabled
when running JUnit tests. Enable assertion with the
Maven-beta-10 also needs to fork the JUnit tests in order to run the tests correctly. Look at the maven test plugin page |