Skip to content

Commit 56d2416

Browse files
committed
mvn: Updates plugins and dependencies
1 parent 2cbbc43 commit 56d2416

File tree

2 files changed

+38
-48
lines changed

2 files changed

+38
-48
lines changed

modules/parent/pom.xml

Lines changed: 36 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ SPDX-License-Identifier: CC0-1.0
107107
<plugin>
108108
<groupId>org.apache.maven.plugins</groupId>
109109
<artifactId>maven-checkstyle-plugin</artifactId>
110-
<version>2.16</version>
110+
<version>3.3.1</version>
111111
<configuration>
112112
<inputEncoding>${project.build.sourceEncoding}</inputEncoding>
113113
<linkXRef>true</linkXRef>
@@ -118,7 +118,7 @@ SPDX-License-Identifier: CC0-1.0
118118
<plugin>
119119
<groupId>org.apache.maven.plugins</groupId>
120120
<artifactId>maven-pmd-plugin</artifactId>
121-
<version>3.8</version>
121+
<version>3.22.0</version>
122122
<configuration>
123123
<aggregate>true</aggregate>
124124
<linkXRef>true</linkXRef>
@@ -139,7 +139,7 @@ SPDX-License-Identifier: CC0-1.0
139139
<plugin>
140140
<groupId>org.apache.maven.plugins</groupId>
141141
<artifactId>maven-surefire-report-plugin</artifactId>
142-
<version>2.22.0</version>
142+
<version>3.2.5</version>
143143
</plugin>
144144

145145
<plugin>
@@ -151,7 +151,7 @@ SPDX-License-Identifier: CC0-1.0
151151
<plugin>
152152
<groupId>org.apache.maven.plugins</groupId>
153153
<artifactId>maven-project-info-reports-plugin</artifactId>
154-
<version>2.9</version>
154+
<version>3.5.0</version>
155155
</plugin>
156156
</plugins>
157157
</reporting>
@@ -162,7 +162,7 @@ SPDX-License-Identifier: CC0-1.0
162162
<plugin>
163163
<groupId>org.apache.maven.plugins</groupId>
164164
<artifactId>maven-compiler-plugin</artifactId>
165-
<version>3.7.0</version>
165+
<version>3.13.0</version>
166166
<configuration>
167167
<source>1.${java.old.version}</source>
168168
<target>1.${java.old.version}</target>
@@ -175,7 +175,7 @@ SPDX-License-Identifier: CC0-1.0
175175
<plugin>
176176
<groupId>org.apache.maven.plugins</groupId>
177177
<artifactId>maven-resources-plugin</artifactId>
178-
<version>3.0.2</version>
178+
<version>3.3.1</version>
179179
<configuration>
180180
<encoding>${project.build.resourceEncoding}</encoding>
181181
</configuration>
@@ -184,7 +184,7 @@ SPDX-License-Identifier: CC0-1.0
184184
<plugin>
185185
<groupId>org.apache.maven.plugins</groupId>
186186
<artifactId>maven-javadoc-plugin</artifactId>
187-
<version>3.0.0</version>
187+
<version>3.6.3</version>
188188
<configuration>
189189
<charset>${project.build.sourceEncoding}</charset>
190190
<encoding>${project.build.sourceEncoding}</encoding>
@@ -194,37 +194,37 @@ SPDX-License-Identifier: CC0-1.0
194194
<plugin>
195195
<groupId>org.apache.maven.plugins</groupId>
196196
<artifactId>maven-deploy-plugin</artifactId>
197-
<version>2.8.2</version>
197+
<version>3.1.2</version>
198198
</plugin>
199199

200200
<plugin>
201201
<groupId>org.apache.maven.plugins</groupId>
202202
<artifactId>maven-source-plugin</artifactId>
203-
<version>3.0.1</version>
203+
<version>3.3.1</version>
204204
</plugin>
205205

206206
<plugin>
207207
<groupId>org.apache.maven.plugins</groupId>
208208
<artifactId>maven-clean-plugin</artifactId>
209-
<version>3.0.0</version>
209+
<version>3.3.2</version>
210210
</plugin>
211211

212212
<plugin>
213213
<groupId>org.apache.maven.plugins</groupId>
214214
<artifactId>maven-install-plugin</artifactId>
215-
<version>2.5.2</version>
215+
<version>3.1.2</version>
216216
</plugin>
217217

218218
<plugin>
219219
<groupId>org.apache.maven.plugins</groupId>
220220
<artifactId>maven-site-plugin</artifactId>
221-
<version>3.6</version>
221+
<version>3.12.1</version>
222222
</plugin>
223223

224224
<plugin>
225225
<groupId>org.apache.maven.plugins</groupId>
226226
<artifactId>maven-release-plugin</artifactId>
227-
<version>2.5.3</version>
227+
<version>3.0.1</version>
228228
<configuration>
229229
<autoVersionSubmodules>true</autoVersionSubmodules>
230230
<useReleaseProfile>false</useReleaseProfile>
@@ -241,7 +241,7 @@ SPDX-License-Identifier: CC0-1.0
241241
<plugin>
242242
<groupId>org.apache.maven.plugins</groupId>
243243
<artifactId>maven-jar-plugin</artifactId>
244-
<version>3.0.2</version>
244+
<version>3.4.1</version>
245245
<configuration>
246246
<archive>
247247
<manifestEntries>
@@ -255,13 +255,13 @@ SPDX-License-Identifier: CC0-1.0
255255
<plugin>
256256
<groupId>org.apache.maven.plugins</groupId>
257257
<artifactId>maven-assembly-plugin</artifactId>
258-
<version>3.1.0</version>
258+
<version>3.7.1</version>
259259
</plugin>
260260

261261
<plugin>
262262
<groupId>org.codehaus.mojo</groupId>
263263
<artifactId>exec-maven-plugin</artifactId>
264-
<version>1.6.0</version>
264+
<version>3.2.0</version>
265265
<executions>
266266
<execution>
267267
<goals>
@@ -277,13 +277,13 @@ SPDX-License-Identifier: CC0-1.0
277277
<plugin>
278278
<groupId>org.apache.maven.plugins</groupId>
279279
<artifactId>maven-surefire-plugin</artifactId>
280-
<version>2.22.0</version>
280+
<version>3.2.5</version>
281281
</plugin>
282282

283283
<plugin>
284284
<groupId>org.apache.maven.plugins</groupId>
285285
<artifactId>maven-enforcer-plugin</artifactId>
286-
<version>3.0.0-M2</version>
286+
<version>3.4.1</version>
287287
<executions>
288288
<execution>
289289
<id>enforce-versions</id>
@@ -329,13 +329,13 @@ SPDX-License-Identifier: CC0-1.0
329329
<plugin>
330330
<groupId>org.apache.felix</groupId>
331331
<artifactId>maven-bundle-plugin</artifactId>
332-
<version>2.5.4</version>
332+
<version>5.1.9</version>
333333
</plugin>
334334

335335
<plugin>
336336
<groupId>org.apache.maven.plugins</groupId>
337337
<artifactId>maven-checkstyle-plugin</artifactId>
338-
<version>2.16</version>
338+
<version>3.3.1</version>
339339
<configuration>
340340
<inputEncoding>${project.build.sourceEncoding}</inputEncoding>
341341
<linkXRef>true</linkXRef>
@@ -347,7 +347,7 @@ SPDX-License-Identifier: CC0-1.0
347347
<plugin>
348348
<groupId>org.apache.maven.plugins</groupId>
349349
<artifactId>maven-pmd-plugin</artifactId>
350-
<version>3.6</version> <!-- NOTE 3.6 is the latest version still compiled with Java 1.6 -->
350+
<version>3.22.0</version>
351351
<configuration>
352352
<aggregate>true</aggregate>
353353
<linkXRef>true</linkXRef>
@@ -368,7 +368,7 @@ SPDX-License-Identifier: CC0-1.0
368368
<plugin>
369369
<groupId>org.jacoco</groupId>
370370
<artifactId>jacoco-maven-plugin</artifactId>
371-
<version>0.8.3</version>
371+
<version>0.8.12</version>
372372
<configuration>
373373
<append>true</append>
374374
</configuration>
@@ -398,7 +398,7 @@ SPDX-License-Identifier: CC0-1.0
398398
<plugin>
399399
<groupId>org.sonarsource.scanner.maven</groupId>
400400
<artifactId>sonar-maven-plugin</artifactId>
401-
<version>3.6.0.1398</version>
401+
<version>3.11.0.3922</version>
402402
<executions>
403403
<execution>
404404
<phase>verify</phase>
@@ -436,27 +436,22 @@ SPDX-License-Identifier: CC0-1.0
436436
<dependency>
437437
<groupId>org.slf4j</groupId>
438438
<artifactId>slf4j-api</artifactId>
439-
<version>1.7.25</version>
439+
<version>2.0.13</version>
440440
</dependency>
441441
<dependency>
442442
<groupId>org.slf4j</groupId>
443443
<artifactId>slf4j-ext</artifactId>
444-
<version>1.7.26</version>
444+
<version>2.0.13</version>
445445
</dependency>
446446
<dependency>
447447
<groupId>org.slf4j</groupId>
448448
<artifactId>slf4j-simple</artifactId>
449-
<version>1.7.25</version>
450-
</dependency>
451-
<dependency>
452-
<groupId>org.slf4j</groupId>
453-
<artifactId>slf4j-log4j12</artifactId>
454-
<version>1.7.25</version>
449+
<version>2.0.13</version>
455450
</dependency>
456451
<dependency>
457-
<groupId>log4j</groupId>
458-
<artifactId>log4j</artifactId>
459-
<version>1.2.17</version>
452+
<groupId>org.apache.logging.log4j</groupId>
453+
<artifactId>log4j-slf4j2-impl</artifactId>
454+
<version>2.23.1</version>
460455
</dependency>
461456
</dependencies>
462457
</dependencyManagement>
@@ -495,7 +490,7 @@ SPDX-License-Identifier: CC0-1.0
495490
<plugin>
496491
<groupId>org.apache.maven.plugins</groupId>
497492
<artifactId>maven-jxr-plugin</artifactId>
498-
<version>2.5</version>
493+
<version>3.3.2</version>
499494
<configuration>
500495
<inputEncoding>${project.build.sourceEncoding}</inputEncoding>
501496
</configuration>
@@ -504,7 +499,7 @@ SPDX-License-Identifier: CC0-1.0
504499
<plugin>
505500
<groupId>org.apache.maven.plugins</groupId>
506501
<artifactId>maven-javadoc-plugin</artifactId>
507-
<version>2.10.4</version>
502+
<version>3.6.3</version>
508503
<configuration>
509504
<charset>${project.build.sourceEncoding}</charset>
510505
<encoding>${project.build.sourceEncoding}</encoding>
@@ -526,7 +521,7 @@ SPDX-License-Identifier: CC0-1.0
526521
<plugin>
527522
<groupId>org.codehaus.mojo</groupId>
528523
<artifactId>sonar-maven-plugin</artifactId>
529-
<version>3.2</version>
524+
<version>3.11.0.3922</version>
530525
</plugin>
531526
</plugins>
532527
</reporting>
@@ -543,7 +538,7 @@ SPDX-License-Identifier: CC0-1.0
543538
<plugin>
544539
<groupId>org.apache.maven.plugins</groupId>
545540
<artifactId>maven-gpg-plugin</artifactId>
546-
<version>1.6</version>
541+
<version>3.2.4</version>
547542
<executions>
548543
<execution>
549544
<id>sign-artifacts</id>
@@ -568,7 +563,7 @@ SPDX-License-Identifier: CC0-1.0
568563
<plugin>
569564
<groupId>org.sonatype.plugins</groupId>
570565
<artifactId>nexus-staging-maven-plugin</artifactId>
571-
<version>1.6.7</version>
566+
<version>1.6.13</version>
572567
<extensions>true</extensions>
573568
<configuration>
574569
<serverId>ossrh</serverId>
@@ -580,7 +575,7 @@ SPDX-License-Identifier: CC0-1.0
580575
<plugin>
581576
<groupId>org.apache.maven.plugins</groupId>
582577
<artifactId>maven-javadoc-plugin</artifactId>
583-
<version>2.10.4</version>
578+
<version>3.6.3</version>
584579
<configuration>
585580
<failOnError>false</failOnError>
586581
<charset>${project.build.sourceEncoding}</charset>
@@ -599,7 +594,7 @@ SPDX-License-Identifier: CC0-1.0
599594
<plugin>
600595
<groupId>org.apache.maven.plugins</groupId>
601596
<artifactId>maven-source-plugin</artifactId>
602-
<version>3.0.1</version>
597+
<version>3.3.1</version>
603598
<executions>
604599
<execution>
605600
<id>attach-sources</id>

modules/ui/pom.xml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,8 @@ SPDX-License-Identifier: CC0-1.0
8484
<version>0.9-SNAPSHOT</version>
8585
</dependency>
8686
<dependency>
87-
<groupId>org.slf4j</groupId>
88-
<artifactId>slf4j-log4j12</artifactId>
89-
<scope>runtime</scope>
90-
</dependency>
91-
<dependency>
92-
<groupId>log4j</groupId>
93-
<artifactId>log4j</artifactId>
87+
<groupId>org.apache.logging.log4j</groupId>
88+
<artifactId>log4j-slf4j2-impl</artifactId>
9489
<scope>runtime</scope>
9590
</dependency>
9691
</dependencies>

0 commit comments

Comments
 (0)