You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2010/12/27 12:42:02 UTC

svn commit: r1053047 - in /wicket/common/site/trunk: _site/start/quickstart.html start/quickstart.md

Author: mgrigorov
Date: Mon Dec 27 11:42:02 2010
New Revision: 1053047

URL: http://svn.apache.org/viewvc?rev=1053047&view=rev
Log:
WICKET-3268 Can't generate 1.5-SNAPSHOT project with the quickstart command

Use -DarchetypeRepository instead of -DremoteRepositories to point where the -SNAPSHOT archetype is.


Modified:
    wicket/common/site/trunk/_site/start/quickstart.html
    wicket/common/site/trunk/start/quickstart.md

Modified: wicket/common/site/trunk/_site/start/quickstart.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/start/quickstart.html?rev=1053047&r1=1053046&r2=1053047&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/start/quickstart.html (original)
+++ wicket/common/site/trunk/_site/start/quickstart.html Mon Dec 27 11:42:02 2010
@@ -177,7 +177,8 @@
 		else
 			cmd = 'mvn archetype:generate -DarchetypeGroupId=org.apache.wicket -DarchetypeArtifactId=wicket-archetype-quickstart -DarchetypeVersion=' + version + ' -DgroupId=' + groupId + ' -DartifactId=' + artifactId;						
 
-		if (version.match(/.*SNAPSHOT/)) cmd += ' -DremoteRepositories=http://wicketstuff.org/maven/repository/';
+		if (version.match(/.*SNAPSHOT/)) cmd += ' -DarchetypeRepository=http://wicketstuff.org/maven/repository/'; 
+		cmd += ' -DinteractiveMode=false'; 
 		document.getElementById("cmdLine").value = cmd;
 	}
 </script><div id='mvncmd'>

Modified: wicket/common/site/trunk/start/quickstart.md
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/start/quickstart.md?rev=1053047&r1=1053046&r2=1053047&view=diff
==============================================================================
--- wicket/common/site/trunk/start/quickstart.md (original)
+++ wicket/common/site/trunk/start/quickstart.md Mon Dec 27 11:42:02 2010
@@ -42,7 +42,8 @@ typing in the groupId, artifactId and ve
 		else
 			cmd = 'mvn archetype:generate -DarchetypeGroupId=org.apache.wicket -DarchetypeArtifactId=wicket-archetype-quickstart -DarchetypeVersion=' + version + ' -DgroupId=' + groupId + ' -DartifactId=' + artifactId;						
 
-		if (version.match(/.*SNAPSHOT/)) cmd += ' -DremoteRepositories=http://wicketstuff.org/maven/repository/';
+		if (version.match(/.*SNAPSHOT/)) cmd += ' -DarchetypeRepository=http://wicketstuff.org/maven/repository/'; 
+		cmd += ' -DinteractiveMode=false'; 
 		document.getElementById("cmdLine").value = cmd;
 	}
 </script>