In some cases, the Eclipse IDE automatically adds additional dependencies from plugins when generating Web Service Client
classes. To resolve this issue, you need to check the project build path and ensure that there are no other plugin dependencies included, such as Axis, Commons Discovery, JAX-RPC, and others.
To do this, follow these steps:
- Right-click on your project in Eclipse and select
Properties -> Java Build Path -> Libraries TAB
.
- Here, you will see a list of dependencies included in your project's build path.
- Check for any unwanted plugin dependencies (e.g.,
axis
, commons-discovery
, jaxrpc
) in the list.
- If you find any unwanted dependencies, select them and click the
Remove
button to remove them from the build path.
By removing these unwanted plugin dependencies
from the build path, you can ensure that they are not included during the compilation and execution of your project.
Please note that this solution is specific to resolving the issue of unwanted plugin dependencies in the Eclipse IDE when generating Web Service Client
classes.