Skip to content

Commit

Permalink
General dependency upgrades.
Browse files Browse the repository at this point in the history
Spring Boot - 0.5.0.M5 to 0.5.0.M6
Spring - 4.0.0.RC1 to 4.0.0.RELEASE
Spring Data JPA - 1.4.2.RELEASE to 1.4.3.RELEASE

Moved to Spring Boot test starter pom.
  • Loading branch information
odrotbohm committed Jan 10, 2014
1 parent ef85807 commit 295b38f
Showing 1 changed file with 9 additions and 19 deletions.
28 changes: 9 additions & 19 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>0.5.0.M5</version>
<version>0.5.0.M6</version>
</parent>

<name>Spring Data JPA sample projects</name>
Expand All @@ -34,9 +34,9 @@
</developers>

<properties>
<spring.version>4.0.0.RC1</spring.version>
<spring.version>4.0.0.RELEASE</spring.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring.data.jpa.version>1.4.2.RELEASE</spring.data.jpa.version>
<spring-data-jpa.version>1.4.3.RELEASE</spring-data-jpa.version>
</properties>

<build>
Expand All @@ -59,6 +59,11 @@
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
</dependency>

<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
Expand All @@ -69,28 +74,13 @@
<artifactId>hsqldb</artifactId>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>

</dependencies>

<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Framework Maven Release Repository</name>
<url>http://repo.springsource.org/libs-milestone</url>
<url>http://repo.spring.io/libs-milestone</url>
</repository>
</repositories>

<pluginRepositories>
<pluginRepository>
<id>repository.plugin.springsource.release</id>
<name>SpringSource Maven Repository</name>
<url>http://repo.springsource.org/plugins-release</url>
</pluginRepository>
</pluginRepositories>

</project>

0 comments on commit 295b38f

Please sign in to comment.