0

我正在使用 BWCE Studio (2.1.0)、BW6 maven 插件 (1.1.0)。当我尝试使用 BW6 maven 插件从 Jenkins 构建 BWCE 应用程序时,出现以下错误:

詹金斯控制台输出:::

Started by user admin

在工作区 C:\Program Files (x86)\Jenkins\workspace\bwce-app-build 中构建

C:\Program Files\Git\bin\git.exe rev-parse --is-inside-work-tree # timeout=10 从远程 Git 存储库获取更改 C:\Program Files\Git\bin\git.exe config remote.origin.url _https://github.com/RajibBiswasTibco/BWCEJenkins.git # timeout=10 从 _https://github.com/RajibBiswasTibco/BWCEJenkins.git C:\Program Files\Git\bin\git 获取上游更改.exe --version # timeout=10 C:\Program Files\Git\bin\git.exe fetch --tags --progress _https://github.com/RajibBiswasTibco/BWCEJenkins.git +refs/heads/ :refs/遥控器/原点/ C:\Program Files\Git\bin\git.exe rev-parse "refs/remotes/origin/master^{commit}" # timeout=10 C:\Program Files\Git\bin\git.exe rev-parse " refs/remotes/origin/origin/master^{commit}" # timeout=10 Checking out Revision 8d093265f7e348f79e506c905be3702abe41ec33 (refs/remotes/origin/master) C:\Program Files\Git\bin\git.exe config core.sparsecheckout # timeout =10 C:\Program Files\Git\bin\git.exe checkout -f 8d093265f7e348f79e506c905be3702abe41ec33 C:\Program Files\Git\bin\git.exe rev-list 8d093265f7e348f79e506c905be3702abe41ec33 #timeout=10 正在解析 19 的 POMbw test-app.application.parent] $ java -cp "C:\Program Files (x86)\Jenkins\plugins\maven-plugin\WEB-INF\lib\maven33-agent-1.8.1.jar;C:\sw \apache-maven-3.3.9\boot\plexus-classworlds-2.5.2.jar;C:\sw\apache-maven-3.3。9/conf/logging" jenkins.maven3.agent.Maven33Main C:\sw\apache-maven-3.3.9 "C:\Program Files (x86)\Jenkins\war\WEB-INF\lib\remoting-2.62.jar " "C:\Program Files (x86)\Jenkins\plugins\maven-plugin\WEB-INF\lib\maven33-interceptor-1.8.1.jar" "C:\Program Files (x86)\Jenkins\plugins\maven -plugin\WEB-INF\lib\maven3-interceptor-commons-1.8.1.jar" 53491 <===[JENKINS REMOTING CAPACITY]===>通道开始执行 Maven:-B -f C:\Program Files ( x86)\Jenkins\workspace\bwce-app-build\bwce-test-app.application.parent\pom.xml 清洁包 [信息] 正在扫描项目... [警告] com.tibco.plugins:bw6 的 POM -maven-plugin:jar:1.1.0 丢失,没有可用的依赖信息 [错误] [错误] 处理 POM 时遇到一些问题:[错误] 无法解决的构建扩展:插件 com.tibco.plugins:bw6-maven-plugin:1.1.0 或其依赖项之一无法解析:未能在 _https://repo 中找到 com.tibco.plugins:bw6-maven-plugin:jar:1.1.0。 maven.apache.org/maven2 被缓存在本地仓库中,直到 central 的更新间隔已过或强制更新后才会重新尝试解析应用程序:[未知版本],C:\Program Files (x86)\Jenkins\workspace\bwce-app-build\bwce-test-app\pom.xml,第 12 行,第 14 列 [错误] 无法解决的构建扩展:插件com.tibco.plugins:bw6-maven-plugin:1.1.0 或其依赖项之一无法解析:未能在 _https:// 中找到 com.tibco.plugins:bw6-maven-plugin:jar:1.1.0 repo.maven.apache.org/maven2 缓存在本地存储库中,直到 Central 的更新间隔已过或强制更新后才会重新尝试解析文件 (x86)\Jenkins\workspace\bwce-app-build\bwce-test-app.application\pom.xml,第 12 行,第 14 列 @ [错误] 构建无法读取 2 个项目-> [帮助 1] [错误]
[错误] 项目 com.tibco.bw:bwce-test-app:1.0.0-SNAPSHOT (C:\Program Files (x86)\Jenkins\workspace\bwce-app-build\bwce-test-app\pom. xml) 有 2 个错误 [错误] 无法解决的构建扩展:插件 com.tibco.plugins:bw6-maven-plugin:1.1.0 或其依赖项之一无法解决:未能找到 com.tibco.plugins:bw6-maven -plugin:jar:1.1.0 in _https://repo.maven.apache.org/maven2 被缓存在本地仓库中,直到central的更新间隔已经过去或强制更新后才会重新尝试解析-> [帮助2] [错误] 未知包装:bwmodule @ com.tibco.bw:bwce-test-app:[unknown-version], C:\Program Files (x86)\Jenkins\workspace\bwce-app-build\bwce-test -app\pom.xml,第 12 行,第 14 列 [错误]
使用 -e 开关重新运行 Maven。[错误] 使用 -X 开关重新运行 Maven 以启用完整的调试日志记录。[ERROR] [ERROR] 有关错误和可能的解决方案的更多信息,请阅读以下文章: [ERROR] [Help 1] _http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException [ERROR] [帮助2] _http://cwiki.apache.org/confluence/display/MAVEN/PluginManagerException 频道停止完成:失败

4

1 回答 1

1

问题是 Maven 本地存储库在 jenkins 和 maven 之间是不同的。 配置詹金斯

您有 2 个选项:

  1. 您将setting.xml在 jenkins 中更新 maven 的配置选项()。

或者

  1. 您将此路径复制到C:\Users\$USER_NAME\.m2\repository\com\tibco\plugins\bw6-maven-pluginjenkins 的本地存储库中。
于 2016-12-27T07:40:37.640 回答