我在远程机器上安装了jenkins。如何在詹金斯指出我的POM位置。如果我将POM.xml位置指定为C:\ Automation \ pom.xml我收到错误没有这样的文件存在。
Started by user anonymous
Building in workspace C:\Users\Administrator\.jenkins\workspace\RegressionTestJob
Parsing POMs
ERROR: No such file C:\Automation\pom.xml
Perhaps you need to specify the correct POM file path in the project configuration?
TestNG Reports Processing: START
Looking for TestNG results report in workspace using pattern: **/testng-results.xml
Did not find any matching files.
Finished: FAILURE
答案 0 :(得分:1)
您的pom应该在您的工作区中,就像您在IDE中构建项目一样,例如eclipse和构建项目时,Jenkins将在工作区中找到pom并构建项目
如果您仍希望指定可以使用-f选项的位置
mvn -f PomFile.xml
希望有所帮助:)