We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf9e7e9 commit 745bfddCopy full SHA for 745bfdd
pom.xml
@@ -86,6 +86,29 @@
86
</pluginRepositories>
87
<build>
88
<plugins>
89
+ <plugin>
90
+ <groupId>org.apache.maven.plugins</groupId>
91
+ <artifactId>maven-enforcer-plugin</artifactId>
92
+ <version>1.4</version>
93
+ <executions>
94
+ <execution>
95
+ <id>enforce-maven</id>
96
+ <goals>
97
+ <goal>enforce</goal>
98
+ </goals>
99
+ <configuration>
100
+ <rules>
101
+ <requireMavenVersion>
102
+ <version>[3.0,)</version>
103
+ </requireMavenVersion>
104
+ <requireJavaVersion>
105
+ <version>[1.7,)</version>
106
+ </requireJavaVersion>
107
+ </rules>
108
+ </configuration>
109
+ </execution>
110
+ </executions>
111
+ </plugin>
112
<plugin>
113
<groupId>org.codehaus.mojo</groupId>
114
<artifactId>exec-maven-plugin</artifactId>
0 commit comments