Yann Le Du wrote:
Hi,

In order to ease Continuum use, we want to have the following project
structure :

~  PROJECT
~  +-- parent
~      +-- pom.xml
~  +-- module
~      +-- pom.xml

module has obviously parent for parent

parent defines this SCM URL :
scm:svn:svn://host/PROJECT/parent

In module, this is inheirted as :
scm:svn:svn://host/PROJECT/parent/module
... which is not what we want

Note that in parent the module is correctly defined :
<module>../module</module>

Is there way to inherit correct URL (e.g. through relativePath), or is the
only solution to put correct URL directly in module ?

How about this:
scm:svn:svn://host/PROJECT/${pom.artifactId}

This should work if you use the same name for the part in your svn repository as their artifactIds.

--
Dennis Lundberg

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to