mirror of
https://github.com/apache/maven.git
synced 2025-02-09 19:45:34 +00:00
fcbc5e7d6f
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
33 lines
1001 B
XML
33 lines
1001 B
XML
<project>
|
|
<parent>
|
|
<artifactId>maven-plugin-tools</artifactId>
|
|
<groupId>org.apache.maven</groupId>
|
|
<version>2.0-alpha-3</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>maven-plugin-tools-marmalade</artifactId>
|
|
<name>Maven Plugin Tools for Marmalade</name>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>marmalade</groupId>
|
|
<artifactId>marmalade-core</artifactId>
|
|
<version>1.0-alpha-4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-script-marmalade</artifactId>
|
|
<version>2.0-alpha-3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-plugin-descriptor</artifactId>
|
|
<version>2.0-alpha-3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-plugin-tools-api</artifactId>
|
|
<version>2.0-alpha-3</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|