mirror of https://github.com/apache/maven.git
32 lines
977 B
XML
32 lines
977 B
XML
<project>
|
|
<parent>
|
|
<artifactId>maven</artifactId>
|
|
<groupId>org.apache.maven</groupId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>maven-plugin</artifactId>
|
|
<name>Maven Plugin</name>
|
|
<dependencies>
|
|
<!-- TODO: can we avoid this dependency so that it is not propogated to Mojo implementors?
|
|
Maybe split plugin-api from the descriptor builder? -->
|
|
<dependency>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-container-default</artifactId>
|
|
<version>1.0-alpha-2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-monitor</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<!-- TODO: shouldn't be needed - separate plugin test case -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|