So I've configured my scm in a company super POM as such:
<scm>
<connection>scm:perforce:${perforce.host}:${perforce.port}:${perforce.pa
th}</connection>
<developerConnection>scm:perforce:${perforce.host}:${perforce.port}:${pe
rforce.path}
</developerConnection>
<url>http://${perforce.host}:${perforce.web.port}/@md=d&cd=//&cd
f=${perforce.path}&[EMAIL PROTECTED]</url>
</scm>
I want child projects to only define the property 'perforce.path'.
This would work the way I want but Maven appends project.name to
'project.scm.connection'. Any ideas for how I can tell maven or the scm
plugin to use the connection url as-is since perforce.path will be
overridden by each project?
Thanks,
Brian