我在 运行 Maven 项目时遇到 Maven 编译器错误
I am Getting Maven compiler error while i am running Maven Project
谁能给我建议我该如何解决这个问题?
Maven 版本:4.0.0
maven-compiler-plugin:3.5.1
您似乎对 org.openqa.selenium 没有依赖性
尝试在 pom.xml
中添加 org.openqa.selenium 的依赖项
在您的 pom.xml
中添加 selenium 依赖项
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-support</artifactId>
<version>2.53.0</version>
</dependency>
谁能给我建议我该如何解决这个问题?
Maven 版本:4.0.0
maven-compiler-plugin:3.5.1
您似乎对 org.openqa.selenium 没有依赖性 尝试在 pom.xml
中添加 org.openqa.selenium 的依赖项在您的 pom.xml
中添加 selenium 依赖项<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-support</artifactId>
<version>2.53.0</version>
</dependency>