Looking for snapshot builds of the latest version of Tiles? Snapshots are occasionally published to Apache's Maven snapshot repository, which can be accessed with the following configuration:
<repository> <id>apache.snapshots</id> <name>Apache Maven Snapshot Repository</name> <url>http://repository.apache.org/snapshots</url> </repository>
After configuring the repository, declare a dependency on Tiles Autotag:
<dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-autotag-core-runtime</artifactId> <version>1.0-SNAPSHOT</version> </dependency>
Or the maven plugin:
<plugin> <groupId>org.apache.tiles</groupId> <artifactId>maven-autotag-plugin</artifactId> <version>1.0-SNAPSHOT</version> <configuration> <packageName>...</packageName> <freemarkerRuntime>...</freemarkerRuntime> <jspRuntime>...</jspRuntime> <velocityRuntime>...</velocityRuntime> </configuration> </plugin>