I am trying to specify multiple plans in bamboo specs (8.1.3) but those happen to have circular dependency: Plan A (Unit tests) when finished - emits artifacts and triggers Plan B Plan B (Sonar scanner) requires artifacts from Plan A
So in specs: A references B (child) and B references A (artifacts).
Everything is fine as long as those plans already exists but I would like to be able to define specs for a new project and then I get errors that referenced plan doesn't exist. If I ever need to migrate entire specs there would be a lot of changes to first disable references and then enable them again so I would like to avoid that.
Is there any way for bamboo to first create plans and only then configure them? Maybe it is already supported in newer specs version? (I couldn't find any mention and cannot test it on my instance)