Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Reorganized for better clarity and flow, and to reduce by 1 the number of places that mention a specific "latest Tapestry version"

...

It's more than what you can do with Tapestry ... it's also how you do it! Tapestry is a vastly productive environment. Java developers love it because they can make Java code changes and see them immediately ... no redeploy, no restart! And it's blazingly fast to boot (even when files changehave changed). Designers love it because Tapestry templates are so close to ordinary HTML, without all the cruft and confusion seen in JavaServer Pages. Managers love it because it makes it easy for large teams to work together productively, and because they know important features (including localization) are baked right in. Once you work in Tapestry there's no going back!

Tapestry is released under the Apache Software Licence License 2.0.

Roadmap

Version 5.2 has reached General Availability (stable) status, and developers are working on features for a 5.3 snapshot.

The goal is to produce releases on a regular schedule, every 4 - 6 months.

High priorities for upcoming releases include Spring Web Flow integration, support for developing Tapestry applications as Portlets, a Javascript abstraction layer, removal of Javassist, IoC improvements, more add-on libraries and components, and improvements to documentation.

Third Party Libraries, Tutorials and Resources

A number of third party libraries, tutorials and resources are listed on the Tapestry Home page.

About Releases and Snapshots

...

Most users will want to use the latest stable release of Tapestry, and for that your best bet is to use the Quickstart Maven archetype to create your initial Tapestry project, as described on the Getting Started page. The Quickstart archetype generates a full, working project directory.

You can also pull down Tapestry modules in the form of binary and source JARs from the Maven Central repository.

Tapestry itself is built using GradleTapestry is built using Maven, which makes it really easy to download the source and build it yourself, either the whole project, or just one single module.Better yet, you can pull down Tapestry modules from the central Maven repository.

The use of Maven and Gradle has let us move with great speed, providing preview releases and snapshots.

Snapshots are intermediate versions of releases. As of this writing, the most recent release is 5.2.4 and the current snapshots are for 5.3.0-SNAPSHOT. Maven keys off the , with "-SNAPSHOT" at the end of the version number. Maven keys off that -SNAPSHOT suffix and handles the dependency specially. It knows that snapshot releases can change frequently, so it will keep checking (at least once a day, maybe more often) to see if there's an updated version of the snapshot.

...

Snapshots don't go in the Maven central Maven repository (that's reserved for full releases). Instead, they go into the Tapestry snapshots repository at http://repository.apache.org/snapshots/.

To access this the snapshot repository, you may just add -DremoteRepositories=http://repository.apache.org/snapshots/ to the command line when running Maven.

Your best bet is to use the quickstart Maven archetype to create your initial Tapestry project; it generates a full project directory, including a POM that links to the Apache snapshots repository.

Documentation on this site usually refers to the latest snapshot ... that is, it is usually ahead of the last official release, with version-specific differences clearly marked. In some cases, it is written as if the snapshot release is stable; if documentation refers to version 5.13.x .x and that doesn't work, try 5.1.x3.x-SNAPSHOT.