Maven release plugin git credentials
Based on the docs you have to use a special property, project.scm.id, to define the id of the appropriate server entry in your settings.xml file. <properties> <project.scm.id>my-scm-server</project.scm.id> </properties> And the following in your settings.xml file: <settings> <servers> <server> <id>my-scm-server</id> <username>myUser</username> <password>myPassword</password> </server> </servers> </settings> BTW: Check if you are using the most recent version of … Read more