I used maven commands generated from the Wicket quick start.
You can use http://wicket.apache.org/quickstart.html to very quickly generate starting point with wicket and maven. To use this, you download and install Maven, and then run this single command:
I spent many hours tracking down why this fails from TCC, and it works from CMD. From TCC, the argument -Dx=y is received as two arguments, -Dx and y. On CMD, this is recieved as a single argument. It turns out that this works if I use quotes to prevent the arguments from splitting.
Wow, that was annoying...
You can use http://wicket.apache.org/quickstart.html to very quickly generate starting point with wicket and maven. To use this, you download and install Maven, and then run this single command:
mvn archetype:create -DarchetypeGroupId=org.apache.wicket -DarchetypeArtifactId=wicket-archetype-quickstart -DarchetypeVersion=1.3.4 -DgroupId=com.mycompany -DartifactId=myproject
I spent many hours tracking down why this fails from TCC, and it works from CMD. From TCC, the argument -Dx=y is received as two arguments, -Dx and y. On CMD, this is recieved as a single argument. It turns out that this works if I use quotes to prevent the arguments from splitting.
mvn archetype:create "-DarchetypeGroupId=org.apache.wicket" "-DarchetypeArtifactId=wicket-archetype-quickstart" "-DarchetypeVersion=1.3.4" "-DgroupId=com.mycompany" "-DartifactId=myproject"
Wow, that was annoying...