Missed Team ’24? Catch up on announcements here.

×
Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Sharing Maven Artifacts/Dependencies between plans in Bamboo 5 (OnDemand)

Robert Watkins
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 22, 2013

Ok, I thought I had this working, but it turns out I didn't. What I want to know is how do you share Maven artifacts between plans.

Here's my setup:

Project A

  • has a single stage, with a single task, a Maven 3.x task with the goal "clean verify --batch-mode".
  • produces a Maven artifact - projectA.jar. This is not explictly shared by any action on my part.

Project B

  • the top-level pom declares a dependencyManagement on projectA; a submodule has the actual dependency
  • has the "Automatic dependency management" flag enabled on the Dependencies tab
  • has a single stage
    • which has a Maven Dependencies Processor task
    • and a Maven 3.x task with the goal "clean verify --batch-mode"
  • the Maven Dependencies Tab for the project does indeed declare that there is a dependency.

But - when I go to build project B, it doesn't do anything with that dependency. I was expecting it to download the projectA jar (for the appropriate branch), but there's nothing, so the build fails.

I can make it pass by making Project A do an 'install' instead of a 'verify' - but that only passes until the next time the ElasticBamboo restarts. Also, it doesn't work for branches - the install is a "last in wins" approach.

So here's the question:
* Is it possible to automatically share the maven-produced artifacts, without relying on the results of the install task?
* If so, what am I doing wrong with the above?

2 answers

1 accepted

0 votes
Answer accepted
Robert Watkins
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 10, 2013

It turns out this feature does not exist - the online documentation is in a state of flux where some references to an old deprecated feature still exist.

To quote Marek Went:

Unfortunately, the Maven Dependency management never was meant to provide automatic dependency uploading/installing.

Maven Dependency management is meant for resolve automatic dependencies between plans.

So, it would not provide maven artifacts on your dependent build/job.

The only way to share Maven artefacts between plans is to:

  • publish the artefact (and the pom.xml) from the source project
  • use the Artefact Download task in the destination project to fetch the artefact
  • use a Maven task to invoke 'install:install-file' on the artefact-and-pom
  • then run the normal Maven build

This manual work around will quickly grow out of control if you are using several related Maven projects, and completely defeats the point of automating the plan dependency checks.

If you would like to see real dependency management in Bamboo, then please vote for https://jira.atlassian.com/browse/BAM-13881

0 votes
Robert Watkins
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 23, 2013

I did find one thing wrong with the setup - the Maven Dependencies Processor needs to go onto Project A, as a final task, so that Project A knows which dependencies it produces.

Without that step (which I had in my real project, but not in the dummy example), ProjectB doesn't know that the artifact comes from ProjectA. Adding the step allows Bamboo to know the projects are related, and will make it so rebuilding ProjectA will build ProjectB

However, even with that step, ProjectB won't download the dependencies.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events