• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Wicket: how to deploy and run the examples?

 
Ranch Hand
Posts: 701
2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I've downloaded Wicket from:

http://www.apache.org/dyn/closer.cgi/wicket/1.4-m3


I've unzipped the file and I see there's a path with examples (\apache-wicket-1.4-m3\src\wicket-examples). How do I run them? I've noticed they use Maven 2, but I'm used to use Ant to build the projects, not Maven.

I tried to use "mvn compiler:compile" command line in the path where "pom.xml" file is located but I get an error:


Maven also builds a package like Ant in some "dist" path? Where do I see where this path is configurated?
The path where I try to run the command is "\apache-wicket-1.4-m3\src".

Thank you
 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
From the wicket-examples directory simply run:

mvn jetty:run



Maven will build the wicket-examples project and start the Jetty webcontainer. You can access the wicket-examples application via http://localhost:8080/wicket-examples/.
 
reply
    Bookmark Topic Watch Topic
  • New Topic