We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c6a62d commit 022bb5cCopy full SHA for 022bb5c
1 file changed
pom.xml
@@ -186,6 +186,29 @@
186
</execution>
187
</executions>
188
</plugin>
189
+ <plugin>
190
+ <groupId>org.apache.maven.plugins</groupId>
191
+ <artifactId>maven-enforcer-plugin</artifactId>
192
+ <version>3.5.0</version>
193
+ <executions>
194
+ <execution>
195
+ <id>enforce-maven</id>
196
+ <goals>
197
+ <goal>enforce</goal>
198
+ </goals>
199
+ <configuration>
200
+ <rules>
201
+ <requireMavenVersion>
202
+ <version>3.6.3</version>
203
+ </requireMavenVersion>
204
+ <requireJavaVersion>
205
+ <version>11</version>
206
+ </requireJavaVersion>
207
+ </rules>
208
+ </configuration>
209
+ </execution>
210
+ </executions>
211
+ </plugin>
212
</plugins>
213
</build>
214
0 commit comments