Files
allwpilib/pom.xml
thomasclark 6e01adaa57 Revert "Modifies maven files to work with m2e"
This commit causes Eclipse to give a vaugue error message when creating a new Robot Java Project or Robot C++ Project.

This reverts commit 36241b0d6c.

Change-Id: I47b66c53604f07b6e40c0db6aa250b977d9ae903
2014-05-14 14:28:04 -04:00

48 lines
1.5 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>edu.wpi.first.wpilib</groupId>
<artifactId>aggregator-pom</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<modules>
<module>cmake</module>
<module>maven-utilities</module>
<module>networktables</module>
<module>wpilibj</module>
<module>eclipse-plugins</module>
<module>driver-station</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.3.1</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<!-- Require Maven version > 3.0.0, but exclude
3.1.0 due to http://jira.codehaus.org/browse/MNG-5503
-->
<version>[3.0.0,3.1.0), (3.1.0,)</version>
<message>WPILib has been tested with Maven 3.0.0+.
Note: Maven 3.1.0 is not supported due to Maven bug MNG-5503 (http://jira.codehaus.org/browse/MNG-5503). Please upgrade
to Maven 3.1.1 or later.
</message>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>