尽管验证步骤有效,但 Maven 测试步骤失败

Maven test step is failing although verify step is working

我有一个 maven3 多模块项目,我想执行 JUnit 测试。使用 mvn clean verify 构建产品工作正常,而且 mvn 集成测试在构建产品后很好地触发了我的 UITests。

但是当我尝试使用 mvn test 触发 JUnit 测试时,出现以下错误:

[ERROR] Failed to execute goal on project xxxx.commons: Could not resolve dependencies for project xxxx.commons:eclipse-plugin:1.0.0-SNAPSHOT: Failure to find xxxx.library.common:jar:1.0.0-SNAPSHOT in https://maven.atlassian.com/repository/public was cached in the local repository, resolution will not be reattempted until the update interval of atlassian-public has elapsed or updates are forced -> [Help 1]

我已将 xxxx.library.common 放入 Eclipse 的插件依赖项中。它还作为 Require-Bundle 出现在 MANIFEST.MF 中。

我错过了什么?为什么在验证目标下依赖项工作正常而在测试目标下失败?

我已经设法解决了这个问题。某些插件无法放在 atlassian 存储库中,因此我使用 this solution.

在存储库中手动安装了它们