mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
52 lines
1.7 KiB
XML
52 lines
1.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<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>eclipse-plugins</module>
|
|
<module>hal</module>
|
|
<module>maven-utilities</module>
|
|
<module>networktables</module>
|
|
<module>ni-libraries</module>
|
|
<module>wpilibc</module>
|
|
<module>wpilibj</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>
|