mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-19 14:05:50 +00:00
Updated with cache-api version and repository info (#1).
This commit is contained in:
parent
60105d5d9a
commit
ae7cddb974
1 changed files with 39 additions and 1 deletions
40
pom.xml
40
pom.xml
|
@ -5,7 +5,7 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>org.springframework.samples</groupId>
|
<groupId>org.springframework.samples</groupId>
|
||||||
<artifactId>spring-petclinic</artifactId>
|
<artifactId>spring-petclinic</artifactId>
|
||||||
<version>2.0.0.BUILD-SNAPSHOT</version>
|
<version>2.0.0-SNAPSHOT</version>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
@ -29,8 +29,45 @@
|
||||||
|
|
||||||
<jacoco.version>0.8.1</jacoco.version>
|
<jacoco.version>0.8.1</jacoco.version>
|
||||||
|
|
||||||
|
<!-- Version for our private javax.cache/cache-api artifact -->
|
||||||
|
<cache-api.version>LATEST</cache-api.version>
|
||||||
</properties>
|
</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>
|
<dependencies>
|
||||||
<!-- Spring and Spring Boot dependencies -->
|
<!-- Spring and Spring Boot dependencies -->
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -75,6 +112,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>javax.cache</groupId>
|
<groupId>javax.cache</groupId>
|
||||||
<artifactId>cache-api</artifactId>
|
<artifactId>cache-api</artifactId>
|
||||||
|
<version>${cache-api.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.ehcache</groupId>
|
<groupId>org.ehcache</groupId>
|
||||||
|
|
Loading…
Reference in a new issue