We are using maven and git together for a Java project. In <scm>
section, <tag>
is automatically added by release plugin.
For example,
<scm>
<connection>scm:git:http://myserver:7990/scm/project/test.git</connection>
<tag>releaes-tag</tag>
</scm>
What does <tag>
represent here?
I believe the normal convention is <tag>HEAD</tag>.
When we were using subversion, maven never used <tag></tag>
What is the meaning of <tag></tag>
?
I searched google and maven documentation but I cannot find any information on it.
<tag>HEAD</tag>
right? And have it just set automatically on the maven release for the release tag. Or does it always add it back to HEAD after a release? – Entebbe