2005-05-29 10:46:52 -04:00
|
|
|
<project>
|
2005-04-20 21:06:52 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven</artifactId>
|
|
|
|
<version>2.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
<artifactId>maven-project</artifactId>
|
|
|
|
<name>Maven Project Builder</name>
|
|
|
|
<description>
|
|
|
|
This library is used to not only read Maven project object model files, but to assemble inheritence
|
|
|
|
and to retrieve remote models as required.
|
|
|
|
</description>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-model</artifactId>
|
|
|
|
<version>2.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2005-04-22 07:01:33 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-artifact</artifactId>
|
|
|
|
<version>2.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- TODO: reduce to utils -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>plexus</groupId>
|
|
|
|
<artifactId>plexus-container-default</artifactId>
|
2005-05-30 14:24:32 -04:00
|
|
|
<version>1.0-alpha-4-SNAPSHOT</version>
|
2005-04-22 07:01:33 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>plexus</groupId>
|
|
|
|
<artifactId>plexus-utils</artifactId>
|
2005-05-13 03:01:57 -04:00
|
|
|
<version>1.0-alpha-3</version>
|
2005-04-22 07:01:33 -04:00
|
|
|
</dependency>
|
2005-06-21 02:49:49 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-artifact-test</artifactId>
|
|
|
|
<version>2.0-SNAPSHOT</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2005-04-20 21:06:52 -04:00
|
|
|
</dependencies>
|
2005-05-29 10:46:52 -04:00
|
|
|
</project>
|