当前位置: 首页 > 知识库问答 >
问题:

无法执行目标组织。阿帕奇。专家插件:maven编译器插件:3.8.1:projec上的testCompile(默认testCompile)

甄坚白
2023-03-14

我是测试自动化工程师,我已经为自动化脚本配置了Jenkins和maven项目,几天前我的所有脚本在Jenkins和本地运行良好,但现在当我通过异常运行build in Jenkins和本地系统时,在本地,当我尝试更新我的maven项目并通过命令“maven test”运行脚本时,它工作正常,当我尝试运行命令“maven clean”,然后以“maven test”的形式运行命令时,所有脚本都会运行,当我尝试运行同一个porm时,系统会生成一个错误。来自jenkins的xml文件,没有命令“clean test”,工作正常,但命令总是面临同样的异常。“ERROR]无法执行goal org.apache.maven.plugins:maven compiler plugin:3.8.1:testCompile(默认testCompile)on project EventBuizz:compile failure[ERROR]/E:/Automation/eclipse workspace/EventBuizz/src/test/java/EventBuizz/EventCenterDashBoard.java:[21,34]包org.apache.tools.ant.types不存在[ERROR]-

我已经看了其他帖子,并按照建议对我的. pom文件进行了一些修改,但我仍然被同样的错误所困扰。不确定提供什么其他有用的信息,所以请让我知道什么其他信息将是有用的故障排除。下面是我的. pom文件

<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>EventBuizz</groupId>
    <artifactId>EventBuizz</artifactId>
    <version>0.0.1-SNAPSHOT</version>


    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>11</maven.compiler.source>
        <maven.compiler.target>11</maven.compiler.target>
         </properties>
    <dependencies>



        <dependency>
            <groupId>org.apache.maven.shared</groupId>
            <artifactId>maven-dependency-tree</artifactId>
            <version>3.0.1</version>
        </dependency>
        <!-- Selenium -->
        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-java</artifactId>
            <version>3.141.59</version>
        </dependency>

        <!-- TestNG -->
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>6.14.3</version>
            <scope>test</scope>
        </dependency>

        <!--JUnit -->

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.10</version>
            <scope>test</scope>
        </dependency>

        <!--Maven Plugin -->
        <dependency>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.8.1</version>
            <type>maven-plugin</type>



        </dependency>

        <!--Extent Report -->
        <dependency>
            <groupId>com.relevantcodes</groupId>
            <artifactId>extentreports</artifactId>
            <version>2.41.2</version>
        </dependency>

<dependency>
  <!-- jsoup HTML parser library @ https://jsoup.org/-->
  <groupId>org.jsoup</groupId>
  <artifactId>jsoup</artifactId>
  <version>1.12.1</version>
</dependency>

    </dependencies>



    <build>
        <plugins>

            <!--Maven Plugin -->
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.1</version>
                <configuration>
                </configuration>
            </plugin>

            <!--Maven surfire plugin -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.8</version>
                <configuration>
                    <printSummary>true</printSummary>
                    <suiteXmlFiles>
                        <suiteXmlFile>testng.xml</suiteXmlFile>
                    </suiteXmlFiles>
                </configuration>
            </plugin>
        </plugins>
    </build>





</project>

我想用命令“clean test”在jenkins中运行我的测试脚本。

共有1个答案

张坚白
2023-03-14

testCompile阶段编译应用程序测试源。如果此阶段失败,则测试阶段将失败。检查您得到的错误-编译失败[error]/E:/Automation/eclipse workspace/EventBuizz/src/test/java/EventBuizz/EventBuizz/EventCenterDashBoard。java:[21,34]包组织。阿帕奇。工具。蚂蚁类型不存在我将通过检查这个类开始调试它。似乎是图书馆——org。阿帕奇。工具。蚂蚁项目中缺少类型

 类似资料: