We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efb3cc6 commit bb547d3Copy full SHA for bb547d3
pom.xml
@@ -142,6 +142,27 @@
142
143
<build>
144
<plugins>
145
+ <plugin>
146
+ <groupId>org.apache.maven.plugins</groupId>
147
+ <artifactId>maven-enforcer-plugin</artifactId>
148
+ <executions>
149
+ <execution>
150
+ <id>enforce-maven-3-6-3-plus</id>
151
+ <goals>
152
+ <goal>enforce</goal>
153
+ </goals>
154
+ <configuration>
155
+ <fail>true</fail>
156
+ <rules>
157
+ <requireMavenVersion>
158
+ <version>3.6.3</version>
159
+ </requireMavenVersion>
160
+ </rules>
161
+ </configuration>
162
+ </execution>
163
+ </executions>
164
+ </plugin>
165
+
166
<plugin>
167
<groupId>org.apache.maven.plugins</groupId>
168
<artifactId>maven-resources-plugin</artifactId>
0 commit comments