mirror of
https://github.com/apache/maven.git
synced 2025-02-07 02:29:10 +00:00
o If the metadata version is still in the plugin artifact after it's resolved, then simply return null and allow the plugin version resolution process to fail. o Added a new mojo to update the plugin registry (if it's enabled) with newly installed versions of plugins. o Added comments to maven-settings and maven-plugin-parameter-documenter poms marking the packageWithVersion config as deprecated pending modello alpha-5 o Cleaned up it0013 and it0020 to work with the new resolution (point one above). git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@293520 13f79535-47bb-0310-9956-ffa450edef68
68 lines
2.1 KiB
XML
68 lines
2.1 KiB
XML
<project>
|
|
<parent>
|
|
<artifactId>maven-plugin-parent</artifactId>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<version>2.0-beta-3-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>maven-plugin-plugin</artifactId>
|
|
<packaging>maven-plugin</packaging>
|
|
<name>Maven PLUGIN Plugin</name>
|
|
<version>2.0-beta-3-SNAPSHOT</version>
|
|
<inceptionYear>2001</inceptionYear>
|
|
<developers>
|
|
<developer>
|
|
<id>vsiveton</id>
|
|
<name>Vincent Siveton</name>
|
|
<email>vincent.siveton@gmail.com</email>
|
|
<roles>
|
|
<role>Java Developer</role>
|
|
</roles>
|
|
<timezone>-5</timezone>
|
|
</developer>
|
|
</developers>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-plugin-registry</artifactId>
|
|
<version>2.0-beta-3-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-artifact-manager</artifactId>
|
|
<version>2.0-beta-3-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-project</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-repository-metadata</artifactId>
|
|
<version>2.0-beta-3-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-plugin-tools-api</artifactId>
|
|
<version>2.0-beta-3-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-plugin-tools-java</artifactId>
|
|
<version>2.0-beta-3-SNAPSHOT</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-plugin-tools-beanshell</artifactId>
|
|
<version>2.0-beta-3-SNAPSHOT</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven.reporting</groupId>
|
|
<artifactId>maven-reporting-impl</artifactId>
|
|
<version>2.0-beta-3-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|