Is there any way to set build dependencies on artifacts, which was generated in private builds on another project?
Asked
Active
Viewed 86 times
1 Answers
0
If I understand correctly, you have B, which depends on A (A-->B), and A generates artifacts that B needs to consume.
Yes, this should work with private builds. You may have to set up a snapshot dependency (A-->B). A finish-build trigger is insufficient, as explained here. Thus, set up the snapshot dependency and trigger B rather than A; B will trigger A itself.
-
In this scenario, B will be personal too? Is it possible to launch personal build A, depended on B and B will be in trunk? – Iged M. Mar 24 '16 at 14:31
-
I don't think so. Both B and A will get your personal changes applied (in the form of a "patch" applied to the workspace). – sferencik Mar 24 '16 at 14:36