Package: libxom-java Tags: patch Hello,
Sources of jaxen were stripped from xom source, using Debian-provided libjaxen-java instead. However, the dependency on jaxen is not registered in pom.xml, resulting in failures of reverse dependencies of libxom-java: java.lang.NoClassDefFoundError: org/jaxen/NamespaceContext I propose adding the following to libxom-java's pom.xml: + <dependency> + <groupId>jaxen</groupId> + <artifactId>jaxen</artifactId> + </dependency> This way Maven builds/tests of sources depending on xom will transitively pull in jaxen. Andrius

