mirror of https://github.com/apache/maven.git
46 lines
1.3 KiB
XML
46 lines
1.3 KiB
XML
<model>
|
|
<parent>
|
|
<artifactId>maven-component</artifactId>
|
|
<groupId>org.apache.maven</groupId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>maven-plugin</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Maven Plugin</name>
|
|
<version>2.0-SNAPSHOT</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-monitor</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>qdox</groupId>
|
|
<artifactId>qdox</artifactId>
|
|
<version>1.2</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>modello</groupId>
|
|
<artifactId>modello</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
<type>jar</type>
|
|
<!-- Should be changed to test scope, but that requires moving the
|
|
| plugin test case out to another artifact or something.
|
|
| -->
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</model>
|