mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-22 15:55:49 +00:00
Support for SCM
This commit is contained in:
parent
923e2b7aa3
commit
8e40c66f0e
2 changed files with 33 additions and 4 deletions
14
pom.xml
14
pom.xml
|
@ -1,10 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.springframework.samples</groupId>
|
||||
<artifactId>spring-petclinic</artifactId>
|
||||
<version>3.1.0-SNAPSHOT</version>
|
||||
|
||||
<version>3.1.1-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
|
@ -19,7 +19,7 @@
|
|||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
<!-- Important for reproducible builds. Update using e.g. ./mvnw versions:set -DnewVersion=... -->
|
||||
<project.build.outputTimestamp>2023-05-10T07:42:50Z</project.build.outputTimestamp>
|
||||
<project.build.outputTimestamp>2023-10-12T10:15:33Z</project.build.outputTimestamp>
|
||||
|
||||
<!-- Web dependencies -->
|
||||
<webjars-bootstrap.version>5.2.3</webjars-bootstrap.version>
|
||||
|
@ -443,5 +443,11 @@
|
|||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
<scm>
|
||||
<connection>scm:git:https://github.com/surtexx/spring-petclinic.git</connection>
|
||||
<developerConnection>scm:git:https://github.com/surtexx/spring-petclinic.git</developerConnection>
|
||||
<tag>HEAD</tag>
|
||||
<url>https://github.com/surtexx/spring-petclinic</url>
|
||||
</scm>
|
||||
|
||||
</project>
|
||||
|
|
23
release.properties
Normal file
23
release.properties
Normal file
|
@ -0,0 +1,23 @@
|
|||
#release configuration
|
||||
#Thu Oct 12 13:25:10 EEST 2023
|
||||
completedPhase=check-poms
|
||||
exec.pomFileName=pom.xml
|
||||
exec.snapshotReleasePluginAllowed=false
|
||||
pinExternals=false
|
||||
preparationGoals=clean verify
|
||||
project.scm.org.springframework.samples\:spring-petclinic.connection=scm\:git\:https\://github.com/surtexx/spring-petclinic.git
|
||||
project.scm.org.springframework.samples\:spring-petclinic.developerConnection=scm\:git\:https\://github.com/surtexx/spring-petclinic.git
|
||||
project.scm.org.springframework.samples\:spring-petclinic.tag=HEAD
|
||||
project.scm.org.springframework.samples\:spring-petclinic.url=https\://github.com/surtexx/spring-petclinic
|
||||
projectVersionPolicyConfig=<projectVersionPolicyConfig>${projectVersionPolicyConfig}</projectVersionPolicyConfig>\n
|
||||
projectVersionPolicyId=default
|
||||
pushChanges=true
|
||||
releaseStrategyId=default
|
||||
remoteTagging=true
|
||||
scm.branchCommitComment=@{prefix} prepare branch @{releaseLabel}
|
||||
scm.commentPrefix=[maven-release-plugin]
|
||||
scm.developmentCommitComment=@{prefix} prepare for next development iteration
|
||||
scm.releaseCommitComment=@{prefix} prepare release @{releaseLabel}
|
||||
scm.rollbackCommitComment=@{prefix} rollback the release of @{releaseLabel}
|
||||
scm.tagNameFormat=@{project.artifactId}-@{project.version}
|
||||
scm.url=scm\:git\:https\://github.com/surtexx/spring-petclinic.git
|
Loading…
Reference in a new issue