Skip to content

Commit 836f1e5

Browse files
committed
[feature] Update Maven plugins to latest applicable versions
1 parent fb30553 commit 836f1e5

File tree

2 files changed

+34
-8
lines changed

2 files changed

+34
-8
lines changed

elemental-parent/pom.xml

Lines changed: 33 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,12 @@
125125
<build>
126126
<pluginManagement>
127127
<plugins>
128+
<plugin>
129+
<inherited>true</inherited>
130+
<groupId>org.apache.maven.plugins</groupId>
131+
<artifactId>maven-enforcer-plugin</artifactId>
132+
<version>3.6.2</version>
133+
</plugin>
128134
<plugin>
129135
<groupId>org.apache.maven.plugins</groupId>
130136
<artifactId>maven-compiler-plugin</artifactId>
@@ -138,7 +144,7 @@
138144
<plugin>
139145
<groupId>org.apache.maven.plugins</groupId>
140146
<artifactId>maven-jar-plugin</artifactId>
141-
<version>3.4.2</version>
147+
<version>3.5.0</version>
142148
<configuration>
143149
<archive>
144150
<manifest>
@@ -167,7 +173,7 @@
167173
<plugin>
168174
<groupId>org.apache.maven.plugins</groupId>
169175
<artifactId>maven-source-plugin</artifactId>
170-
<version>3.3.1</version>
176+
<version>3.4.0</version>
171177
<configuration>
172178
<archive>
173179
<manifest>
@@ -252,7 +258,7 @@
252258
<plugin>
253259
<groupId>org.owasp</groupId>
254260
<artifactId>dependency-check-maven</artifactId>
255-
<version>12.1.8</version>
261+
<version>12.1.9</version>
256262
<configuration>
257263
<nvdApiKeyEnvironmentVariable>NVD_API_KEY</nvdApiKeyEnvironmentVariable>
258264
<nvdApiServerId>nvd-api</nvdApiServerId>
@@ -283,7 +289,7 @@
283289
<plugin>
284290
<groupId>org.apache.maven.plugins</groupId>
285291
<artifactId>maven-resources-plugin</artifactId>
286-
<version>3.3.1</version>
292+
<version>3.4.0</version>
287293
</plugin>
288294
<plugin>
289295
<groupId>com.code54.mojo</groupId>
@@ -321,7 +327,7 @@
321327
<plugin>
322328
<groupId>org.apache.maven.plugins</groupId>
323329
<artifactId>maven-release-plugin</artifactId>
324-
<version>3.1.1</version>
330+
<version>3.3.1</version>
325331
<configuration>
326332
<autoVersionSubmodules>true</autoVersionSubmodules>
327333
<tagNameFormat>elemental-@{project.version}</tagNameFormat>
@@ -368,7 +374,7 @@
368374
<plugin>
369375
<groupId>org.codehaus.mojo</groupId>
370376
<artifactId>versions-maven-plugin</artifactId>
371-
<version>2.19.1</version>
377+
<version>2.20.1</version>
372378
</plugin>
373379
<plugin>
374380
<groupId>org.apache.maven.plugins</groupId>
@@ -452,12 +458,32 @@
452458
<plugin>
453459
<groupId>org.sonarsource.scanner.maven</groupId>
454460
<artifactId>sonar-maven-plugin</artifactId>
455-
<version>5.2.0.4988</version>
461+
<version>5.5.0.6356</version>
456462
</plugin>
457463
</plugins>
458464
</pluginManagement>
459465

460466
<plugins>
467+
<plugin>
468+
<groupId>org.apache.maven.plugins</groupId>
469+
<artifactId>maven-enforcer-plugin</artifactId>
470+
<executions>
471+
<execution>
472+
<id>enforce-maven-version</id>
473+
<goals>
474+
<goal>enforce</goal>
475+
</goals>
476+
<configuration>
477+
<rules>
478+
<requireMavenVersion>
479+
<version>3.9.0</version>
480+
</requireMavenVersion>
481+
</rules>
482+
<fail>true</fail>
483+
</configuration>
484+
</execution>
485+
</executions>
486+
</plugin>
461487
<plugin>
462488
<groupId>com.mycila</groupId>
463489
<artifactId>license-maven-plugin</artifactId>

exist-parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@
571571
<plugin>
572572
<groupId>org.apache.maven.plugins</groupId>
573573
<artifactId>maven-assembly-plugin</artifactId>
574-
<version>3.7.1</version>
574+
<version>3.8.0</version>
575575
<configuration>
576576
<archive>
577577
<manifest>

0 commit comments

Comments
 (0)