Skip to content

Commit

Permalink
[JENKINS-14743] Require maven 3.0 or higher (needed by jenkins core s…
Browse files Browse the repository at this point in the history
…ince 1.436)

Conflicts:

	pom.xml
  • Loading branch information
Whitey04 authored and Joel Huttunen committed Aug 13, 2012
1 parent 15b2f78 commit f0f8af7
Showing 1 changed file with 24 additions and 15 deletions.
39 changes: 24 additions & 15 deletions pom.xml
Expand Up @@ -63,24 +63,33 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
</plugin>
<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 f0f8af7

Please sign in to comment.