I am trying to define my <SCM>
connection tag in a parent pom. However, due to the provider I am using (Jazz) I do not wish my artifactId from being appended in the child artifact.
I found reference to an old thread indicating that appending a trailing / to the connection URI would prevent the artifactId from being appended, but this is not the case.
For example if the following is in my parent pom:
<scm>
<connection>scm:jazz:https://jazz.domain.com/ccm:MyProjectName</connection>
</scm>
My child's effective pom shows the connection as being:
<connection>scm:jazz:https://jazz.domain.com/ccm:MyProjectName/child-module-name</connection>
I would like to prevent child-module-name
from being appended to the connection string. I read on an old thread that appending a trailing / to the connection string in the parent would prevent the child's artifactId from being appended, but this does not seem to be the case.
I am using Maven 3.2.3.
Is there any way to accomplish this?