CI Build在Bitbucket Pipelines CI / CD

时间:2018-04-04 18:20:38

标签: maven continuous-integration bitbucket-pipelines

我想为我的项目添加构建状态徽章,只是为了让它更加花哨,我在我的github repo中使用Travis CI做了它并且工作正常(我猜),所以我想要做同样的事情使用Pipelines集成插件的Bitbucket项目,但构建总是失败。

此错误阻止我成功:

[ERROR] Failed to execute goal on project pos: Could not resolve dependencies for project com.nubeclick:pos:jar:0.0.1-SNAPSHOT: Could not find artifact javafx:jfxrt:jar:1.8 at specified path /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/jfxrt.jar -> [Help 1]

这是.yml配置:

image: maven:3.3.9

pipelines:
  default:
- step:
    caches:
      - maven
    script: # Modify the commands below to build your repository.
      - mvn -B verify # -B batch mode makes Maven less verbose

我对此非常陌生,有一件事让我想到了另一件事,现在我只是想让这项工作正常进行。

Pipeline Log Detail

我可以看到这是关于fxml包的内容,但仍然无法找到解决方案。

那么我应该怎么做才能使构建通过,我应该阅读哪些信息来做到这一点。

Here you can see the Pipelines

1 个答案:

答案 0 :(得分:1)

已经解决,我所要做的就是将我的项目公开,那些工具中的API无法正确检查我的项目。

希望对其他人有帮助。