2005-07-21 09:58:42 -04: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-04-20 21:06:52 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven</artifactId>
|
2005-06-25 11:37:43 -04:00
|
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
2005-04-20 21:06:52 -04:00
|
|
|
</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>
|
2005-06-27 11:29:14 -04:00
|
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
2005-04-20 21:06:52 -04:00
|
|
|
</dependency>
|
2005-04-22 07:01:33 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-artifact</artifactId>
|
2005-06-27 11:29:14 -04:00
|
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
2005-04-22 07:01:33 -04:00
|
|
|
</dependency>
|
|
|
|
<!-- TODO: reduce to utils -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>plexus</groupId>
|
|
|
|
<artifactId>plexus-container-default</artifactId>
|
2005-06-22 22:31:28 -04:00
|
|
|
<version>1.0-alpha-4</version>
|
2005-04-22 07:01:33 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>plexus</groupId>
|
|
|
|
<artifactId>plexus-utils</artifactId>
|
2005-07-20 22:17:16 -04:00
|
|
|
<version>1.0.1</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>
|
2005-06-27 11:29:14 -04:00
|
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
2005-06-21 02:49:49 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2005-04-20 21:06:52 -04:00
|
|
|
</dependencies>
|
2005-05-29 10:46:52 -04:00
|
|
|
</project>
|