Different SCM for different profiles in Maven
问题 In my project we have to use maben-build-number plugin to construct the final name of the jar, for that purpose we use the revision of the SCN, so we need SCM But we have two SVN on controlled environment without direct access and on our local test environment, so for our pouproses we have to use: <scm> <connection>scm:svn:http://dev.com/svn_repo/trunk</connection> <developerConnection>scm:svn:https://dev.com/svn_repo/trunk</developerConnection> <url>http://dev.com/view.cvs</url> </scm> But