You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
How do I specify the settings.xml file location for Maven on Bitbucket Pipelines?
This worked for me when I replaced
<repo-path>
with
/opt/atlassian/pipelines/agent/build
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm late to this conversation but I wanted to point out that the accepted answer here seems to imply that the maven credentials are stored in a settings.xml file in the source code repository.
This is a security risk as you should never store credentials in source code repos.
Instead, you should store your credentials in BitBucket Pipelines Secure Environment Variables and then substitute them into a settings.xml file during your build step.
We created a guide that demonstrates how to do this as part of getting pipelines setup with maven repositories in a professional, secure manner.
For anyone coming along seeking an example please check it out:
Continuous Integration: A Complete Guide to Using BitBucket Pipelines With Maven Repositories
Good luck!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, we'd like to know how and specifically need to be able to configure the `<servers>` element with authentication info
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I just copied the settings.xml file from my repo to the home directory before building.
cp <project-path>/settings.xml $HOME/.m2/settings.xml
mvn clean install
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Bryan Phillips,
That's how you update settings.xml in your local Maven repo, but we are talking about the remote settings.xml file that Bitbucket uses on the docker container when running mvn commands. At this point, I am guessing that the this files is a part of the maven:3.3.3 docker image listed in bitbucket-pipelines.yml
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Oh, thanks @Bryan Phillips, this is awesome. Can you add this as an answer?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello, I'm having the same problem. None of the above solutions helped me
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi everyone, The Cloud team recently announced 12 new DevOps features that help developers ship better code, faster ! While we’re all excited about the new improvements to Bitbucket ...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.