2004-04-12 16:14:19 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<project>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<name>Maven Plugin</name>
|
|
|
|
<groupId>maven</groupId>
|
2004-05-25 16:08:28 -04:00
|
|
|
<artifactId>maven-plugin-parent</artifactId>
|
2004-06-20 11:54:21 -04:00
|
|
|
<!-- @todo we should have type = plugin here -->
|
|
|
|
<type>jar</type>
|
2004-04-12 16:14:19 -04:00
|
|
|
<version>2.0-SNAPSHOT</version>
|
|
|
|
<description>Maven plugin parent</description>
|
|
|
|
<shortDescription>Maven plugin parent</shortDescription>
|
|
|
|
<url>http://maven.apache.org</url>
|
|
|
|
|
|
|
|
<organization>
|
|
|
|
<name>Apache Software Foundation</name>
|
|
|
|
<url>http://www.apache.org/</url>
|
|
|
|
<logo>/images/apache-maven-project.png</logo>
|
|
|
|
</organization>
|
|
|
|
|
2004-04-15 10:44:19 -04:00
|
|
|
<issueManagement>
|
2004-04-16 10:27:08 -04:00
|
|
|
<system>jira</system>
|
2004-04-15 10:44:19 -04:00
|
|
|
<url>http://jira.codehaus.org/secure/BrowseProject.jspa?id=10500</url>
|
2004-04-15 11:17:40 -04:00
|
|
|
</issueManagement>
|
2004-04-15 10:44:19 -04:00
|
|
|
|
2004-04-12 16:14:19 -04:00
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<name>Jason van Zyl</name>
|
|
|
|
<id>jvanzyl</id>
|
|
|
|
<email>jason@maven.org</email>
|
|
|
|
<organization>Maven</organization>
|
|
|
|
<roles>
|
|
|
|
<role>Architect</role>
|
|
|
|
<role>Release Manager</role>
|
|
|
|
</roles>
|
|
|
|
</developer>
|
2004-04-20 10:06:57 -04:00
|
|
|
<developer>
|
|
|
|
<name>Emmanuel Venisse</name>
|
|
|
|
<id>evenisse</id>
|
|
|
|
<email>evenisse@apache.org</email>
|
|
|
|
<organization>Maven</organization>
|
|
|
|
<roles>
|
|
|
|
<role>Java Developer</role>
|
|
|
|
</roles>
|
|
|
|
</developer>
|
2004-04-12 16:14:19 -04:00
|
|
|
</developers>
|
|
|
|
|
2004-05-20 13:10:49 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>maven</groupId>
|
|
|
|
<artifactId>maven-model</artifactId>
|
|
|
|
<version>2.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>maven</groupId>
|
|
|
|
<artifactId>maven-plugin</artifactId>
|
|
|
|
<version>2.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>maven</groupId>
|
|
|
|
<artifactId>wagon-api</artifactId>
|
|
|
|
<version>0.9-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- This will soon be a transitive dep -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>plexus</groupId>
|
|
|
|
<artifactId>plexus</artifactId>
|
|
|
|
<version>0.14-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>classworlds</groupId>
|
|
|
|
<artifactId>classworlds</artifactId>
|
|
|
|
<version>1.1-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>xstream</groupId>
|
|
|
|
<artifactId>xstream</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>xpp3</groupId>
|
|
|
|
<artifactId>xpp3</artifactId>
|
|
|
|
<version>1.1.3.3</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2004-04-12 16:14:19 -04:00
|
|
|
</project>
|