gpt4 book ai didi

java - 具有多个模块的 Maven 项目无法找到模块的 pom.xml - Jenkins/Eclipse

转载 作者:行者123 更新时间:2023-11-30 07:24:57 25 4
gpt4 key购买 nike

我在 Jenkins 上创建了一个 Maven 项目,它将从 Butbucket 克隆一个 Mercurial 分支,这样我就可以运行我的 Selenium TestNG 脚本。我尝试清除工作区以进行干净的构建,但它导致了与以前相同的错误。另外,我检查了 jenkins 工作区中的每个模块的 pom.xml 文件,它们都存在。单击控制台中的错误报告的图像。我不明白为什么 Jenkins 和 Eclipse 都无法找到我的依赖项的 pom.xml 文件,当它位于同一项目文件夹中时。

Image: Jenkins Console Output

Pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<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>

<parent>
<artifactId>PSWebTestFramework</artifactId>
<groupId>com.guidewire.pstesting</groupId>
<version>1.0-SNAPSHOT</version>
</parent>

<artifactId>pswtf-test-tp-pc</artifactId>

<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.8.21</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.53.0</version>
</dependency>
<dependency>
<groupId>com.guidewire.pstesting</groupId>
<artifactId>pswtf-application-core</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.guidewire.pstesting</groupId>
<artifactId>pswtf-test-core</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.guidewire.pstesting</groupId>
<artifactId>pswtf-test-tp-core</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.guidewire.pstesting</groupId>
<artifactId>pswtf-application-tp-pc</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.guidewire.pstesting</groupId>
<artifactId>pswtf-application-ootb-pc</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>

<build>
<defaultGoal>test</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<excludes>META-INF/*.SF</excludes>
<excludes>META-INF/*.DSA</excludes>
<excludes>META-INF/*.RSA</excludes>
<argLine>-Dorg.uncommons.reportng.escape-output=false</argLine> <!-- get html in reports rather than string -->
<properties>
<property>
<name>usedefaultlisteners</name>
<value>false</value> <!-- disabling default listeners is optional -->
</property>
<property>
<name>listener</name>
<value>org.uncommons.reportng.HTMLReporter, org.uncommons.reportng.JUnitXMLReporter, org.testng.reporters.XMLReporter</value>
</property>
</properties>
<additionalClasspathElements>
<additionalClasspathElement>${basedir}/src/test/conf</additionalClasspathElement>
<additionalClasspathElement>${basedir}/src/test/testdata</additionalClasspathElement>
</additionalClasspathElements>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>

更新:基于下面的解决方案,我改变了我的作业配置,并根据下图,我能够获得成功而不是失败。

Image: Job Configuration

最佳答案

您附加的屏幕截图中的错误意味着 Artifact ID“pswtf-test-tp-pc”无法在本地 Maven 存储库中找到依赖项。

使用 maven <modules> 从父 POM 构建所有项目标签。将其添加到具有 Artifact ID PSWebTestFramework 的父文件夹的 pom.xml 中。首先运行此父 pom,然后从您的项目运行 - pswtf-test-tp-pc

<modules>
<module>pswtf-application-core</module>
<module>pswtf-test-core</module>
<module>pswtf-test-tp-core</module>
<module>pswtf-application-tp-pc</module>
</modules>

这应该构建每个模块并将其安装在本地 Maven 存储库中。

附注- 使用mvn clean install在本地存储库中安装依赖项的命令。

关于java - 具有多个模块的 Maven 项目无法找到模块的 pom.xml - Jenkins/Eclipse,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36943320/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com