遇到pom.xml问题

时间:2015-11-18 12:24:43

标签: eclipse maven selenium testng pom.xml

我正在尝试将Selenium TestNG集成到maven,但是在向pom.xml添加依赖项时遇到了麻烦(如此article中所述),并且在同一时间获得错误。只有当我添加selenium和testng依赖项时才出现问题,我已经将这些库导入到项目中。下面是xml代码

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <groupId>ProV1</groupId>
      <artifactId>ProV1</artifactId>
      <version>0.0.1-SNAPSHOT</version>
      <build>
                <plugins>
                    <plugin>
                        <artifactId>maven-compiler-plugin</artifactId>
                        <version>3.1</version>
                        <configuration>
                            <source>1.7</source>
                            <target>1.7</target>
                        </configuration>
                    </plugin>
                </plugins>
       </build>
       <dependencies>            
           <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <version>4.12</version>
          <scope>test</scope>
        </dependency>
            <dependency>              
                <groupId>org.seleniumhq.selenium</groupId>                              
                <artifactId>selenium-server</artifactId>                              
                <version>2.47.1</version>                               
            </dependency>             
            <dependency>              
                <groupId>org.testng</groupId>                               
                <artifactId>testng</artifactId>                             
                <version>6.9.5</version>                              
                <scope>test</scope>                                     
           </dependency>              
        </dependencies>
    </project>

这是我得到的错误 enter image description here 正如我在一些文章中所建议的那样清理了项目,刷新但没有成功。 我是Maven的新手,所以对于如何解决这个问题的所有有用的建议都非常有用。

1 个答案:

答案 0 :(得分:0)

通过删除依赖项解决了问题,无需添加依赖项。 Maven自动添加它们。