Skip to content

Commit 5db4ad4

Browse files
author
eugenp
committed
maven work
1 parent 1461358 commit 5db4ad4

File tree

1 file changed

+16
-30
lines changed
  • spring-security-login-error-handling

1 file changed

+16
-30
lines changed

spring-security-login-error-handling/pom.xml

Lines changed: 16 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>org.springframework.boot</groupId>
1313
<artifactId>spring-boot-starter-parent</artifactId>
14-
<version>1.1.1.RELEASE</version>
14+
<version>1.1.4.RELEASE</version>
1515
</parent>
1616

1717
<dependencies>
@@ -91,43 +91,25 @@
9191
<artifactId>hibernate-validator</artifactId>
9292
</dependency>
9393

94-
<!-- Logging -->
94+
<!-- logging -->
95+
9596
<dependency>
9697
<groupId>org.slf4j</groupId>
9798
<artifactId>slf4j-api</artifactId>
9899
</dependency>
99100
<dependency>
100-
<groupId>org.slf4j</groupId>
101-
<artifactId>jcl-over-slf4j</artifactId>
102-
<scope>runtime</scope>
101+
<groupId>ch.qos.logback</groupId>
102+
<artifactId>logback-classic</artifactId>
103+
<!-- <scope>runtime</scope> -->
103104
</dependency>
104105
<dependency>
105106
<groupId>org.slf4j</groupId>
106-
<artifactId>slf4j-log4j12</artifactId>
107-
<scope>runtime</scope>
107+
<artifactId>jcl-over-slf4j</artifactId>
108+
<!-- <scope>runtime</scope> --> <!-- some spring dependencies need to compile against jcl -->
108109
</dependency>
109-
<dependency>
110-
<groupId>log4j</groupId>
111-
<artifactId>log4j</artifactId>
112-
<exclusions>
113-
<exclusion>
114-
<groupId>javax.mail</groupId>
115-
<artifactId>mail</artifactId>
116-
</exclusion>
117-
<exclusion>
118-
<groupId>javax.jms</groupId>
119-
<artifactId>jms</artifactId>
120-
</exclusion>
121-
<exclusion>
122-
<groupId>com.sun.jdmk</groupId>
123-
<artifactId>jmxtools</artifactId>
124-
</exclusion>
125-
<exclusion>
126-
<groupId>com.sun.jmx</groupId>
127-
<artifactId>jmxri</artifactId>
128-
</exclusion>
129-
</exclusions>
130-
<scope>runtime</scope>
110+
<dependency> <!-- needed to bridge to slf4j for projects that use the log4j APIs directly -->
111+
<groupId>org.slf4j</groupId>
112+
<artifactId>log4j-over-slf4j</artifactId>
131113
</dependency>
132114

133115
<!-- @Inject -->
@@ -227,7 +209,11 @@
227209
<org.springframework-version>3.1.1.RELEASE</org.springframework-version>
228210
<org.springframework.security.version>3.2.4.RELEASE</org.springframework.security.version>
229211
<org.aspectj-version>1.6.10</org.aspectj-version>
230-
<org.slf4j-version>1.6.6</org.slf4j-version>
212+
213+
<!-- logging -->
214+
<org.slf4j.version>1.7.6</org.slf4j.version>
215+
<logback.version>1.1.1</logback.version>
216+
231217
</properties>
232218

233219
</project>

0 commit comments

Comments
 (0)