mirror of https://github.com/apache/maven.git
55 lines
1.5 KiB
XML
55 lines
1.5 KiB
XML
<model>
|
|
<parent>
|
|
<artifactId>maven-plugin-parent</artifactId>
|
|
<groupId>maven</groupId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</parent>
|
|
<groupId>maven</groupId>
|
|
<artifactId>maven-pom-plugin</artifactId>
|
|
<packaging>maven-plugin</packaging>
|
|
<name>Maven POM Plugin</name>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<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-artifact</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>maven</groupId>
|
|
<artifactId>maven-settings</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</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>wagon-provider-api</artifactId>
|
|
<version>1.0-alpha-2-SNAPSHOT</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>maven</groupId>
|
|
<artifactId>wagon-ssh</artifactId>
|
|
<version>1.0-alpha-2-SNAPSHOT</version>
|
|
<type>jar</type>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</model>
|