mirror of
https://github.com/apache/maven.git
synced 2025-02-07 02:29:10 +00:00
change type of maven plugins to "maven-plugin" instead of plugin. This should allow other products to have different plugin types, if necessary. git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163562 13f79535-47bb-0310-9956-ffa450edef68
45 lines
1.2 KiB
XML
45 lines
1.2 KiB
XML
<model>
|
|
<parent>
|
|
<artifactId>maven-plugin-parent</artifactId>
|
|
<groupId>maven</groupId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>maven</groupId>
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
<packaging>maven-plugin</packaging>
|
|
<name>Maven Install Plugin</name>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<inceptionYear>2004</inceptionYear>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>maven</groupId>
|
|
<artifactId>maven-core</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>maven</groupId>
|
|
<artifactId>maven-model</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>maven</groupId>
|
|
<artifactId>maven-artifact</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>maven</groupId>
|
|
<artifactId>wagon-provider-api</artifactId>
|
|
<version>1.0-alpha-2-SNAPSHOT</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</model>
|