mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-23 07:45:49 +00:00
[maven-release-plugin] prepare release spring-petclinic-4.0.0
This commit is contained in:
parent
5fd5ef843d
commit
d36c6a2b74
1 changed files with 18 additions and 8 deletions
26
pom.xml
26
pom.xml
|
@ -3,9 +3,10 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<scm>
|
<scm>
|
||||||
<developerConnection>scm:git:git@github.com:avmang/spring-petclinic.git</developerConnection>
|
<connection>scm:git:https://github.com/avmang/spring-petclinic.git</connection>
|
||||||
|
<developerConnection>scm:git:https://github.com/avmang/spring-petclinic.git</developerConnection>
|
||||||
<tag>HEAD</tag>
|
<url>https://github.com/avmang/spring-petclinic</url>
|
||||||
|
<tag>spring-petclinic-4.0.0</tag>
|
||||||
</scm>
|
</scm>
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
@ -16,7 +17,7 @@
|
||||||
|
|
||||||
<groupId>org.springframework.samples</groupId>
|
<groupId>org.springframework.samples</groupId>
|
||||||
<artifactId>spring-petclinic</artifactId>
|
<artifactId>spring-petclinic</artifactId>
|
||||||
<version>4.0.1-SNAPSHOT</version>
|
<version>4.0.0</version>
|
||||||
|
|
||||||
<name>petclinic</name>
|
<name>petclinic</name>
|
||||||
|
|
||||||
|
@ -28,7 +29,7 @@
|
||||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||||
<!-- Important for reproducible builds. Update using e.g. ./mvnw versions:set
|
<!-- Important for reproducible builds. Update using e.g. ./mvnw versions:set
|
||||||
-DnewVersion=... -->
|
-DnewVersion=... -->
|
||||||
<project.build.outputTimestamp>2025-01-15T07:58:04Z</project.build.outputTimestamp>
|
<project.build.outputTimestamp>2025-01-15T07:59:40Z</project.build.outputTimestamp>
|
||||||
|
|
||||||
<!-- Web dependencies -->
|
<!-- Web dependencies -->
|
||||||
<webjars-locator.version>1.0.1</webjars-locator.version>
|
<webjars-locator.version>1.0.1</webjars-locator.version>
|
||||||
|
@ -162,9 +163,18 @@
|
||||||
<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.1.1</version>
|
<version>3.1.1</version>
|
||||||
|
<configuration>
|
||||||
|
<releaseProfiles>release</releaseProfiles>
|
||||||
|
<goals>install</goals>
|
||||||
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
||||||
|
<checkModificationExcludes>
|
||||||
|
<checkModificationExclude>pom.xml</checkModificationExclude>
|
||||||
|
<checkModificationExclude>**</checkModificationExclude>
|
||||||
|
</checkModificationExcludes>
|
||||||
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
|
Loading…
Reference in a new issue