Our project uses Eviware's maven-soapui-plugin. The plugin depends on
xmlbeans:xmlpublic:2.4.0, which is hosted in the eviware repository, but
seems to be corrupt. I think this jar is also available from apache, but has
a different definition - xmlbeans:xmlbeans-xmlpublic:2.4.0 so I would like
to exclude the eviware dependency and add my own. Any idea how to do this?
I've tried

<public>
   <groupId>eviware</groupId>
   <artifactId>maven-soapui-plugin</artifactId>
   <version>3.6.1</version>
   <!-- lots of config -->
   <dependencies>
      <dependency>
         <groupId>eviware</groupId>
         <artifactId>maven-soapui-plugin</artifactId>
         <version>3.6.1</version>
         <exclusions>
            <exclusion>
               <groupId>xmlbeans</groupId>
               <artifactId>xmlpublic</artifactId>
            </exclusion>
         </exclusions>
      </dependency>
      <dependency>
         <groupId>xmlbeans</groupId>
         <artifactId>xmlbeans-xmlpublic</artifactId>
         <version>2.4.0</version>
      </dependency>
   </dependencies>
</plugin>

This downloads the xmlbeans-xmlpublic dependency but does not exclude the
eviware one. Any help appreciated.

Steve

Reply via email to