-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
317 lines (302 loc) · 13.3 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.xbw.log</groupId>
<artifactId>log</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<modules>
<module>common</module>
<module>commons-logging</module>
<module>java-util-logging</module>
<module>jboss-logging</module>
<module>jboss-logmanager</module>
<module>log4j</module>
<module>log4j2</module>
<module>slf4j</module>
<module>slf4j-logback</module>
<module>slf4j-log4j</module>
<module>slf4j-log4j2</module>
<module>spring-jcl</module>
<module>zoo</module>
</modules>
<properties>
<java.version>1.7</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- May, 2012 -->
<log4j.version>1.2.17</log4j.version>
<log4j2.version>2.17.1</log4j2.version>
<slf4j.version>1.7.32</slf4j.version>
<logback.version>1.2.5</logback.version>
<servlet.version>3.1.0</servlet.version>
</properties>
<repositories>
<repository>
<id>aliyun</id>
<name>Aliyun Repo</name>
<url>https://maven.aliyun.com/repository/public/</url>
</repository>
</repositories>
<dependencyManagement>
<dependencies>
<!-- Apache Commons Logging start -->
<!-- https://mvnrepository.com/artifact/commons-logging/commons-logging -->
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.2</version>
</dependency>
<!-- Apache Commons Logging end -->
<!-- Apache Log4j 1.2 start -->
<!-- https://mvnrepository.com/artifact/log4j/log4j -->
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>${log4j.version}</version>
</dependency>
<!--Apache Extras™ For Apache Log4j™.-->
<dependency>
<groupId>log4j</groupId>
<artifactId>apache-log4j-extras</artifactId>
<!-- Oct, 2013 -->
<version>1.2.17</version>
</dependency>
<!-- Apache Log4j 1.2 end -->
<!-- Apache Log4j2 start -->
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api -->
<!--<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-bom</artifactId>
<version>${log4j2.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>-->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j2.version}</version>
</dependency>
<!--The Apache Log4j Implementation-->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j2.version}</version>
</dependency>
<!--The Apache Log4j Commons Logging Adapter-->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-jcl</artifactId>
<version>${log4j2.version}</version>
</dependency>
<!--The Apache Log4j implementation of java.util.logging-->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-jul</artifactId>
<version>${log4j2.version}</version>
</dependency>
<!--Apache Log4j JDK Platform Logging Adapter @since 2.13.2-->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-jpl</artifactId>
<version>${log4j2.version}</version>
</dependency>
<!--The Apache Log4j 1.x Compatibility API-->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-1.2-api</artifactId>
<version>${log4j2.version}</version>
</dependency>
<!--The Apache Log4j SLF4J API binding to Log4j 2 Core-->
<!--log4j-slf4j-impl should be used with SLF4J 1.7.x releases or older.-->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>${log4j2.version}</version>
</dependency>
<!--The Apache Log4j SLF4J 1.8 API binding to Log4j 2 Core-->
<!--log4j-slf4j18-impl should be used with SLF4J 1.8.x releases or newer.-->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j18-impl</artifactId>
<version>${log4j2.version}</version>
</dependency>
<!--The Apache Log4j binding between Log4j 2 API and SLF4J.-->
<!--Use of this adapter may cause some loss of performance as the Log4j 2 Messages must be formatted before they can be passed to SLF4J. -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-to-slf4j</artifactId>
<version>${log4j2.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-web</artifactId>
<version>${log4j2.version}</version>
</dependency>
<!-- Apache Log4j2 end -->
<!-- SLF4J start -->
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
<!--<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
<version>${slf4j.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>-->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!--JCL 1.2 implemented over SLF4J-->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!--JUL to SLF4J bridge-->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!--Log4j implemented over SLF4J-->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!--SLF4J JCL Binding-->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jcl</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!--SLF4J JDK14 Binding-->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!--SLF4J LOG4J-12 Binding-->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!--SLF4J NOP Binding-->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-nop</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!--SLF4J Simple binding-->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!-- SLF4J end -->
<!-- Logback start -->
<!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-core -->
<!--<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-parent</artifactId>
<version>${logback.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>-->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-access</artifactId>
<version>${logback.version}</version>
</dependency>
<!-- Logback end -->
<!-- JBoss Logging start -->
<!-- https://mvnrepository.com/artifact/org.jboss.logging/jboss-logging -->
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging</artifactId>
<version>3.4.2.Final</version>
</dependency>
<!--JBoss Logging LogManager Implementation-->
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging-logmanager</artifactId>
<!-- Mar, 2010 -->
<version>2.2.0.CR2</version>
</dependency>
<!--Apache Commons Logging to JBoss Logging implementation -->
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>commons-logging-jboss-logging</artifactId>
<!-- Feb, 2018 -->
<version>1.0.0.Final</version>
</dependency>
<!--JBoss Logging Log4j Implementation-->
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging-log4j</artifactId>
<!-- JUL, 2009 -->
<version>2.2.0.CR1</version>
</dependency>
<!--JBoss Logging JDK Implementation-->
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging-jdk</artifactId>
<!-- JUL, 2009 -->
<version>2.2.0.CR1</version>
</dependency>
<!-- JBoss Logging end -->
<!-- JBoss LogManager start -->
<!-- https://mvnrepository.com/artifact/org.jboss.logmanager/jboss-logmanager -->
<dependency>
<groupId>org.jboss.logmanager</groupId>
<artifactId>jboss-logmanager</artifactId>
<version>2.1.18.Final</version>
</dependency>
<!--An Apache Commons Logging implementation for JBoss Log Manager-->
<dependency>
<groupId>org.jboss.logmanager</groupId>
<artifactId>commons-logging-jboss-logmanager</artifactId>
<!-- Oct, 2017 -->
<version>1.0.3.Final</version>
</dependency>
<!--Log4j2 JBoss LogManager-->
<dependency>
<groupId>org.jboss.logmanager</groupId>
<artifactId>log4j2-jboss-logmanager</artifactId>
<version>1.0.0.Final</version>
</dependency>
<!--Log4j JBoss LogManager-->
<dependency>
<groupId>org.jboss.logmanager</groupId>
<artifactId>log4j-jboss-logmanager</artifactId>
<version>1.2.2.Final</version>
</dependency>
<!--SLF4J: JBoss Log Manager-->
<dependency>
<groupId>org.jboss.slf4j</groupId>
<artifactId>slf4j-jboss-logmanager</artifactId>
<version>1.1.0.Final</version>
</dependency>
<!-- JBoss LogManager end -->
<!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>${servlet.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>