Upgraded to latest dependencies.

Use latest stable Spring Data JPA release as well as Hibernate 4.3.4. Upgraded to Spring Boot 1.0 RC4, Querydsl 3.3.1 and Lombok 1.12.4. Upgraded to Spring Data MongoDB 1.5 snapshots to be able to use the geo-types from Spring Data Commons.
This commit is contained in:
Oliver Gierke
2014-03-11 12:27:43 +01:00
parent 2ca3aa159c
commit 87e8518bd2
6 changed files with 14 additions and 15 deletions

View File

@@ -24,8 +24,8 @@
</modules>
<properties>
<spring-data-jpa.version>1.5.0.RC1</spring-data-jpa.version>
<hibernate-entitymanager.version>4.3.1.Final</hibernate-entitymanager.version>
<spring-data-jpa.version>1.5.0.RELEASE</spring-data-jpa.version>
<hibernate-entitymanager.version>4.3.4.Final</hibernate-entitymanager.version>
</properties>
<dependencies>

View File

@@ -13,7 +13,7 @@
</parent>
<properties>
<spring-data-mongodb.version>1.4.0.BUILD-SNAPSHOT</spring-data-mongodb.version>
<spring-data-mongodb.version>1.5.0.BUILD-SNAPSHOT</spring-data-mongodb.version>
</properties>
<dependencies>

View File

@@ -18,7 +18,7 @@ package example.springdata.mongodb.customer;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
import org.springframework.data.mongodb.core.geo.Point;
import org.springframework.data.geo.Point;
/**
* A domain object to capture addresses.

View File

@@ -19,9 +19,9 @@ import java.util.List;
import org.bson.types.ObjectId;
import org.springframework.data.domain.Sort;
import org.springframework.data.mongodb.core.geo.Distance;
import org.springframework.data.mongodb.core.geo.GeoResults;
import org.springframework.data.mongodb.core.geo.Point;
import org.springframework.data.geo.Distance;
import org.springframework.data.geo.GeoResults;
import org.springframework.data.geo.Point;
import org.springframework.data.repository.CrudRepository;
/**

View File

@@ -24,17 +24,16 @@ import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.mongodb.core.geo.Distance;
import org.springframework.data.mongodb.core.geo.GeoResults;
import org.springframework.data.mongodb.core.geo.Metrics;
import org.springframework.data.mongodb.core.geo.Point;
import org.springframework.data.geo.Distance;
import org.springframework.data.geo.GeoResults;
import org.springframework.data.geo.Metrics;
import org.springframework.data.geo.Point;
import org.springframework.data.querydsl.QSort;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import example.springdata.mongodb.ApplicationConfiguration;
/**
* Integration test for {@link CustomerRepository}.
*

View File

@@ -12,7 +12,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.0.0.RC3</version>
<version>1.0.0.RC4</version>
</parent>
<modules>
@@ -23,7 +23,7 @@
<properties>
<spring.version>4.0.1.RELEASE</spring.version>
<querydsl.version>3.3.0</querydsl.version>
<querydsl.version>3.3.1</querydsl.version>
<apt.version>1.1.1</apt.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -48,7 +48,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.12.2</version>
<version>1.12.4</version>
<scope>provided</scope>
</dependency>