Skip to content

Commit 5f18439

Browse files
authored
Merge pull request #1018 from lprimak/update-deps-jul21
deps: update minor versions of depdencies that dependabot missed
2 parents 942e500 + 138d05d commit 5f18439

File tree

7 files changed

+12
-21
lines changed

7 files changed

+12
-21
lines changed

integration-tests/jakarta-ee/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
<dependency>
141141
<groupId>org.mockito</groupId>
142142
<artifactId>mockito-inline</artifactId>
143-
<version>${mockito.version}</version>
143+
<version>${mockito-inline.version}</version>
144144
<scope>test</scope>
145145
</dependency>
146146
<dependency>

integration-tests/jaxrs/tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<properties>
3636
<module.name>its.jaxrs.tests</module.name>
3737
<jaxrs.api.version>2.1.1</jaxrs.api.version>
38-
<johnzon.version>1.2.20</johnzon.version>
38+
<johnzon.version>1.2.21</johnzon.version>
3939
</properties>
4040

4141
<dependencies>

pom.xml

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache</groupId>
2626
<artifactId>apache</artifactId>
27-
<version>29</version>
27+
<version>30</version>
2828
</parent>
2929

3030
<groupId>org.apache.shiro</groupId>
@@ -71,7 +71,6 @@
7171
<buildNumber>${user.name}-${maven.build.timestamp}</buildNumber>
7272
<project.build.outputTimestamp>2022-03-22T23:08:15Z</project.build.outputTimestamp>
7373
<jacoco.skip>true</jacoco.skip>
74-
<surefire.version>3.0.0</surefire.version>
7574
<!--suppress CheckTagEmptyBody -->
7675
<surefire.argLine></surefire.argLine>
7776
<!--suppress CheckTagEmptyBody -->
@@ -119,9 +118,10 @@
119118

120119
<!-- Test 3rd-party dependencies: -->
121120
<easymock.version>5.1.0</easymock.version>
122-
<mockito.version>5.2.0</mockito.version>
121+
<mockito.version>5.4.0</mockito.version>
122+
<mockito-inline.version>5.2.0</mockito-inline.version>
123123
<gmaven.version>3.0.0</gmaven.version>
124-
<groovy.version>4.0.12</groovy.version>
124+
<groovy.version>4.0.13</groovy.version>
125125
<junit.version>5.9.3</junit.version>
126126
<junit.server.jetty.version>3.0.0</junit.server.jetty.version>
127127
<hibernate.version>5.6.15.Final</hibernate.version>
@@ -371,11 +371,6 @@
371371
<artifactId>build-helper-maven-plugin</artifactId>
372372
<version>3.4.0</version>
373373
</plugin>
374-
<plugin>
375-
<groupId>org.apache.maven.plugins</groupId>
376-
<artifactId>maven-dependency-plugin</artifactId>
377-
<version>3.5.0</version>
378-
</plugin>
379374
<plugin>
380375
<groupId>org.jacoco</groupId>
381376
<artifactId>jacoco-maven-plugin</artifactId>
@@ -441,10 +436,6 @@
441436
</parameter>
442437
</configuration>
443438
</plugin>
444-
<plugin>
445-
<groupId>org.apache.maven.plugins</groupId>
446-
<artifactId>maven-enforcer-plugin</artifactId>
447-
</plugin>
448439
<plugin>
449440
<groupId>org.codehaus.mojo</groupId>
450441
<artifactId>aspectj-maven-plugin</artifactId>
@@ -542,7 +533,7 @@
542533
<plugin>
543534
<groupId>org.apache.maven.plugins</groupId>
544535
<artifactId>maven-checkstyle-plugin</artifactId>
545-
<version>3.2.2</version>
536+
<version>3.3.0</version>
546537
<configuration>
547538
<configLocation>${checkstyle.configLocation}</configLocation>
548539
<suppressionsLocation>${checkstyle.supressionsLocation}</suppressionsLocation>
@@ -1524,7 +1515,7 @@
15241515
</plugin>
15251516
<plugin>
15261517
<artifactId>maven-pmd-plugin</artifactId>
1527-
<version>3.20.0</version>
1518+
<version>3.21.0</version>
15281519
</plugin>
15291520
<plugin>
15301521
<artifactId>maven-project-info-reports-plugin</artifactId>

samples/spring-boot-3-web/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<spring-boot3.version>3.1.2</spring-boot3.version>
3838
<spring-boot.version>${spring-boot3.version}</spring-boot.version>
3939
<!-- below versions are not necessary in "real" applications -->
40-
<spring.version>6.0.10</spring.version>
40+
<spring.version>6.0.11</spring.version>
4141
</properties>
4242

4343
<dependencies>

support/cdi/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
<dependency>
7272
<groupId>org.mockito</groupId>
7373
<artifactId>mockito-inline</artifactId>
74-
<version>${mockito.version}</version>
74+
<version>${mockito-inline.version}</version>
7575
<scope>test</scope>
7676
<optional>true</optional>
7777
</dependency>

support/jakarta-ee/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
<dependency>
9191
<groupId>org.mockito</groupId>
9292
<artifactId>mockito-inline</artifactId>
93-
<version>${mockito.version}</version>
93+
<version>${mockito-inline.version}</version>
9494
<scope>test</scope>
9595
<optional>true</optional>
9696
</dependency>

support/spring-boot/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<dependency>
4545
<groupId>org.mockito</groupId>
4646
<artifactId>mockito-core</artifactId>
47-
<version>5.2.0</version>
47+
<version>${mockito.version}</version>
4848
</dependency>
4949
</dependencies>
5050
</dependencyManagement>

0 commit comments

Comments
 (0)