我试图在Kotlin项目中使用HtmlUnit,但编译时会出现以下错误:
Error:Kotlin: Supertypes of the following classes cannot be resolved. Please make sure you have the required dependencies in the classpath:
class com.gargoylesoftware.htmlunit.html.DomElement, unresolved supertypes: ElementTraversal这是因为ElementTraversal是一个java 7特性。我怎么才能解决这个问题?
发布于 2016-06-02 05:10:29
org.w3c.dom.ElementTraversal是xml-apis的一部分,它是xerces:xercesImpl的依赖项。xerces:xercesImpl反过来又是htmlunit的依赖项。
确保将htmlunit的传递依赖项添加到项目中。
对于gradle,所需要的就是:
compile 'net.sourceforge.htmlunit:htmlunit:2.22'https://stackoverflow.com/questions/37577674
复制相似问题