mirror of https://github.com/apache/maven.git
22 lines
632 B
XML
22 lines
632 B
XML
<model>
|
|
<parent>
|
|
<artifactId>maven-plugin-parent</artifactId>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>maven-archetype-plugin</artifactId>
|
|
<packaging>maven-plugin</packaging>
|
|
<name>Maven Archetype Plugin</name>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-archetype-core</artifactId>
|
|
<version>1.0-alpha-1-SNAPSHOT</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</model>
|