mirror of
https://github.com/apache/maven.git
synced 2025-02-09 11:35:24 +00:00
o Pressing [ENTER] at a plugin update prompt should result in the plugin being registered, as indicated by the prompt. o Use CLI switch '--no-plugin-updates' to suppress usage of the plugin registry o Use CLI switch '--update-plugins' to force updated/resolved plugin versions to be registered o Neither of these has a short CLI option, since we're starting to run out of sensible char options for these types of things. git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@193082 13f79535-47bb-0310-9956-ffa450edef68
32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<artifactId>maven-plugin-parent</artifactId>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<version>2.0-alpha-3</version>
|
|
</parent>
|
|
<artifactId>maven-report-parent</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>2.0-alpha-3</version>
|
|
<name>Maven Reports</name>
|
|
<description>Maven report parent</description>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven.reporting</groupId>
|
|
<artifactId>maven-reporting-api</artifactId>
|
|
<version>2.0-alpha-3</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<modules>
|
|
<module>maven-checkstyle-plugin</module>
|
|
<module>maven-javadoc-plugin</module>
|
|
<module>maven-pmd-plugin</module>
|
|
<module>maven-project-info-reports-plugin</module>
|
|
</modules>
|
|
<scm>
|
|
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/components/trunk/maven-reports/</connection>
|
|
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/components/trunk/maven-reports/</developerConnection>
|
|
<url>http://svn.apache.org/viewcvs.cgi/maven/components/maven-reports/</url>
|
|
</scm>
|
|
</project>
|