You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2011/08/30 19:11:28 UTC

svn commit: r1163293 - /maven/archetype/trunk/maven-archetype-plugin/src/main/java/org/apache/maven/archetype/mojos/CreateProjectFromArchetypeMojo.java

Author: hboutemy
Date: Tue Aug 30 17:11:28 2011
New Revision: 1163293

URL: http://svn.apache.org/viewvc?rev=1163293&view=rev
Log:
[ARCHETYPE-220] updated documentation: https is supported for catalogs like http

Modified:
    maven/archetype/trunk/maven-archetype-plugin/src/main/java/org/apache/maven/archetype/mojos/CreateProjectFromArchetypeMojo.java

Modified: maven/archetype/trunk/maven-archetype-plugin/src/main/java/org/apache/maven/archetype/mojos/CreateProjectFromArchetypeMojo.java
URL: http://svn.apache.org/viewvc/maven/archetype/trunk/maven-archetype-plugin/src/main/java/org/apache/maven/archetype/mojos/CreateProjectFromArchetypeMojo.java?rev=1163293&r1=1163292&r2=1163293&view=diff
==============================================================================
--- maven/archetype/trunk/maven-archetype-plugin/src/main/java/org/apache/maven/archetype/mojos/CreateProjectFromArchetypeMojo.java (original)
+++ maven/archetype/trunk/maven-archetype-plugin/src/main/java/org/apache/maven/archetype/mojos/CreateProjectFromArchetypeMojo.java Tue Aug 30 17:11:28 2011
@@ -94,12 +94,12 @@ public class CreateProjectFromArchetypeM
     private String archetypeRepository;
 
     /**
-     * The archetype's catalogs.
+     * The archetype catalogs to use to build a list and let the user choose from.
      * It is a comma separated list of catalogs.
-     * Catalogs use scheme:
+     * Catalogs use following schemes:
      * <ul>
      * <li>'<code>file://...</code>' with <code>archetype-catalog.xml</code> automatically appended when pointing to a directory</li>
-     * <li>'<code>http://...</code>' with <code>archetype-catalog.xml</code> always appended</li>
+     * <li>'<code>http://...</code>' or '<code>https://...</code>' with <code>archetype-catalog.xml</code> always appended</li>
      * <li>'<code>local</code>' which is the shortcut for '<code>file://~/.m2/archetype-catalog.xml</code>'</li>
      * <li>'<code>remote</code>' which is the shortcut for Maven Central repository, ie '<code>http://repo1.maven.org/maven2</code>'</li>
      * <li>'<code>internal</code>' which is an internal catalog</li>