Hi,
any one know, what is the $HOME path here?
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.
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 ,
any one know, what is the $HOME path here?
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.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.