We're using a standard svn layout (/branches/x.y, /tags, /trunk) and mvn release (i.e. maven-release-plugin) to perform releases, from the branches.

We usually try to make sure the section follows the branch, so it looks like this

<scm>
    <connection>scm:svn:http://DOMAIN/svn/PROJECT/MODULE/branches/1.5</connection>
    <developerConnection>( same as connection )</developerConnection>
</scm>

Can anybody tell me whether the "branches/1.5" at the end is strictly necessary? Or does maven-plugin figure this out anyway? What happens if it's wrong - say I'm on the 1.5 branch and the scm section of the pom say 1.4, or trunk? I have no immediate desire to try it. :-/

link|improve this question

67% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Considering the Maven SCM url used fr Subversion:

scm:svn:http://[username[:password]@]server_name[:port]/path_to_repository
scm:svn:http://svn.apache.org/svn/root/module

, what you need is the path to the right Maven module within your repo.
Maven won't be able to infer that path on its own, so the 'branches/1.5' is necessary.

See for illustrations the SO question "With the maven-release-plugin, how to branch a module and its children?".

link|improve this answer
If you're right, that's not a very helpful example. There is not a single example there that DOES specify a particular branch, they all look like what I called scm:svn:DOMAIN/svn/PROJECT/MODULE rather than scm:svn:DOMAIN/svn/PROJECT/MODULE/branches/x.y – PapaFreud Oct 20 '11 at 10:59
@PapaFreud: but the SO question I linked contains examples more closely in line with your question, no? – VonC Oct 20 '11 at 11:00
Not implying that you're wrong, you probably ARE right. – PapaFreud Oct 20 '11 at 11:00
@PapaFreud Basically, you need a path where there is a pom.xml. – VonC Oct 20 '11 at 11:01
OK, I guess I was doing it right all along then. :) We don't do release:branch though, just a plain release:prepare, release:perform, but after checking out a particular branch. – PapaFreud Oct 20 '11 at 11:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.