2005-10-31 10:21:32 -05:00
|
|
|
<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/maven-v4_0_0.xsd ">
|
2005-05-12 11:40:51 -04:00
|
|
|
<parent>
|
|
|
|
<artifactId>maven-plugin-parent</artifactId>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2005-10-14 04:08:16 -04:00
|
|
|
<version>2.0</version>
|
2005-05-12 11:40:51 -04:00
|
|
|
</parent>
|
2005-09-16 08:06:18 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2005-06-23 21:34:55 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2005-05-12 11:40:51 -04:00
|
|
|
<artifactId>maven-eclipse-plugin</artifactId>
|
|
|
|
<packaging>maven-plugin</packaging>
|
|
|
|
<name>Maven Eclipse Plugin</name>
|
2005-10-15 14:16:07 -04:00
|
|
|
<version>2.0-beta-3-SNAPSHOT</version>
|
2005-05-12 11:40:51 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-project</artifactId>
|
|
|
|
</dependency>
|
2005-10-31 10:59:06 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-model</artifactId>
|
|
|
|
<version>2.0</version>
|
|
|
|
</dependency>
|
2005-10-15 14:15:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-artifact-manager</artifactId>
|
|
|
|
<version>2.0</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2005-09-16 08:06:18 -04:00
|
|
|
<dependency>
|
2005-10-08 10:13:31 -04:00
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
2005-09-16 08:06:18 -04:00
|
|
|
<artifactId>plexus-utils</artifactId>
|
|
|
|
</dependency>
|
2005-10-07 02:44:59 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-artifact</artifactId>
|
2005-10-14 04:08:16 -04:00
|
|
|
<version>2.0</version>
|
2005-10-07 02:44:59 -04:00
|
|
|
</dependency>
|
2005-10-31 10:21:32 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-settings</artifactId>
|
|
|
|
<version>2.0</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2005-05-12 11:40:51 -04:00
|
|
|
<dependency>
|
2005-10-02 20:54:01 -04:00
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
2005-05-12 11:40:51 -04:00
|
|
|
<artifactId>plexus-container-default</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2005-10-31 10:21:32 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/Abstract*TestCase.java</exclude>
|
|
|
|
<exclude>**/EclipsePluginMasterProjectTest.java</exclude><!-- need to be fixed -->
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2005-10-31 10:59:06 -05:00
|
|
|
</project>
|