118
118
<properties >
119
119
<maven .compiler.release>8</maven .compiler.release>
120
120
<!-- Set to same version as release target for consistency -->
121
- <maven .compiler.source>1. ${maven.compiler.release} </maven .compiler.source>
122
- <maven .compiler.target>1. ${maven.compiler.release} </maven .compiler.target>
121
+ <maven .compiler.source>${maven.compiler.release} </maven .compiler.source>
122
+ <maven .compiler.target>${maven.compiler.release} </maven .compiler.target>
123
123
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
124
124
125
125
<mavenBuildVersion >3.6.3</mavenBuildVersion >
131
131
<dependency >
132
132
<groupId >org.junit</groupId >
133
133
<artifactId >junit-bom</artifactId >
134
- <version >5.10.0 </version >
134
+ <version >5.10.2 </version >
135
135
<type >pom</type >
136
136
<scope >import</scope >
137
137
</dependency >
144
144
<plugin >
145
145
<groupId >org.apache.maven.plugins</groupId >
146
146
<artifactId >maven-enforcer-plugin</artifactId >
147
- <version >3.2 .1</version >
147
+ <version >3.4 .1</version >
148
148
<configuration >
149
149
<rules >
150
150
<enforceBytecodeVersion >
153
153
<!-- Used in tests only -->
154
154
<exclude >org.junit.jupiter:junit-jupiter-api</exclude >
155
155
<exclude >org.junit.platform:junit-platform-commons</exclude >
156
- <exclude >org.apache.felix:org.apache.felix.framework:jar:7.0.5 </exclude >
156
+ <exclude >org.apache.felix:org.apache.felix.framework</exclude >
157
157
</excludes >
158
158
</enforceBytecodeVersion >
159
159
<requireMavenVersion >
176
176
<dependency >
177
177
<groupId >org.codehaus.mojo</groupId >
178
178
<artifactId >extra-enforcer-rules</artifactId >
179
- <version >1.6.1 </version >
179
+ <version >1.8.0 </version >
180
180
</dependency >
181
181
</dependencies >
182
182
</plugin >
183
183
<plugin >
184
184
<groupId >org.apache.maven.plugins</groupId >
185
185
<artifactId >maven-clean-plugin</artifactId >
186
- <version >3.2.0 </version >
186
+ <version >3.3.2 </version >
187
187
</plugin >
188
188
<plugin >
189
189
<groupId >org.apache.maven.plugins</groupId >
193
193
<plugin >
194
194
<groupId >org.apache.maven.plugins</groupId >
195
195
<artifactId >maven-compiler-plugin</artifactId >
196
- <version >3.11 .0</version >
196
+ <version >3.13 .0</version >
197
197
<configuration >
198
198
<proc >none</proc >
199
+ <showDeprecation >true</showDeprecation >
199
200
</configuration >
200
201
</plugin >
201
202
<plugin >
202
203
<groupId >org.apache.maven.plugins</groupId >
203
204
<artifactId >maven-dependency-plugin</artifactId >
204
- <version >3.5.0 </version >
205
+ <version >3.6.1 </version >
205
206
</plugin >
206
207
<plugin >
207
208
<groupId >org.apache.maven.plugins</groupId >
208
209
<artifactId >maven-surefire-plugin</artifactId >
209
- <version >3.0.0</version >
210
- <dependencies >
211
- <dependency >
212
- <groupId >org.junit.jupiter</groupId >
213
- <artifactId >junit-jupiter-engine</artifactId >
214
- <version >5.10.0</version >
215
- </dependency >
216
- <!-- some tests leverage JUnit3 still -->
217
- <dependency >
218
- <groupId >org.junit.vintage</groupId >
219
- <artifactId >junit-vintage-engine</artifactId >
220
- <version >5.10.0</version >
221
- </dependency >
222
- </dependencies >
210
+ <version >3.2.5</version >
223
211
</plugin >
224
212
<plugin >
225
213
<groupId >org.apache.maven.plugins</groupId >
226
214
<artifactId >maven-failsafe-plugin</artifactId >
227
- <version >3.0.0 </version >
215
+ <version >3.2.5 </version >
228
216
</plugin >
229
217
<plugin >
230
218
<groupId >biz.aQute.bnd</groupId >
@@ -250,7 +238,7 @@ Bundle-DocURL: http://www.eclipse.org/sisu/
250
238
<plugin >
251
239
<groupId >org.apache.maven.plugins</groupId >
252
240
<artifactId >maven-jar-plugin</artifactId >
253
- <version >3.3.0 </version >
241
+ <version >3.4.1 </version >
254
242
<executions >
255
243
<execution >
256
244
<id >default-jar</id >
@@ -265,27 +253,27 @@ Bundle-DocURL: http://www.eclipse.org/sisu/
265
253
<plugin >
266
254
<groupId >org.apache.maven.plugins</groupId >
267
255
<artifactId >maven-shade-plugin</artifactId >
268
- <version >3.4.1 </version >
256
+ <version >3.5.3 </version >
269
257
</plugin >
270
258
<plugin >
271
259
<groupId >org.apache.maven.plugins</groupId >
272
260
<artifactId >maven-install-plugin</artifactId >
273
- <version >3.1.1 </version >
261
+ <version >3.1.2 </version >
274
262
</plugin >
275
263
<plugin >
276
264
<groupId >org.apache.maven.plugins</groupId >
277
265
<artifactId >maven-deploy-plugin</artifactId >
278
- <version >3.1.1 </version >
266
+ <version >3.1.2 </version >
279
267
</plugin >
280
268
<plugin >
281
269
<groupId >org.jacoco</groupId >
282
270
<artifactId >jacoco-maven-plugin</artifactId >
283
- <version >0.8.8 </version >
271
+ <version >0.8.12 </version >
284
272
</plugin >
285
273
<plugin >
286
274
<groupId >org.apache.maven.plugins</groupId >
287
275
<artifactId >maven-release-plugin</artifactId >
288
- <version >3.0.0 </version >
276
+ <version >3.0.1 </version >
289
277
<configuration >
290
278
<mavenExecutorId >forked-path</mavenExecutorId >
291
279
<useReleaseProfile >false</useReleaseProfile >
@@ -305,7 +293,7 @@ Bundle-DocURL: http://www.eclipse.org/sisu/
305
293
<plugin >
306
294
<groupId >org.apache.maven.plugins</groupId >
307
295
<artifactId >maven-source-plugin</artifactId >
308
- <version >3.2 .1</version >
296
+ <version >3.3 .1</version >
309
297
<executions >
310
298
<execution >
311
299
<id >attach-sources</id >
@@ -318,7 +306,7 @@ Bundle-DocURL: http://www.eclipse.org/sisu/
318
306
<plugin >
319
307
<groupId >org.apache.maven.plugins</groupId >
320
308
<artifactId >maven-javadoc-plugin</artifactId >
321
- <version >3.5.0 </version >
309
+ <version >3.6.3 </version >
322
310
<configuration >
323
311
<overview >${basedir} /overview.html</overview >
324
312
<excludePackageNames >*.internal,*.asm</excludePackageNames >
@@ -338,7 +326,7 @@ Bundle-DocURL: http://www.eclipse.org/sisu/
338
326
<plugin >
339
327
<groupId >org.apache.maven.plugins</groupId >
340
328
<artifactId >maven-gpg-plugin</artifactId >
341
- <version >3.0.1 </version >
329
+ <version >3.2.4 </version >
342
330
<configuration >
343
331
<passphrase >${gpg.passphrase} </passphrase >
344
332
<useAgent >true</useAgent >
@@ -366,7 +354,7 @@ Bundle-DocURL: http://www.eclipse.org/sisu/
366
354
<plugin >
367
355
<groupId >org.apache.maven.plugins</groupId >
368
356
<artifactId >maven-project-info-reports-plugin</artifactId >
369
- <version >3.4.2 </version >
357
+ <version >3.5.0 </version >
370
358
</plugin >
371
359
<plugin >
372
360
<groupId >com.diffplug.spotless</groupId >
0 commit comments