While releasing Java module from Jenkins, the system shows following logs :
------------------------------------------------------------------------
[INFO] Building mypro 1.0.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-release-plugin:2.5.2:prepare (default-cli) @ mypro ---
...
[INFO] Executing: /bin/sh -c cd /home/jenkins/workspace/mypro && svn --username myuser --password '*****' --no-auth-cache --non-interactive copy --file /tmp/maven-scm-1889961268.commit --parents --revision 001 https://myhost/svn/repos/mypro/tags/myparent-1.0.1/mypro https://myhost/svn/repos/mypro/tags/mypro-1.0.0
...
[ERROR] svn: E160013: '/svn/rpos/!svn/rvr/001/mypro/tags/myparent-1.0.1/mypro' path not found
The pom.xml definition is :
<groupId>myGroupId</groupId>
<artifactId>mypro</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<parent>
<groupId>myGroupId</groupId>
<artifactId>myparent</artifactId>
<version>1.0.1</version>
</parent>
The subversion repository structure
|--myparent
|--trunk
|--branch
|--tags
|--mypro
|--trunk
|--branch
|--tags
Is it possible to use maven parent feature on distinct project ?
Is there a way to configure maven-release-plugin to use "/mypro/trunk" instead of "/mypro/tags/myparent-1.0.1/mypro" as the source path in the subversion copy command ?
Thanks