You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ca...@apache.org on 2011/11/11 01:42:16 UTC

svn commit: r1200664 - /maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/GetMojo.java

Author: carlos
Date: Fri Nov 11 00:42:16 2011
New Revision: 1200664

URL: http://svn.apache.org/viewvc?rev=1200664&view=rev
Log:
[MDEP-336] Add warning about always downloading from central

Modified:
    maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/GetMojo.java

Modified: maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/GetMojo.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/GetMojo.java?rev=1200664&r1=1200663&r2=1200664&view=diff
==============================================================================
--- maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/GetMojo.java (original)
+++ maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/GetMojo.java Fri Nov 11 00:42:16 2011
@@ -45,11 +45,11 @@ import org.apache.maven.plugin.MojoFailu
 import org.codehaus.plexus.util.StringUtils;
 
 /**
- * Downloads a single artifact transitively from a specified remote repository.
- *
+ * Downloads a single artifact transitively from the specified remote repositories. Caveat: will always check the
+ * central repository defined in the super pom. You could use a mirror entry in your settings.xml
+ * 
  * @goal get
  * @requiresProject false
- *
  */
 public class GetMojo
     extends AbstractMojo