我正在测试自动化工程师,我已经配置了Jenkins和maven项目来使脚本自动化,几天前,我的所有脚本在Jenkins和本地都运行良好,但是现在当我在Jenkins和本地系统中运行构建时,由于异常,当我尝试更新我的maven项目并通过命令“ maven test”运行脚本时,它在本地正常运行,并且当我尝试运行命令“ maven clean”然后运行命令以“ maven test”运行时,所有脚本都在运行,然后系统生成一个错误,当我尝试从jenkins运行相同的porm.xml文件而没有命令“干净测试”时,它的工作正常,但命令始终面临相同的异常 。 “错误”未能在项目EventBuizz上执行目标org.apache.maven.plugins:maven-compiler-plugin:3.8.1:testCompile(default-testCompile):编译失败 [错误] /E:/Automation/eclipse-workspace/EventBuizz/src/test/java/EventBuizz/EventBuizz/EventCenterDashBoard.java:[21,34]包org.apache.tools.ant.types不存在 [错误]-> [帮助1] [错误] [错误]要查看错误的完整堆栈跟踪,请使用-e开关重新运行Maven。 [错误]使用-X开关重新运行Maven以启用完整的调试日志记录。 [错误] [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>
我想使用“干净测试”命令在jenkins中运行我的测试脚本。
答案 0 :(得分:0)
testCompile
阶段编译应用程序测试源。如果此阶段失败,则test
阶段将失败。
检查您得到的错误-
Compilation failure [ERROR] /E:/Automation/eclipse-workspace/EventBuizz/src/test/java/EventBuizz/EventBuizz/EventCenterDashBoard.java:[21,34] package org.apache.tools.ant.types does not exist
我将通过检查此类开始调试它。您的项目中似乎缺少库org.apache.tools.ant.types
。