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
5a5a7be4
Commit
5a5a7be4
authored
May 28, 2014
by
Phillip Webb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish
parent
7a8be3d6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
5 deletions
+4
-5
AuthenticationManagerConfiguration.java
...onfigure/security/AuthenticationManagerConfiguration.java
+1
-2
AutoConfigurationReportLoggingInitializerTests.java
...gging/AutoConfigurationReportLoggingInitializerTests.java
+2
-2
pom.xml
spring-boot-cli/pom.xml
+1
-1
No files found.
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/AuthenticationManagerConfiguration.java
View file @
5a5a7be4
...
...
@@ -45,6 +45,7 @@ import org.springframework.security.config.annotation.authentication.configurers
* Configuration for a Spring Security in-memory {@link AuthenticationManager}.
*
* @author Dave Syer
* @author Rob Winch
*/
@Configuration
@ConditionalOnBean
(
ObjectPostProcessor
.
class
)
...
...
@@ -107,8 +108,6 @@ public class AuthenticationManagerConfiguration extends
* allowed in the configure stage. It is not allowed because we guarantee all init
* methods are invoked before configure, which cannot be guaranteed at this point.</li>
* </ul>
*
* @author Rob Winch
*/
private
class
BootDefaultingAuthenticationConfigurerAdapter
extends
GlobalAuthenticationConfigurerAdapter
{
...
...
spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/logging/AutoConfigurationReportLoggingInitializerTests.java
View file @
5a5a7be4
...
...
@@ -113,8 +113,8 @@ public class AutoConfigurationReportLoggingInitializerTests {
ReflectionUtils
.
setField
(
this
.
logFactoryField
,
null
,
new
MockLogFactory
());
}
catch
(
Exception
e
)
{
throw
new
IllegalStateException
(
"Failed to set logFactory"
,
e
);
catch
(
Exception
e
x
)
{
throw
new
IllegalStateException
(
"Failed to set logFactory"
,
e
x
);
}
this
.
initializer
=
new
AutoConfigurationReportLoggingInitializer
();
...
...
spring-boot-cli/pom.xml
View file @
5a5a7be4
...
...
@@ -130,7 +130,7 @@
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<scope>
provided
</scope>
</dependency>
</dependency>
</dependencies>
<build>
<plugins>
...
...
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