Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 bitbucket 管道中构建多项目?
通过管道对父存储库进行 mvn clean install 时,找不到子项目。
您可以配置您的 bitbucket-pipelines.yml :
script: - mvn -f parent-pom/pom.xml -B verify
parent-pom 是你的父项目。
尝试类似:
pipelines: default: - step: script: # 修改下面的命令来构建你的仓库。 - cd 子项目 - mvn 全新安装包