Quoting "Ian Kallen <[EMAIL PROTECTED]>" <[EMAIL PROTECTED]>:
> As far as JDOM 1.0, is that referring to beta 6 of the jdom.org
> libraries?
Yes. It's only used at runtime in a special XML logger. We use JDOM because it
has real support for output (unlike JAXP). I tried to remove the dependency
using a simple DOM writer, but it looked like it would be way less efficient.
The hard requirement for Servlet API 2.2 will be removed.
> Sorry, I'm just confused by the fragmented projects and the
> facilities they provide, seemingly with a lot of overlap (xerces, jaxp
> and
> jdom).
To be safe, you need support for :
- DOM2
- SAX
- JDOM 1.0
- JAXP 1.0
So using xerces.jar (from Xerces 1.3) and the jdom.jar should provide
everything you need :)
Remy