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

Posted

技术标签:

【中文标题】Maven编译错误[包org.testng.annotations不存在]【英文标题】:Maven Compilation error [package org.testng.annotations does not exist] 【发布时间】:2013-12-19 04:10:08 【问题描述】:

我对 maven 很陌生,我想使用 maven 运行我的测试类。我已经生成了 testng.xml 并且还创建了 POM.xml 文件。但是当你运行mvn install 时,它会产生这个错误:

[包 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 -->

【问题讨论】:

您的项目中的测试类在哪里?即在 src/test/java 下还是其他地方? 【参考方案1】:

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

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

    打开 pom.xml 文件。 转到“依赖项”选项卡。 选择“testng”包并点击“Properties...” 在打开的屏幕上,将“Scope”选项更改为“compile”并点击“OK”保存。 尝试使用“编译测试”目标再次构建您的项目。

【讨论】:

感谢 Pavik “编译测试”对我有用,我在全新安装时遇到错误【参考方案2】:

删除测试范围testng依赖并添加编译

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

【讨论】:

【参考方案3】:

在您的 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>

【讨论】:

【参考方案4】:
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>

【讨论】:

为什么?为什么?为什么它起作用?它对我有用,但不知道为什么【参考方案5】:

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

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

按照以下pom.xml中的代码,去掉scope标签。

即使我们已经为 Testng 导入了 maven 依赖,当你在 XML 文件中添加 scope 标签时,它被视为 JUnit 注释而不是 Testng。因此,当我删除范围标记时,我的 @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>

【讨论】:

【参考方案6】: 测试编译 -->
    <dependency>
        <groupId>org.testng</groupId>
        <artifactId>testng</artifactId>
        <version>6.8.8</version>
        <scope>compile</scope>
    </dependency>

【讨论】:

【参考方案7】:

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

【讨论】:

【参考方案8】:

如果您正在构建一个 Web 应用程序并且不希望它包含在 WEB-INF/lib 中,请将 testng 的范围设置为“provided”。

【讨论】:

【参考方案9】:

以下解决方案适用于我-

请在您的 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>

【讨论】:

【参考方案10】:

对于找不到 pom.xml 文件的 JetBrains IntelliJ 用户:

    转到“文件”>“项目结构” 从“项目设置”>“模块”中选择测试包所在的模块 转到依赖项选项卡 将范围设置从“测试”更改为“编译”

【讨论】:

以上是关于Maven编译错误[包org.testng.annotations不存在]的主要内容,如果未能解决你的问题,请参考以下文章

maven本地仓库中存在jar包,但编译不成功,显示jar包不存在

MAVEN常见错误整理及解决方法

maven编译时候提示找不到符号怎么办

IDEA使用lombok,装好插件和在maven里加了依赖包后编译提示没有找到get/set方法

IDEA--Error:(3, 32) java: 程序包org.springframework.boot不存在

maven项目啥时候用到编译,打包