Upgraded to Spring Boot GA and Spring Data MongoDB 1.5 M1.
This commit is contained in:
@@ -21,14 +21,11 @@ import org.springframework.data.domain.AuditorAware;
|
||||
* Dummy implementation of {@link AuditorAware}. It will return the configured {@link AuditableUser} as auditor on every
|
||||
* call to {@link #getCurrentAuditor()}. Normally you would access the applications security subsystem to return the
|
||||
* current user.
|
||||
* <p>
|
||||
* TODO: change back to {@code AuditorAware<AuditableUser>} after SD Commons 1.7 RC1 as generic autowiring with Spring 4
|
||||
* will work with that version again.
|
||||
*
|
||||
* @author Oliver Gierke
|
||||
* @author Thomas Darimont
|
||||
*/
|
||||
public class AuditorAwareImpl implements AuditorAware<Object> {
|
||||
public class AuditorAwareImpl implements AuditorAware<AuditableUser> {
|
||||
|
||||
private AuditableUser auditor;
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
</parent>
|
||||
|
||||
<properties>
|
||||
<spring-data-mongodb.version>1.5.0.BUILD-SNAPSHOT</spring-data-mongodb.version>
|
||||
<spring-data-mongodb.version>1.5.0.M1</spring-data-mongodb.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
@@ -65,12 +65,5 @@
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>spring-libs-snapshot</id>
|
||||
<url>http://repo.spring.io/libs-snapshot</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
</project>
|
||||
5
pom.xml
5
pom.xml
@@ -12,7 +12,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
<version>1.0.0.RC4</version>
|
||||
<version>1.0.0.RELEASE</version>
|
||||
</parent>
|
||||
|
||||
<modules>
|
||||
@@ -22,8 +22,7 @@
|
||||
|
||||
<properties>
|
||||
|
||||
<spring.version>4.0.2.RELEASE</spring.version>
|
||||
<querydsl.version>3.3.1</querydsl.version>
|
||||
<querydsl.version>3.3.2</querydsl.version>
|
||||
<apt.version>1.1.1</apt.version>
|
||||
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
|
||||
Reference in New Issue
Block a user