Building a maven child project that depends on another projects child project with Bamboo
- by kosoant
I have two maven projects
Project AAA
* AAA-Core
* AAA-Other
Project BBB
* BBB-Core
* BBB-AAA-specific
I want to create a build plan in Bamboo to build the BBB-AAA-specific project. The plan configuration is such that this project depends on the AAA-Other projec build. Thus everything should work ok.
But when I try to run the BBB-AAA-specific Bamboo plan I get an error that states:
"Unable to find resource 'foo.bar.AAA:AAA:pom:0.0.1-SNAPSHOT' in repository snapshots (http://foo.bar.com)"
What is going on?
The bamboo builds for "AAA-Core" and "AAA-Other" work as expected.