Maven Release Plugin: Difference between revisions
Jump to navigation
Jump to search
(One intermediate revision by the same user not shown) | |||
Line 90: | Line 90: | ||
| valign="top" | | | valign="top" | | ||
* [https://medium.com/@iamarasekera/streamlining-your-development-workflow-managing-releases-versions-and-tags-be7018e68726 Managing Releases, Versions, & Tags] | |||
* [https://www.gitkraken.com/gitkon/semantic-versioning-git-tags Semantic Versioning and Git Tags] | |||
| valign="top" | | | valign="top" | | ||
|} | |} |
Latest revision as of 01:40, 2 April 2024
<scm>
<developerConnection>scm:git:[email protected]:academia/academia-http-crawler.git</developerConnection>
<connection>scm:git:git://cdn.chorke.org/academia/academia-http-crawler.git</connection>
<url>https://cdn.chorke.org/gitlab/academia/academia-http-crawler</url>
<tag>@{project.version}</tag>
</scm>
<dependencies>
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.2.0</version>
<type>maven-plugin</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<tagNameFormat>@{project.version}</tagNameFormat>
<checkModificationExcludes>
<checkModificationExclude>pom.xml</checkModificationExclude>
</checkModificationExcludes>
</configuration>
</plugin>
<plugins>
<build>
Knowledge
mvn --batch-mode \
release:clean release:prepare release:perform \
-Darguments="-Dmaven.javadoc.skip=true -Dmaven.test.skipTests=true \
-Dmaven.test.skip=true" -Dusername=<GIT_SCM_USER> -Dpassword=<GIT_SCM_PASS>
|
mvn --batch-mode \
build-helper:parse-version versions:set \
-DnewVersion=${parsedVersion.majorVersion}\
.${parsedVersion.nextMinorVersion}.0-SNAPSHOT versions:commit
|
| |
References
| ||