I have below configurations in place -
<scm>
<connection>scm:svn:http://example.com/tags/MyProject/MyProject-0.1</connection>
<developerConnection>scm:svn:http://example.com/tags/MyProject/MyProject-0.1</developerConnection>
<url>scm:svn:http://example.com/tags/MyProject/MyProject-0.1</url>
</scm>
My question is each time version changes for my project above scm configurations will change. say from 0.1 to 0.2 and so on... Do we need to make sure these tags created in svn or does maven creates the tag? if Maven creates the tag with my above configuration I already have http://example.com/tags/MyProject available but it's not tagging the above?
Can anye fill me some thoughts please?