Skip to content

Commit a2ccec2

Browse files
committed
chore(deps): Enforce Maven version 3.6.3 or later
During the update of dependencies, Maven advised to do this. Version 3.6.3 of Maven is technically already "end of life" but, "currently, plugins provide Maven API compatibility down to 3.6.3" (https://maven.apache.org/docs/history.html 205-06-04) so we do this too. Note that we do not currently have any requirement to use any later version so this is totally fine.
1 parent f8125da commit a2ccec2

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,27 @@
2020

2121
<build>
2222
<plugins>
23+
<plugin>
24+
<groupId>org.apache.maven.plugins</groupId>
25+
<artifactId>maven-enforcer-plugin</artifactId>
26+
<version>3.5.0</version>
27+
<executions>
28+
<execution>
29+
<id>enforce-maven</id>
30+
<goals>
31+
<goal>enforce</goal>
32+
</goals>
33+
<configuration>
34+
<rules>
35+
<requireMavenVersion>
36+
<version>3.6.3</version>
37+
</requireMavenVersion>
38+
</rules>
39+
</configuration>
40+
</execution>
41+
</executions>
42+
</plugin>
43+
2344
<plugin>
2445
<groupId>org.apache.maven.plugins</groupId>
2546
<artifactId>maven-javadoc-plugin</artifactId>

0 commit comments

Comments
 (0)