mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-19 14:05:50 +00:00
Merge ae7cddb974
into 60105d5d9a
This commit is contained in:
commit
48bcfc7e22
1 changed files with 39 additions and 1 deletions
40
pom.xml
40
pom.xml
|
@ -5,7 +5,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.springframework.samples</groupId>
|
||||
<artifactId>spring-petclinic</artifactId>
|
||||
<version>2.0.0.BUILD-SNAPSHOT</version>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
|
@ -29,8 +29,45 @@
|
|||
|
||||
<jacoco.version>0.8.1</jacoco.version>
|
||||
|
||||
<!-- Version for our private javax.cache/cache-api artifact -->
|
||||
<cache-api.version>LATEST</cache-api.version>
|
||||
</properties>
|
||||
|
||||
<!--
|
||||
<scm>
|
||||
<url>git@github.com:gmessner/spring-petclinic.git</url>
|
||||
<connection>scm:git:git@github.com:gmessner/spring-petclinic.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:gmessner/spring-petclinic.git</developerConnection>
|
||||
<tag>HEAD</tag>
|
||||
</scm>
|
||||
-->
|
||||
|
||||
<distributionManagement>
|
||||
<snapshotRepository>
|
||||
<id>nexus-snapshots</id>
|
||||
<url>http://localhost:8081/nexus/content/repositories/snapshots</url>
|
||||
</snapshotRepository>
|
||||
<repository>
|
||||
<id>nexus-releases</id>
|
||||
<url>http://localhost:8081/nexus/content/repositories/releases</url>
|
||||
</repository>
|
||||
</distributionManagement>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>nexus-releases</id>
|
||||
<url>http://localhost:8081/nexus/content/repositories/releases</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>nexus-snapshots</id>
|
||||
<url>http://localhost:8081/nexus/content/repositories/snapshots</url>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
<updatePolicy>always</updatePolicy>
|
||||
</snapshots>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<dependencies>
|
||||
<!-- Spring and Spring Boot dependencies -->
|
||||
<dependency>
|
||||
|
@ -75,6 +112,7 @@
|
|||
<dependency>
|
||||
<groupId>javax.cache</groupId>
|
||||
<artifactId>cache-api</artifactId>
|
||||
<version>${cache-api.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.ehcache</groupId>
|
||||
|
|
Loading…
Reference in a new issue