我是测试自动化工程师,我已经为自动化脚本配置了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中运行我的测试脚本。
testCompile
阶段编译应用程序测试源。如果此阶段失败,则测试
阶段将失败。检查您得到的错误-编译失败[error]/E:/Automation/eclipse workspace/EventBuizz/src/test/java/EventBuizz/EventBuizz/EventCenterDashBoard。java:[21,34]包组织。阿帕奇。工具。蚂蚁类型不存在
我将通过检查这个类开始调试它。似乎是图书馆——org。阿帕奇。工具。蚂蚁项目中缺少类型
。
当我运行intellij idea maven安装时,它遇到了如下问题 无法执行目标组织。阿帕奇。专家插件:maven编译器插件:3.8.1:testCompile 如何解决?
我知道这是一个重复的问题,但其他话题的答案对我没有帮助。 我使用的是Eclipse光子,Java版本:10,我在Eclipse和pom中将jdk/jre版本设置为10。xml文件。我已经改变了。ini文件: -dosgi.requiredJavaVersion=10(设置为1.8) 我还在我的pom中添加了插件。xml: 没有任何帮助。这是我的pom。xml: 这些依赖项没有在类文件中读取,我也尝
我运行命令mvn clean package我得到了上面的错误我的pom是: http://maven.apache.org/xsd/maven-4.0.0.xsd"
[INFO]abBULIT........................................................................................................................................................................跳过.................
maven jar插件失败,错误如下: 无法执行目标组织。阿帕奇。专家plugins:maven-jar plugin:3.1.2:jar(默认jar)on project myProject:您必须使用分类器将补充工件附加到项目中,而不是替换它们。 我正在使用Java11。我将maven jar插件从2.4升级到了3.1.0。 它只在mvn清洁安装部署时失败。(没有部署,它正在正确运行)。 有什
我有一个maven项目,它是从git回购复制到我的eclipse上的。它是基于Java8构建的。我要做的第一件事就是做一个 但我收到以下失败信息: 以及汇编设置: 无论我构建项目多少次,我都会得到相同的错误。即使在清理项目并从eclipse中刷新它之后也没有帮助。请导游。 更新: 在添加属性以设置maven编译器插件之后 , 我得到以下错误: 下面是给出MainUITabbed类编译错误的代码片段