We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89e5444 commit a7b14d7Copy full SHA for a7b14d7
1 file changed
pom.xml
@@ -132,6 +132,30 @@
132
</pluginManagement>
133
134
<plugins>
135
+ <plugin>
136
+ <groupId>org.apache.maven.plugins</groupId>
137
+ <artifactId>maven-enforcer-plugin</artifactId>
138
+ <version>3.6.2</version>
139
+ <executions>
140
+ <execution>
141
+ <id>enforce-maven-version</id>
142
+ <goals>
143
+ <goal>enforce</goal>
144
+ </goals>
145
+ <configuration>
146
+ <rules>
147
+ <requireJavaVersion>
148
+ <version>[11,)</version>
149
+ </requireJavaVersion>
150
+ <requireMavenVersion>
151
+ <version>[3.9.0,)</version>
152
+ </requireMavenVersion>
153
+ </rules>
154
+ <fail>true</fail>
155
+ </configuration>
156
+ </execution>
157
+ </executions>
158
+ </plugin>
159
<plugin>
160
<groupId>com.code54.mojo</groupId>
161
<artifactId>buildversion-plugin</artifactId>
0 commit comments