Maven编译错误[包org.testng.annotations不存在]

时间:2013-12-03 07:40:07

标签: maven testng pom.xml

我对maven很新,我想使用maven运行我的测试类。我已经生成了testng.xml,我也创建了POM.xml文件。但是当您运行mvn install时,会生成此错误:

  

[package org.testng.annotations不存在]

请就此提出建议。

pom.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>com.TestNG</groupId>
    <artifactId>TestNG</artifactId>
    <version>0.0.1-SNAPSHOT</version>

    <dependencies>
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>6.1.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>

        <sourceDirectory>src</sourceDirectory>

        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.16</version>
                <configuration>
                    <suiteXmlFiles>
                        <suiteXmlFile>testng.xml</suiteXmlFile>
                    </suiteXmlFiles>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

的testng.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Suite" verbose="1" preserve-order="true">

    <test name="Test">
        <packages>
            <package name="com.testngTest2" />
            <package name="com.testngTest" />
        </packages>
    </test> <!-- Test -->
</suite> <!-- Suite -->

8 个答案:

答案 0 :(得分:44)

我有类似的问题。原因是当需要“编译”时,“testng”依赖的“Scope”选项设置为“test”。

我如何修复它(注意,我使用了Eclipse):

  1. 打开 pom.xml 文件。
  2. 转到“依赖关系”标签。
  3. 选择“ testng ”包,然后点击“属性...
  4. 在打开的屏幕上将“范围”选项更改为“编译”,然后点击“确定”保存。
  5. 尝试使用“编译测试”目标再次构建项目。

答案 1 :(得分:9)

在pom.xml文件中,您的testng范围为 test

<dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>6.9.13.6</version>
            <scope>test</scope>
</dependency>

编译

替换范围
<dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>6.9.13.6</version>
            <scope>compile</scope>
</dependency>

答案 2 :(得分:5)

即使我遇到过这个问题也得到了同样的解决方案。

在你的pom.xml文件中删除范围,这应该可以正常工作。

根据pom.xml中的以下代码,删除范围标记。

即使我们已经为Testng导入了maven依赖项,但是当您在XML文件中添加范围标记时,它会将其视为JUnit注释而不是Testng。因此,当我删除范围标记时,My @Test Annotation被视为Testng Annotation。

<dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>6.8.7</version>
            **<scope>test</scope>** //Remove this line and compile maven
</dependency>

答案 3 :(得分:5)

Beleive me below wil work replace "test" to "compile" in scope
<dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>6.9.13.6</version>
            <scope>compile</scope>
</dependency>

答案 4 :(得分:1)

测试编译->
destination

答案 5 :(得分:0)

将testng的范围设置为&#34; 提供&#34;如果您正在构建一个Web应用程序,并且不希望它包含在WEB-INF / lib中。

答案 6 :(得分:0)

确保您的测试位于“ src / test / java”中。 它将解决这个问题

答案 7 :(得分:0)

以下解决方案对我有效-

请在pom.xml中添加以下依赖项

<dependency>
    <groupId>org.testng</groupId>
    <artifactId>testng</artifactId>
    <version>7.0.0</version>
    <scope>test</scope>
</dependency>

<dependency>
    <groupId>com.google.guava</groupId>
    <artifactId>guava</artifactId>
    <version>17.0</version>
</dependency>