Hello, Dear all,
in our company we have a policy that every released artifact should have a release tag in Subversion assuming tagging is a cheap operation in subversion. So given a standard multimodule project: foo/trunk/pom.xml (groupId=foo,artifactId=parent,version=1.0-SNAPSHOT) foo/trunk/core/pom.xml (groupId=foo,artifactId=core,parent=foo.parent:1.0-SNAPSHOT) foo/trunk/app1/pom.xml (groupId=foo,artifactId=app1,parent=foo.parent:1.0-SNAPSHOT) foo/trunk/app2/pom.xml (groupId=foo,artifactId=app2,parent=foo.parent:1.0-SNAPSHOT) I want to have the following tags after running mvn -B release:prepare release:perform foo/tags/parent-1.0 foo/tags/core-1.0 foo/tags/app1-1.0 foo/tags/app2-1.0 Currently only foo/tags/parent-1.0 is created. Any ideas on how to achieve this? Regards Mirko -- http://illegalstateexception.blogspot.com/ https://github.com/mfriedenhagen/ https://bitbucket.org/mfriedenhagen/ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
