File tree Expand file tree Collapse file tree 4 files changed +70
-0
lines changed Expand file tree Collapse file tree 4 files changed +70
-0
lines changed Original file line number Diff line number Diff line change 153
153
<artifactId >log4j</artifactId >
154
154
<scope >test</scope >
155
155
</dependency >
156
+ <!-- Logback performance tests -->
157
+ <dependency >
158
+ <groupId >ch.qos.logback</groupId >
159
+ <artifactId >logback-classic</artifactId >
160
+ <scope >test</scope >
161
+ </dependency >
156
162
<!-- SLF4J tests -->
157
163
<dependency >
158
164
<groupId >org.slf4j</groupId >
178
184
</dependencies >
179
185
<build >
180
186
<plugins >
187
+
188
+ <!--
189
+ ~ Unban Logback.
190
+ -->
191
+ <plugin >
192
+ <groupId >org.apache.maven.plugins</groupId >
193
+ <artifactId >maven-enforcer-plugin</artifactId >
194
+ <executions >
195
+ <execution >
196
+ <id >ban-logging-dependencies</id >
197
+ <configuration >
198
+ <rules >
199
+ <bannedDependencies >
200
+ <includes >
201
+ <include >ch.qos.logback:*:*:*:test</include >
202
+ </includes >
203
+ </bannedDependencies >
204
+ </rules >
205
+ </configuration >
206
+ </execution >
207
+ </executions >
208
+ </plugin >
209
+
181
210
<plugin >
182
211
<groupId >org.apache.maven.plugins</groupId >
183
212
<artifactId >maven-failsafe-plugin</artifactId >
195
224
org.apache.logging.log4j.categories.Appenders$Jms</groups >
196
225
</configuration >
197
226
</plugin >
227
+
198
228
<plugin >
199
229
<groupId >org.apache.maven.plugins</groupId >
200
230
<artifactId >maven-jar-plugin</artifactId >
213
243
</execution >
214
244
</executions >
215
245
</plugin >
246
+
216
247
<plugin >
217
248
<groupId >org.apache.maven.plugins</groupId >
218
249
<artifactId >maven-source-plugin</artifactId >
234
265
</execution >
235
266
</executions >
236
267
</plugin >
268
+
237
269
<plugin >
238
270
<artifactId >maven-surefire-plugin</artifactId >
239
271
<configuration >
240
272
<skip >true</skip >
241
273
</configuration >
242
274
</plugin >
275
+
243
276
</plugins >
244
277
</build >
245
278
</project >
Original file line number Diff line number Diff line change 86
86
<artifactId >junit-vintage-engine</artifactId >
87
87
<scope >test</scope >
88
88
</dependency >
89
+ <dependency >
90
+ <groupId >ch.qos.logback</groupId >
91
+ <artifactId >logback-classic</artifactId >
92
+ <scope >test</scope >
93
+ </dependency >
89
94
<dependency >
90
95
<groupId >org.apache.felix</groupId >
91
96
<artifactId >org.apache.felix.framework</artifactId >
125
130
<build >
126
131
<plugins >
127
132
133
+ <!--
134
+ ~ Unban Logback.
135
+ -->
136
+ <plugin >
137
+ <groupId >org.apache.maven.plugins</groupId >
138
+ <artifactId >maven-enforcer-plugin</artifactId >
139
+ <executions >
140
+ <execution >
141
+ <id >ban-logging-dependencies</id >
142
+ <configuration >
143
+ <rules >
144
+ <bannedDependencies >
145
+ <includes >
146
+ <include >ch.qos.logback:*:*:*:test</include >
147
+ </includes >
148
+ </bannedDependencies >
149
+ </rules >
150
+ </configuration >
151
+ </execution >
152
+ </executions >
153
+ </plugin >
154
+
128
155
<plugin >
129
156
<groupId >org.ops4j.pax.exam</groupId >
130
157
<artifactId >exam-maven-plugin</artifactId >
Original file line number Diff line number Diff line change 71
71
<artifactId >log4j-core-test</artifactId >
72
72
<scope >test</scope >
73
73
</dependency >
74
+ <dependency >
75
+ <groupId >commons-logging</groupId >
76
+ <artifactId >commons-logging</artifactId >
77
+ <scope >test</scope >
78
+ </dependency >
74
79
<dependency >
75
80
<groupId >org.junit.jupiter</groupId >
76
81
<artifactId >junit-jupiter-engine</artifactId >
Original file line number Diff line number Diff line change 63
63
<artifactId >log4j-core-test</artifactId >
64
64
<scope >test</scope >
65
65
</dependency >
66
+ <dependency >
67
+ <groupId >commons-logging</groupId >
68
+ <artifactId >commons-logging</artifactId >
69
+ <scope >test</scope >
70
+ </dependency >
66
71
<dependency >
67
72
<groupId >org.hamcrest</groupId >
68
73
<artifactId >hamcrest</artifactId >
You can’t perform that action at this time.
0 commit comments