I am working on a servlet/java project in eclipse, and one of the java files contains methods from the dom4j library. However the library import cannot be resolved
import org.dom4j.*;
import org.dom4j.io.SAXReader;
I added dom4j library (org.dom4j.feature.group) through eclipse’s Install New Software option but import. I noticed that org.dom4j is not listed as a jar file in the Referenced Libraries subfolder. What would be the proper way to add this library to the project so that it could be resolved?
1 Answer