Re: Problem in running wicket app using mvn jetty:run

2013-02-12 Thread Martin Grigorov
See Wicket quickstart - http://wicket.apache.org/start/quickstart.html. It has Start.java class. Just run it as a normal Java program with main() method and it will use all classes which are available in the classpath of your project in the IDE. To be able to compile Start.java you just need jetty-

Re: Problem in running wicket app using mvn jetty:run

2013-02-12 Thread Martin Grigorov
Yes. jetty:run is part of a Jetty's Maven plugin that uses pom.xml to find the dependencies. On Tue, Feb 12, 2013 at 2:12 PM, kshitiz wrote: > Hi Martin, > > Thank you for the reply. Actually I have located all jars in lib folder. > Wont that be sufficient? Do I need to add all dependencies in

Re: Problem in running wicket app using mvn jetty:run

2013-02-12 Thread Martin Grigorov
Add dependency to wicket-extensions On Tue, Feb 12, 2013 at 1:32 PM, kshitiz wrote: > Hi, > > I am trying to run wicket app using the command mvn jetty:run but I am > getting the error > > *java.lang.NoClassDefFoundError: > > org/apache/wicket/extensions/ajax/markup/html/modal/ModalWindow$Windo

Problem in running wicket app using mvn jetty:run

2013-02-12 Thread kshitiz
Hi, I am trying to run wicket app using the command mvn jetty:run but I am getting the error *java.lang.NoClassDefFoundError: org/apache/wicket/extensions/ajax/markup/html/modal/ModalWindow$WindowClosedCallback* Now I this may be because it is not able to find all dependencies present in lib fo