How to use Maven credentials
How to use Maven credentials to add timveroOS dependency to your project.
Here are the steps:
First, add the repository configuration in your pom.xml:
Create or edit the
settings.xml
file (typically located in~/.m2/settings.xml
on Unix/Mac orC:\Users\YourUsername\.m2\settings.xml
on Windows) to store your credentials:
Now you can add dependencies from your private repository in your pom.xml:
Important notes:
The
id
in your repository configuration must match theid
in your settings.xmlNever commit the settings.xml file with your credentials to version control
Make sure the URL in the repository configuration matches timveroOS repository's URL
Last updated