while importing javax.xml.ws.WebServiceException;
in java file, I am getting compilation error
cannot resolve symbol ws.
I have cleaned and installed dependencies mentioned in POM.xml
while importing javax.xml.ws.WebServiceException;
in java file, I am getting compilation error
cannot resolve symbol ws.
I have cleaned and installed dependencies mentioned in POM.xml
Either it is not correctly stated in your pom.xml
. Or the project you're trying to import is meant for JDK 8 which still include the JAX-WS
API, and you're using JDK 8+ compiler. See Replacements for deprecated JPMS modules with Java EE APIs.
Edit: add reference.