Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
9f9feeb0
Commit
9f9feeb0
authored
May 27, 2015
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3050 from aahlenst/fix-security-config
* fix-security-config: Fix spring-security versions
parents
b838513f
9805643e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
7 deletions
+5
-7
CrshAutoConfigurationTests.java
...oot/actuate/autoconfigure/CrshAutoConfigurationTests.java
+4
-4
pom.xml
spring-boot-dependencies/pom.xml
+1
-3
No files found.
spring-boot-actuator/src/test/java/org/springframework/boot/actuate/autoconfigure/CrshAutoConfigurationTests.java
View file @
9f9feeb0
/*
/*
* Copyright 201
3-2014
the original author or authors.
* Copyright 201
2-2015
the original author or authors.
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* you may not use this file except in compliance with the License.
...
@@ -60,6 +60,7 @@ import static org.junit.Assert.assertTrue;
...
@@ -60,6 +60,7 @@ import static org.junit.Assert.assertTrue;
* Tests for {@link CrshAutoConfiguration}.
* Tests for {@link CrshAutoConfiguration}.
*
*
* @author Christian Dupuis
* @author Christian Dupuis
* @author Andreas Ahlenstorf
*/
*/
@SuppressWarnings
({
"rawtypes"
,
"unchecked"
})
@SuppressWarnings
({
"rawtypes"
,
"unchecked"
})
public
class
CrshAutoConfigurationTests
{
public
class
CrshAutoConfigurationTests
{
...
@@ -373,12 +374,11 @@ public class CrshAutoConfigurationTests {
...
@@ -373,12 +374,11 @@ public class CrshAutoConfigurationTests {
@Bean
@Bean
public
AccessDecisionManager
shellAccessDecisionManager
()
{
public
AccessDecisionManager
shellAccessDecisionManager
()
{
List
<
AccessDecisionVoter
>
voters
=
new
ArrayList
<
AccessDecisionVoter
>();
List
<
AccessDecisionVoter
<?>>
voters
=
new
ArrayList
<
AccessDecisionVoter
<?>
>();
RoleVoter
voter
=
new
RoleVoter
();
RoleVoter
voter
=
new
RoleVoter
();
voter
.
setRolePrefix
(
""
);
voter
.
setRolePrefix
(
""
);
voters
.
add
(
voter
);
voters
.
add
(
voter
);
AccessDecisionManager
result
=
new
UnanimousBased
(
voters
);
return
new
UnanimousBased
(
voters
);
return
result
;
}
}
}
}
...
...
spring-boot-dependencies/pom.xml
View file @
9f9feeb0
...
@@ -131,13 +131,11 @@
...
@@ -131,13 +131,11 @@
<spring-plugin.version>
1.2.0.RELEASE
</spring-plugin.version>
<spring-plugin.version>
1.2.0.RELEASE
</spring-plugin.version>
<spring-security.version>
4.0.1.RELEASE
</spring-security.version>
<spring-security.version>
4.0.1.RELEASE
</spring-security.version>
<spring-security-jwt.version>
1.0.3.RELEASE
</spring-security-jwt.version>
<spring-security-jwt.version>
1.0.3.RELEASE
</spring-security-jwt.version>
<spring-security-oauth2.version>
2.0.7.RELEASE
</spring-security-oauth2.version>
<spring-social.version>
1.1.2.RELEASE
</spring-social.version>
<spring-social.version>
1.1.2.RELEASE
</spring-social.version>
<spring-social-facebook.version>
2.0.1.RELEASE
</spring-social-facebook.version>
<spring-social-facebook.version>
2.0.1.RELEASE
</spring-social-facebook.version>
<spring-social-linkedin.version>
1.0.1.RELEASE
</spring-social-linkedin.version>
<spring-social-linkedin.version>
1.0.1.RELEASE
</spring-social-linkedin.version>
<spring-social-twitter.version>
1.1.0.RELEASE
</spring-social-twitter.version>
<spring-social-twitter.version>
1.1.0.RELEASE
</spring-social-twitter.version>
<spring-security.version>
3.2.5.RELEASE
</spring-security.version>
<spring-security-oauth2.version>
2.0.7.RELEASE
</spring-security-oauth2.version>
<spring-security-jwt.version>
1.0.2.RELEASE
</spring-security-jwt.version>
<spring-ws.version>
2.2.1.RELEASE
</spring-ws.version>
<spring-ws.version>
2.2.1.RELEASE
</spring-ws.version>
<statsd-client.version>
3.1.0
</statsd-client.version>
<statsd-client.version>
3.1.0
</statsd-client.version>
<sendgrid.version>
2.1.0
</sendgrid.version>
<sendgrid.version>
2.1.0
</sendgrid.version>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment