Skip to content

Commit 34502d0

Browse files
committed
actualized multiple dependencies
1 parent fc3c4cf commit 34502d0

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

pom.xml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<dependency>
2929
<groupId>commons-io</groupId>
3030
<artifactId>commons-io</artifactId>
31-
<version>2.7</version>
31+
<version>2.11.0</version>
3232
<scope>test</scope>
3333
</dependency>
3434
<dependency>
@@ -40,25 +40,25 @@
4040
<dependency>
4141
<groupId>org.mockito</groupId>
4242
<artifactId>mockito-core</artifactId>
43-
<version>3.12.4</version>
43+
<version>4.7.0</version>
4444
<scope>test</scope>
4545
</dependency>
4646
<dependency>
4747
<groupId>org.mockito</groupId>
4848
<artifactId>mockito-junit-jupiter</artifactId>
49-
<version>3.12.4</version>
49+
<version>4.8.0</version>
5050
<scope>test</scope>
5151
</dependency>
5252
<dependency>
5353
<groupId>org.assertj</groupId>
5454
<artifactId>assertj-core</artifactId>
55-
<version>3.16.1</version>
55+
<version>3.23.1</version>
5656
<scope>test</scope>
5757
</dependency>
5858
<dependency>
5959
<groupId>org.apache.commons</groupId>
6060
<artifactId>commons-lang3</artifactId>
61-
<version>3.10</version>
61+
<version>3.12.0</version>
6262
<scope>test</scope>
6363
</dependency>
6464
<dependency>
@@ -180,7 +180,7 @@
180180
</plugin>
181181
<plugin>
182182
<artifactId>maven-compiler-plugin</artifactId>
183-
<version>3.7.0</version>
183+
<version>3.10.1</version>
184184
<configuration>
185185
<source>1.8</source>
186186
<target>1.8</target>
@@ -233,15 +233,15 @@
233233
<plugin>
234234
<groupId>org.apache.maven.plugins</groupId>
235235
<artifactId>maven-resources-plugin</artifactId>
236-
<version>2.6</version>
236+
<version>3.3.0</version>
237237
<configuration>
238238
<encoding>${project.build.sourceEncoding}</encoding>
239239
</configuration>
240240
</plugin>
241241
<plugin>
242242
<groupId>org.codehaus.mojo</groupId>
243243
<artifactId>license-maven-plugin</artifactId>
244-
<version>1.17</version>
244+
<version>2.0.0</version>
245245
<configuration>
246246
<verbose>false</verbose>
247247
<addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
@@ -262,7 +262,7 @@
262262
<plugin>
263263
<groupId>org.apache.maven.plugins</groupId>
264264
<artifactId>maven-release-plugin</artifactId>
265-
<version>2.5.3</version>
265+
<version>3.0.0-M6</version>
266266
<configuration>
267267
<localCheckout>true</localCheckout>
268268
<pushChanges>false</pushChanges>
@@ -292,7 +292,7 @@
292292
<plugin>
293293
<groupId>org.apache.maven.plugins</groupId>
294294
<artifactId>maven-javadoc-plugin</artifactId>
295-
<version>3.1.1</version>
295+
<version>3.4.1</version>
296296
<executions>
297297
<execution>
298298
<id>attach-javadocs</id>
@@ -308,7 +308,7 @@
308308
</plugin>
309309
<plugin>
310310
<artifactId>maven-site-plugin</artifactId>
311-
<version>3.7.1</version>
311+
<version>3.12.1</version>
312312
<executions>
313313
<execution>
314314
<id>attach-descriptor</id>
@@ -324,7 +324,7 @@
324324
<plugin>
325325
<groupId>org.eluder.coveralls</groupId>
326326
<artifactId>coveralls-maven-plugin</artifactId>
327-
<version>3.1.0</version>
327+
<version>4.3.0</version>
328328
</plugin>
329329
<plugin>
330330
<groupId>org.codehaus.mojo</groupId>
@@ -343,21 +343,21 @@
343343
<plugin>
344344
<groupId>org.apache.felix</groupId>
345345
<artifactId>maven-bundle-plugin</artifactId>
346-
<version>3.0.1</version>
346+
<version>5.1.8</version>
347347
<extensions>true</extensions>
348348
</plugin>
349349
<plugin>
350350
<groupId>org.apache.maven.plugins</groupId>
351351
<artifactId>maven-surefire-plugin</artifactId>
352-
<version>3.0.0-M5</version>
352+
<version>3.0.0-M7</version>
353353
<configuration>
354354
<trimStackTrace>false</trimStackTrace>
355355
</configuration>
356356
</plugin>
357357
<plugin>
358358
<groupId>org.jacoco</groupId>
359359
<artifactId>jacoco-maven-plugin</artifactId>
360-
<version>0.8.7</version>
360+
<version>0.8.8</version>
361361
<executions>
362362
<execution>
363363
<goals>
@@ -381,15 +381,15 @@
381381
<plugin>
382382
<groupId>org.apache.maven.plugins</groupId>
383383
<artifactId>maven-surefire-report-plugin</artifactId>
384-
<version>3.0.0-M5</version>
384+
<version>3.0.0-M7</version>
385385
<configuration>
386386
<outputDirectory>${project.reporting.outputDirectory}/testresults</outputDirectory>
387387
</configuration>
388388
</plugin>
389389
<plugin>
390390
<groupId>org.apache.maven.plugins</groupId>
391391
<artifactId>maven-javadoc-plugin</artifactId>
392-
<version>3.1.1</version>
392+
<version>3.4.1</version>
393393
<configuration>
394394
<useStandardDocletOptions>true</useStandardDocletOptions>
395395
<maxmemory>800m</maxmemory>
@@ -407,12 +407,12 @@
407407
<plugin>
408408
<groupId>org.apache.maven.plugins</groupId>
409409
<artifactId>maven-project-info-reports-plugin</artifactId>
410-
<version>3.0.0</version>
410+
<version>3.4.1</version>
411411
</plugin>
412412
<plugin>
413413
<groupId>org.apache.maven.plugins</groupId>
414414
<artifactId>maven-jxr-plugin</artifactId>
415-
<version>3.0.0</version>
415+
<version>3.3.0</version>
416416
</plugin>
417417

418418
<!-- Cobertura is broken with Java 1.8 and there is not fix

0 commit comments

Comments
 (0)