I am getting the below error while trying to upgrade a java project from 8 to 11.
org.glassfish.jersey.server.wadl.WadlFeature configure
WARNING: JAX-B API not found . WADL feature is disabled.
Tried adding the below dependencies as per the suggestions in the community,
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>2.3.3</version>
</dependency>
But the warning is still unresolved. Am I missing any additional dependencies? Can you please help me with it?