mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-21 15:25:49 +00:00
Additional release plugin configuration
This commit is contained in:
parent
0b3ca0ecb9
commit
dc0c16179f
1 changed files with 10 additions and 1 deletions
11
pom.xml
11
pom.xml
|
@ -140,16 +140,25 @@
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<scm>
|
<scm>
|
||||||
|
<connection>scm:git:https://github.com/JustFiesta/spring-petclinic.git</connection>
|
||||||
<developerConnection>scm:git:https://github.com/JustFiesta/spring-petclinic.git</developerConnection>
|
<developerConnection>scm:git:https://github.com/JustFiesta/spring-petclinic.git</developerConnection>
|
||||||
<tag>HEAD</tag>
|
<url>https://github.com/JustFiesta/spring-petclinic</url>
|
||||||
|
<tag>@{project.version}</tag>
|
||||||
</scm>
|
</scm>
|
||||||
|
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-release-plugin</artifactId>
|
<artifactId>maven-release-plugin</artifactId>
|
||||||
<version>3.0.1</version>
|
<version>3.0.1</version>
|
||||||
|
<configuration>
|
||||||
|
<goals>pre-integration-test</goals>
|
||||||
|
<preparationGoals>package</preparationGoals>
|
||||||
|
<tagNameFormat>@{project.version}</tagNameFormat>
|
||||||
|
<remoteTagging>false</remoteTagging>
|
||||||
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
|
Loading…
Reference in a new issue