Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-14743] Require maven 3.0 or higher (needed by jenkins core s…
…ince 1.436)
  • Loading branch information
Whitey04 committed Aug 11, 2012
1 parent 7193257 commit 71f4e9d
Showing 1 changed file with 27 additions and 5 deletions.
32 changes: 27 additions & 5 deletions pom.xml
Expand Up @@ -139,12 +139,34 @@
</plugin>
</plugins>
</pluginManagement>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.0.1</version>
<executions>
<execution>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.0</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>claim</artifactId>
<version>1.7</version>
</dependency>
<dependency>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>claim</artifactId>
<version>1.7</version>
</dependency>
</dependencies>
</project>

0 comments on commit 71f4e9d

Please sign in to comment.