[MOBY-dev] [Fwd: Problem with xercexImpl-2.6.2.jar]

Martin Senger martin.senger at gmail.com
Fri Mar 7 15:58:22 UTC 2008


Hi,

Exception in thread "main" java.lang.UnsupportedOperationException: This
> parser does not support specification "null" version "null".
>

You have to trace what jar file is loading it (as its dependency) and then
apply the same trick that is already once used in jmoby/xmls/project.pom:

    <dependency>
      <groupId>commons-configuration</groupId>
      <artifactId>commons-configuration</artifactId>
      <version>1.5</version>
      <!-- we need to exclude this in order to get Java 1.5. XML parser
           (otherwise axis will complain about the lexical-handler
           feature not supported -->
      <exclusions>
        <exclusion>
          <groupId>xerces</groupId>
          <artifactId>xerces</artifactId>
        </exclusion>
      </exclusions>
    </dependency>

When you find it, change the xmls/project.pom and please commit it back to
jMoby.

Cheers,
Martin

-- 
Martin Senger
  email: martin.senger at gmail.com
             m.senger at cgiar.org
  skype: martinsenger



More information about the MOBY-dev mailing list