I am looking for wicket project example so I can learn how to create my web project with wicket. When I go to Wicket and look for a sample project to download, I reach to this page: http://wicket.apache.org/learn/projects/ and I cannot find any download. The only thing I found is the dependency using maven. How can I use this dependency in order to load the project in my IDE?
I am using Intellij.
I would go to the quick start page and copy the maven comand into a commandline (you need to have maven installed). Running the command will create a small project, containing all you need to get started. with
mvn jetty:runyou can run the project.Intellij Idea can open maven project (file->’import project from external project’ …)
hope that helps.