mirror of https://github.com/apache/maven.git
31 lines
847 B
XML
31 lines
847 B
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-it0013-plugin</artifactId>
|
|
<packaging>maven-plugin</packaging>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-plugin-api</artifactId>
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
<type>jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>central</id>
|
|
<name>Test Repository</name>
|
|
<url>file:/tmp/testRepo</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
</project>
|