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/08/13 20:31:38 UTC

svn commit: r985317 - /wicket/common/site/trunk/_site/start/quickstart.html

Author: mgrigorov
Date: Fri Aug 13 18:31:38 2010
New Revision: 985317

URL: http://svn.apache.org/viewvc?rev=985317&view=rev
Log:
WICKET-2984 Wicket Quickstart not working

Replace 'mvn archetype:create' with the newer 'mvn archetype:generate'.

related-to: 
WICKET-2009 Update Quickstart to use archetype:generate goal instead of archetype:create

r943697 | gseitz | 2010-05-12 23:25:56 +0200 (Wed, 12 May 2010) | 1 line

WICKET-2009: converted archetype to the new Archetype 2.0 format


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

Modified: wicket/common/site/trunk/_site/start/quickstart.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/start/quickstart.html?rev=985317&r1=985316&r2=985317&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/start/quickstart.html (original)
+++ wicket/common/site/trunk/_site/start/quickstart.html Fri Aug 13 18:31:38 2010
@@ -171,7 +171,7 @@
 		var  groupId = document.getElementById("groupId").value;
 		var artifactId = document.getElementById("artifactId").value;
 		var version = document.getElementById("version").value;
-		var cmd = 'mvn archetype:create -DarchetypeGroupId=org.apache.wicket -DarchetypeArtifactId=wicket-archetype-quickstart -DarchetypeVersion=' + version + ' -DgroupId=' + groupId + ' -DartifactId=' + artifactId;						
+		var 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/';
 		document.getElementById("cmdLine").value = cmd;
 	}