mirror of
https://github.com/apache/maven.git
synced 2025-02-06 10:09:04 +00:00
2545065cc7
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@178959 13f79535-47bb-0310-9956-ffa450edef68
38 lines
1.1 KiB
XML
Executable File
38 lines
1.1 KiB
XML
Executable File
<project>
|
|
<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>
|
|
<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>
|
|
<version>1.0-alpha-3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-utils</artifactId>
|
|
<version>1.0-alpha-3</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|