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.
Time to up your Loom game! The new Loom Essentials Certification is here! Show off your skills, learn pro tips, and get officially recognized. Perfect for taking your video messaging to the next level.
Learn moreOnline forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.