We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6002e5 commit cb1f461Copy full SHA for cb1f461
pom.xml
@@ -11,7 +11,7 @@
11
<dependency>
12
<groupId>junit</groupId>
13
<artifactId>junit</artifactId>
14
- <version>4.13.1</version>
+ <version>4.13.2</version>
15
<scope>test</scope>
16
</dependency>
17
</dependencies>
@@ -44,6 +44,26 @@
44
</archive>
45
</configuration>
46
</plugin>
47
+ <plugin>
48
+ <groupId>org.apache.maven.plugins</groupId>
49
+ <artifactId>maven-enforcer-plugin</artifactId>
50
+ <version>3.0.0-M3</version>
51
+ <executions>
52
+ <execution>
53
+ <id>enforce-maven</id>
54
+ <goals>
55
+ <goal>enforce</goal>
56
+ </goals>
57
+ <configuration>
58
+ <rules>
59
+ <requireMavenVersion>
60
+ <version>[3.5.4,)</version>
61
+ </requireMavenVersion>
62
+ </rules>
63
+ </configuration>
64
+ </execution>
65
+ </executions>
66
+ </plugin>
67
</plugins>
68
</build>
69
</project>
0 commit comments