I have added the wsdl4j 1.6.1 into the maven_repo dir, since maven team
have not add wsdl4j1.6.1 into remote repository.
So after you update your project, please don't specify the -o in the
first build. this will allow maven to load the wsdl4j 1.6.1 from
maven_repo and add those artifacts into your home repository. otherwise
you will get the following errors:
Missing:
----------
1) wsdl4j:wsdl4j:jar:1.6.1
Try downloading the file manually from the project website.
Then, install it using the command:
mvn install:install-file -DgroupId=wsdl4j-DartifactId=wsdl4j \
-Dversion=1.6.1 -Dpackaging=jar -Dfile=/path/to/file
----------
1 required artifact is missing.
We will remove wsdl4j 1.6.1 when maven team add those artifacts into the
remote repository.
Related JIRA task: http://jira.codehaus.org/browse/MAVENUPLOAD-1158
Thanks,
James.
Author: mmao
Date: Sun Oct 8 06:53:28 2006
New Revision: 454143
URL: http://svn.apache.org/viewvc?view=rev&rev=454143
Log:
Tools support soap12
* Upgrade the wsdl4j from 1.5.2 to 1.6.1
* Turn on the soap12 support.
* To reuse the code, we use the proxy mechanism to support soap12 in tools.
* Added Soap wsdl extensions model to work as a proxy to soap11 and soap12. in
this way, we changed the least code.
* Remove elementFormDefault attribute from couple wsdl files, which are not
valid wsdl attribute.
* Remove system.out.print from system tests.