Skip to content

Commit 36386ad

Browse files
authored
Merge pull request #4 from devopsix/updates
Update dependencies and Maven plug-ins.
2 parents 3aa1423 + 0082dc9 commit 36386ad

File tree

6 files changed

+98
-17
lines changed

6 files changed

+98
-17
lines changed

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ to check for dependency updates.
4242

4343
# Checking for Plug-in Updates
4444

45-
Run `mvn --activate-profiles=checkstyle,spotbugs,coverage,release versions:display-plugin-updates`
45+
Run `mvn --activate-profiles=checkstyle,spotbugs,coverage,release -DprocessUnboundPlugins=true versions:display-plugin-updates`
4646
to check for Maven plug-in updates.

assertj-mail-jakarta/pom.xml

Lines changed: 31 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
<dependency>
5858
<groupId>org.assertj</groupId>
5959
<artifactId>assertj-core</artifactId>
60-
<version>3.24.2</version>
60+
<version>3.25.1</version>
6161
</dependency>
6262
<dependency>
6363
<groupId>com.sun.mail</groupId>
@@ -77,7 +77,7 @@
7777
<dependency>
7878
<groupId>org.mockito</groupId>
7979
<artifactId>mockito-core</artifactId>
80-
<version>5.8.0</version>
80+
<version>5.9.0</version>
8181
</dependency>
8282
</dependencies>
8383
</dependencyManagement>
@@ -113,12 +113,12 @@
113113
<plugin>
114114
<groupId>org.apache.maven.plugins</groupId>
115115
<artifactId>maven-compiler-plugin</artifactId>
116-
<version>3.11.0</version>
116+
<version>3.12.1</version>
117117
</plugin>
118118
<plugin>
119119
<groupId>org.apache.maven.plugins</groupId>
120120
<artifactId>maven-surefire-plugin</artifactId>
121-
<version>3.2.2</version>
121+
<version>3.2.5</version>
122122
</plugin>
123123
<plugin>
124124
<groupId>org.apache.maven.plugins</groupId>
@@ -165,6 +165,11 @@
165165
<artifactId>maven-resources-plugin</artifactId>
166166
<version>3.3.1</version>
167167
</plugin>
168+
<plugin>
169+
<groupId>org.apache.maven.plugins</groupId>
170+
<artifactId>maven-enforcer-plugin</artifactId>
171+
<version>3.4.1</version>
172+
</plugin>
168173
</plugins>
169174
</pluginManagement>
170175
<plugins>
@@ -256,6 +261,28 @@
256261
</execution>
257262
</executions>
258263
</plugin>
264+
<plugin>
265+
<groupId>org.apache.maven.plugins</groupId>
266+
<artifactId>maven-enforcer-plugin</artifactId>
267+
<executions>
268+
<execution>
269+
<id>enforce-versions</id>
270+
<goals>
271+
<goal>enforce</goal>
272+
</goals>
273+
<configuration>
274+
<rules>
275+
<requireMavenVersion>
276+
<version>3.6.3</version>
277+
</requireMavenVersion>
278+
<requireJavaVersion>
279+
<version>11</version>
280+
</requireJavaVersion>
281+
</rules>
282+
</configuration>
283+
</execution>
284+
</executions>
285+
</plugin>
259286
</plugins>
260287
</build>
261288

assertj-mail/pom.xml

Lines changed: 32 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
<dependency>
5858
<groupId>org.assertj</groupId>
5959
<artifactId>assertj-core</artifactId>
60-
<version>3.24.2</version>
60+
<version>3.25.1</version>
6161
</dependency>
6262
<dependency>
6363
<groupId>com.sun.mail</groupId>
@@ -77,7 +77,7 @@
7777
<dependency>
7878
<groupId>org.mockito</groupId>
7979
<artifactId>mockito-core</artifactId>
80-
<version>5.8.0</version>
80+
<version>5.9.0</version>
8181
</dependency>
8282
</dependencies>
8383
</dependencyManagement>
@@ -113,12 +113,12 @@
113113
<plugin>
114114
<groupId>org.apache.maven.plugins</groupId>
115115
<artifactId>maven-compiler-plugin</artifactId>
116-
<version>3.11.0</version>
116+
<version>3.12.1</version>
117117
</plugin>
118118
<plugin>
119119
<groupId>org.apache.maven.plugins</groupId>
120120
<artifactId>maven-surefire-plugin</artifactId>
121-
<version>3.2.2</version>
121+
<version>3.2.5</version>
122122
</plugin>
123123
<plugin>
124124
<groupId>org.apache.maven.plugins</groupId>
@@ -160,7 +160,7 @@
160160
<plugin>
161161
<groupId>com.github.spotbugs</groupId>
162162
<artifactId>spotbugs-maven-plugin</artifactId>
163-
<version>4.8.2.0</version>
163+
<version>4.8.3.0</version>
164164
</plugin>
165165
<plugin>
166166
<groupId>org.jacoco</groupId>
@@ -196,13 +196,40 @@
196196
<artifactId>maven-resources-plugin</artifactId>
197197
<version>3.3.1</version>
198198
</plugin>
199+
<plugin>
200+
<groupId>org.apache.maven.plugins</groupId>
201+
<artifactId>maven-enforcer-plugin</artifactId>
202+
<version>3.4.1</version>
203+
</plugin>
199204
</plugins>
200205
</pluginManagement>
201206
<plugins>
202207
<plugin>
203208
<groupId>org.apache.maven.plugins</groupId>
204209
<artifactId>maven-release-plugin</artifactId>
205210
</plugin>
211+
<plugin>
212+
<groupId>org.apache.maven.plugins</groupId>
213+
<artifactId>maven-enforcer-plugin</artifactId>
214+
<executions>
215+
<execution>
216+
<id>enforce-versions</id>
217+
<goals>
218+
<goal>enforce</goal>
219+
</goals>
220+
<configuration>
221+
<rules>
222+
<requireMavenVersion>
223+
<version>3.6.3</version>
224+
</requireMavenVersion>
225+
<requireJavaVersion>
226+
<version>11</version>
227+
</requireJavaVersion>
228+
</rules>
229+
</configuration>
230+
</execution>
231+
</executions>
232+
</plugin>
206233
</plugins>
207234
</build>
208235

examples-jakarta/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<dependency>
4242
<groupId>org.mockito</groupId>
4343
<artifactId>mockito-core</artifactId>
44-
<version>5.8.0</version>
44+
<version>5.9.0</version>
4545
</dependency>
4646
<dependency>
4747

@@ -52,7 +52,7 @@
5252
<dependency>
5353
<groupId>org.slf4j</groupId>
5454
<artifactId>slf4j-simple</artifactId>
55-
<version>2.0.9</version>
55+
<version>2.0.11</version>
5656
</dependency>
5757
</dependencies>
5858
</dependencyManagement>

examples/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<dependency>
4242
<groupId>org.mockito</groupId>
4343
<artifactId>mockito-core</artifactId>
44-
<version>5.8.0</version>
44+
<version>5.9.0</version>
4545
</dependency>
4646
<dependency>
4747
<groupId>com.icegreen</groupId>
@@ -51,7 +51,7 @@
5151
<dependency>
5252
<groupId>org.slf4j</groupId>
5353
<artifactId>slf4j-simple</artifactId>
54-
<version>2.0.9</version>
54+
<version>2.0.11</version>
5555
</dependency>
5656
</dependencies>
5757
</dependencyManagement>

pom.xml

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@
4343
<plugin>
4444
<groupId>org.apache.maven.plugins</groupId>
4545
<artifactId>maven-compiler-plugin</artifactId>
46-
<version>3.11.0</version>
46+
<version>3.12.1</version>
4747
</plugin>
4848
<plugin>
4949
<groupId>org.apache.maven.plugins</groupId>
5050
<artifactId>maven-surefire-plugin</artifactId>
51-
<version>3.2.2</version>
51+
<version>3.2.5</version>
5252
</plugin>
5353
<plugin>
5454
<groupId>org.apache.maven.plugins</groupId>
@@ -68,10 +68,15 @@
6868
<dependency>
6969
<groupId>com.puppycrawl.tools</groupId>
7070
<artifactId>checkstyle</artifactId>
71-
<version>10.12.5</version>
71+
<version>10.12.7</version>
7272
</dependency>
7373
</dependencies>
7474
</plugin>
75+
<plugin>
76+
<groupId>org.apache.maven.plugins</groupId>
77+
<artifactId>maven-enforcer-plugin</artifactId>
78+
<version>3.4.1</version>
79+
</plugin>
7580
</plugins>
7681
</pluginManagement>
7782
<plugins>
@@ -86,6 +91,28 @@
8691
<skip>true</skip>
8792
</configuration>
8893
</plugin>
94+
<plugin>
95+
<groupId>org.apache.maven.plugins</groupId>
96+
<artifactId>maven-enforcer-plugin</artifactId>
97+
<executions>
98+
<execution>
99+
<id>enforce-versions</id>
100+
<goals>
101+
<goal>enforce</goal>
102+
</goals>
103+
<configuration>
104+
<rules>
105+
<requireMavenVersion>
106+
<version>3.6.3</version>
107+
</requireMavenVersion>
108+
<requireJavaVersion>
109+
<version>11</version>
110+
</requireJavaVersion>
111+
</rules>
112+
</configuration>
113+
</execution>
114+
</executions>
115+
</plugin>
89116
</plugins>
90117
</build>
91118

0 commit comments

Comments
 (0)