mirror of https://github.com/apache/maven.git
49 lines
1.4 KiB
XML
49 lines
1.4 KiB
XML
<project>
|
|
<parent>
|
|
<artifactId>maven-plugin-parent</artifactId>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<version>2.0</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>maven-projecthelp-plugin</artifactId>
|
|
<packaging>maven-plugin</packaging>
|
|
<name>Maven Project-Help Plugin</name>
|
|
<version>2.0-beta-2-SNAPSHOT</version>
|
|
<inceptionYear>2001</inceptionYear>
|
|
|
|
<description>
|
|
Provides mojos aimed at helping the user to make sense out of
|
|
the build environment. It includes mojos to view the effective
|
|
POM and settings files, after inheritance and active profiles
|
|
have been applied, as well as a 'describe' mojo to give the
|
|
user information about how to use a plugin.
|
|
</description>
|
|
|
|
<prerequisites>
|
|
<maven>2.0</maven>
|
|
</prerequisites>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-settings</artifactId>
|
|
<version>2.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-core</artifactId>
|
|
<version>2.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-plugin-descriptor</artifactId>
|
|
<version>2.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-plugin-tools-api</artifactId>
|
|
<version>2.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|