Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

One you have Maven installed, execute the command mvn archetype:generate -DarchetypeCatalog=http://tapestry.apache.org. Maven will (after performing a large number of one-time downloads) ask you questions about how to create the new project, including a group id (like a package name) and an artifact id for your new project. Once it is created, you can load it into any IDE and start coding, or use mvn jetty:run

Footnote

Jetty is a well-known high-performance servlet container. Jetty starts up quickly, and implements the official Servlet specification very closely.

. Again, more one-time downloads, but then you can open you your browser to http://localhost:8080 to run the application.

...