Skip to content

Commit dbb13f8

Browse files
committed
spring-projects#273 - Upgraded to Spring Boot 1.5.3.
Removed manually declared bean for Spring Security's EvaluationContextExtension.
1 parent 45f19a6 commit dbb13f8

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed
Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2016 the original author or authors.
2+
* Copyright 2014-2017 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -16,19 +16,10 @@
1616
package example.springdata.jpa.security;
1717

1818
import org.springframework.boot.autoconfigure.SpringBootApplication;
19-
import org.springframework.context.annotation.Bean;
20-
import org.springframework.data.repository.query.spi.EvaluationContextExtension;
21-
import org.springframework.security.data.repository.query.SecurityEvaluationContextExtension;
2219

2320
/**
2421
* @author Oliver Gierke
2522
* @author Thomas Darimont
2623
*/
2724
@SpringBootApplication
28-
class SecurityConfiguration {
29-
30-
@Bean
31-
EvaluationContextExtension securityExtension() {
32-
return new SecurityEvaluationContextExtension();
33-
}
34-
}
25+
class SecurityConfiguration {}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.springframework.boot</groupId>
1414
<artifactId>spring-boot-starter-parent</artifactId>
15-
<version>1.5.2.RELEASE</version>
15+
<version>1.5.3.RELEASE</version>
1616
</parent>
1717

1818
<modules>

0 commit comments

Comments
 (0)