I am unable to import org.w3c.dom.NodeList
package to Eclipse. It is showing
The package org.w3c.dom is accessible from more than one mo
org.w3c.dom is used in:
<dependency>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
<version>2.4.0</version>
</dependency>
Check if this is imported transitively via some other dependency. Exclude the same
Add dependency for:
<dependency>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
<version>2.6.0</version>
</dependency>