File tree Expand file tree Collapse file tree 2 files changed +38
-2
lines changed
login/src/main/java/livelessons Expand file tree Collapse file tree 2 files changed +38
-2
lines changed Original file line number Diff line number Diff line change @@ -53,8 +53,6 @@ String login() {
53
53
@ EnableWebSecurity
54
54
class SecurityConfig extends WebSecurityConfigurerAdapter {
55
55
56
- private final Log log = LogFactory .getLog (getClass ());
57
-
58
56
@ Override
59
57
protected void configure (HttpSecurity http ) throws Exception {
60
58
http .authorizeRequests ().anyRequest ().authenticated ();
Original file line number Diff line number Diff line change 59
59
</dependencyManagement >
60
60
61
61
62
+ <repositories >
63
+ <repository >
64
+ <id >spring-snapshots</id >
65
+ <name >Spring Snapshots</name >
66
+ <url >https://repo.spring.io/snapshot</url >
67
+ <snapshots >
68
+ <enabled >true</enabled >
69
+ </snapshots >
70
+ </repository >
71
+ <repository >
72
+ <id >spring-milestones</id >
73
+ <name >Spring Milestones</name >
74
+ <url >https://repo.spring.io/milestone</url >
75
+ <snapshots >
76
+ <enabled >false</enabled >
77
+ </snapshots >
78
+ </repository >
79
+ </repositories >
80
+
81
+ <pluginRepositories >
82
+ <pluginRepository >
83
+ <id >spring-snapshots</id >
84
+ <name >Spring Snapshots</name >
85
+ <url >https://repo.spring.io/snapshot</url >
86
+ <snapshots >
87
+ <enabled >true</enabled >
88
+ </snapshots >
89
+ </pluginRepository >
90
+ <pluginRepository >
91
+ <id >spring-milestones</id >
92
+ <name >Spring Milestones</name >
93
+ <url >https://repo.spring.io/milestone</url >
94
+ <snapshots >
95
+ <enabled >false</enabled >
96
+ </snapshots >
97
+ </pluginRepository >
98
+ </pluginRepositories >
99
+
62
100
</project >
You can’t perform that action at this time.
0 commit comments