How can i have multiple configuration on my scm section in my pom.
Currently, i have this :
<scm>
<connection>scm:git:ssh://xxxxx/xxx/xxx</connection>
<developerConnection>scm:git:[fetch=]ssh://xxxxx/xxx/xxx[push=]ssh://USERNAME@xxxxx/xxxx/Xxx</developerConnection>
<url>http://xxxx/xxxx/Xxxx</url>
<tag>HEAD</tag>
</scm>
i want to have with new USERNAME because when i use mvn release perform i have a access denied and username is the issue. The username writted is the username from other distance machine and i want to perform release from another with a new username.
Sorry for my bad english.