HI all,

My application is already using wsdl4j-1.6.2.jar and will not support with
wsdl4j-1.5.1.jar file.
I have observed that when I have written only axis1.4 dependency code in my
pom.xml like below 
<dependency>
          <groupId>axis</groupId>
          <artifactId>axis</artifactId>
          <version>1.4</version>
          <type>jar</type>
          <scope>compile</scope>
      </dependency>
it downloading wsdl4j-1.5.1.jar file (not sure how it is downloading) due to
that my existing application is not working. So, I have modified code like 
<dependency>
          <groupId>axis</groupId>
          <artifactId>axis</artifactId>
          <version>1.4</version>
          <type>jar</type>
          <scope>compile</scope>
      </dependency>
<dependency>
            <groupId>wsdl4j</groupId>
            <artifactId>wsdl4j</artifactId>
            <version>1.6.2</version>
            <type>jar</type>
            <scope>compile</scope>
        </dependency>
now it automatically downloading axis-wsdl4j-1.5.1.jar file which is also
creating problem to my existing application.

could you please let me know, why axis jar is internally downloading wsdl
file and how to remove this internal dependency.

Thanks in advance.



--
View this message in context: 
http://maven.40175.n5.nabble.com/why-axis-1-4-jar-is-dependent-upon-wsdl4j-1-5-1-jar-file-in-maven-tp5734252.html
Sent from the Maven - Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to