|
11 | 11 | <parent>
|
12 | 12 | <groupId>org.springframework.boot</groupId>
|
13 | 13 | <artifactId>spring-boot-starter-parent</artifactId>
|
14 |
| - <version>1.1.1.RELEASE</version> |
| 14 | + <version>1.1.4.RELEASE</version> |
15 | 15 | </parent>
|
16 | 16 |
|
17 | 17 | <dependencies>
|
|
91 | 91 | <artifactId>hibernate-validator</artifactId>
|
92 | 92 | </dependency>
|
93 | 93 |
|
94 |
| - <!-- Logging --> |
| 94 | + <!-- logging --> |
| 95 | + |
95 | 96 | <dependency>
|
96 | 97 | <groupId>org.slf4j</groupId>
|
97 | 98 | <artifactId>slf4j-api</artifactId>
|
98 | 99 | </dependency>
|
99 | 100 | <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> --> |
103 | 104 | </dependency>
|
104 | 105 | <dependency>
|
105 | 106 | <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 --> |
108 | 109 | </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> |
131 | 113 | </dependency>
|
132 | 114 |
|
133 | 115 | <!-- @Inject -->
|
|
227 | 209 | <org.springframework-version>3.1.1.RELEASE</org.springframework-version>
|
228 | 210 | <org.springframework.security.version>3.2.4.RELEASE</org.springframework.security.version>
|
229 | 211 | <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 | + |
231 | 217 | </properties>
|
232 | 218 |
|
233 | 219 | </project>
|
0 commit comments