You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tiles.apache.org by mc...@apache.org on 2011/08/26 13:35:48 UTC

svn commit: r1162068 - in /tiles/framework/trunk: tiles-autotag/ tiles-autotag/src/site/ tiles-autotag/tiles-autotag-core-runtime/src/site/ tiles-autotag/tiles-autotag-core/src/site/ tiles-autotag/tiles-autotag-freemarker-runtime/src/site/ tiles-autota...

Author: mck
Date: Fri Aug 26 11:35:47 2011
New Revision: 1162068

URL: http://svn.apache.org/viewvc?rev=1162068&view=rev
Log:
site building for tiles-autotag and tiles-eval (and submodules)

Added:
    tiles/framework/trunk/tiles-autotag/src/site/site.xml
    tiles/framework/trunk/tiles-autotag/tiles-autotag-core-runtime/src/site/
    tiles/framework/trunk/tiles-autotag/tiles-autotag-core-runtime/src/site/site.xml
    tiles/framework/trunk/tiles-autotag/tiles-autotag-core/src/site/
    tiles/framework/trunk/tiles-autotag/tiles-autotag-core/src/site/site.xml
    tiles/framework/trunk/tiles-autotag/tiles-autotag-freemarker-runtime/src/site/
    tiles/framework/trunk/tiles-autotag/tiles-autotag-freemarker-runtime/src/site/site.xml
    tiles/framework/trunk/tiles-autotag/tiles-autotag-freemarker/src/site/
    tiles/framework/trunk/tiles-autotag/tiles-autotag-freemarker/src/site/site.xml
    tiles/framework/trunk/tiles-autotag/tiles-autotag-jsp-runtime/src/site/
    tiles/framework/trunk/tiles-autotag/tiles-autotag-jsp-runtime/src/site/site.xml
    tiles/framework/trunk/tiles-autotag/tiles-autotag-jsp/src/site/
    tiles/framework/trunk/tiles-autotag/tiles-autotag-jsp/src/site/site.xml
    tiles/framework/trunk/tiles-autotag/tiles-autotag-velocity-runtime/src/site/
    tiles/framework/trunk/tiles-autotag/tiles-autotag-velocity-runtime/src/site/site.xml
    tiles/framework/trunk/tiles-autotag/tiles-autotag-velocity/src/site/
    tiles/framework/trunk/tiles-autotag/tiles-autotag-velocity/src/site/site.xml
    tiles/framework/trunk/tiles-eval/src/
    tiles/framework/trunk/tiles-eval/src/site/
    tiles/framework/trunk/tiles-eval/src/site/site.xml
    tiles/framework/trunk/tiles-eval/tiles-eval-api/src/site/
    tiles/framework/trunk/tiles-eval/tiles-eval-api/src/site/site.xml
Modified:
    tiles/framework/trunk/tiles-autotag/pom.xml
    tiles/framework/trunk/tiles-eval/pom.xml
    tiles/framework/trunk/tiles-request/pom.xml

Modified: tiles/framework/trunk/tiles-autotag/pom.xml
URL: http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-autotag/pom.xml?rev=1162068&r1=1162067&r2=1162068&view=diff
==============================================================================
--- tiles/framework/trunk/tiles-autotag/pom.xml (original)
+++ tiles/framework/trunk/tiles-autotag/pom.xml Fri Aug 26 11:35:47 2011
@@ -44,4 +44,246 @@
             <url>scp://people.apache.org/www/tiles.apache.org/autotag</url>
         </site>
     </distributionManagement>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-project-info-reports-plugin</artifactId>
+            </plugin>
+            <plugin>
+                <artifactId>maven-surefire-report-plugin</artifactId>
+            </plugin>
+            <plugin>
+                <artifactId>maven-checkstyle-plugin</artifactId>
+                <configuration>
+                    <configLocation>http://svn.eu.apache.org/repos/asf/tiles/maven/trunk/build/tiles_checks_v5.xml
+                    </configLocation>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>jxr-maven-plugin</artifactId>
+            </plugin>
+            <plugin>
+                <artifactId>maven-pmd-plugin</artifactId>
+                <configuration>
+                  <targetJdk>1.5</targetJdk>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <version>2.7</version>
+                <reportSets>
+                    <reportSet>
+                        <id>aggregated</id>
+                        <configuration>
+                            <excludePackageNames>org.apache.tiles.test</excludePackageNames>
+                            <links>
+                                <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
+                                <link>http://java.sun.com/j2ee/sdk_1.2.1/techdocs/api</link>
+                                <link>http://commons.apache.org/chain/apidocs</link>
+                                <link>http://commons.apache.org/digester/commons-digester-1.6/docs/api</link>
+                                <link>http://commons.apache.org/logging/commons-logging-1.1/apidocs</link>
+                            </links>
+                            <doclet>gr.spinellis.umlgraph.doclet.UmlGraphDoc</doclet>
+                            <docletArtifact>
+                                <groupId>gr.spinellis</groupId>
+                                <artifactId>UmlGraph</artifactId>
+                                <version>4.6</version>
+                            </docletArtifact>
+                            <additionalparam>
+                                -inferrel -inferdep -quiet -hide java.*
+                                -collpackages java.util.* -qualify
+                                -postfixpackage -nodefontsize 9
+                                -nodefontpackagesize 7
+                            </additionalparam>
+                        </configuration>
+                        <reports>
+                            <report>aggregate</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>rat-maven-plugin</artifactId>
+                <version>1.0-alpha-3</version>
+                <configuration>
+                    <includes>
+                        <include>pom.xml</include>
+                        <include>src/**</include>
+                    </includes>
+                    <excludes>
+                        <exclude>**/*LICENSE.txt</exclude>
+                        <exclude>**/*MANIFEST.MF</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>emma-maven-plugin</artifactId>
+                <version>1.0-alpha-3</version>
+            </plugin>
+        </plugins>
+    </reporting>
+
+    <profiles>
+        <profile>
+            <id>apache-release</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <artifactId>maven-install-plugin</artifactId>
+                        <configuration>
+                            <createChecksum>true</createChecksum>
+                        </configuration>
+                    </plugin>
+                    <plugin>
+                        <groupId>org.codehaus.mojo</groupId>
+                        <artifactId>rat-maven-plugin</artifactId>
+                        <version>1.0-alpha-3</version>
+                        <executions>
+                            <execution>
+                                <phase>verify</phase>
+                                <goals>
+                                    <goal>check</goal>
+                                </goals>
+                                <configuration>
+                                    <addDefaultLicenseMatchers>false</addDefaultLicenseMatchers>
+                                    <licenseMatchers>
+                                        <classNames>
+                                            <className>rat.analysis.license.ApacheSoftwareLicense20</className>
+                                        </classNames>
+                                    </licenseMatchers>
+                                    <includes>
+                                        <include>pom.xml</include>
+                                        <include>src/**</include>
+                                    </includes>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+        <profile>
+            <id>maven-3</id>
+            <activation>
+                <file>
+                    <exists>${basedir}</exists>
+                </file>
+            </activation>
+            <build>
+                <pluginManagement>
+                    <plugins>
+                        <plugin>
+                            <groupId>org.apache.maven.plugins</groupId>
+                            <artifactId>maven-site-plugin</artifactId>
+                            <version>3.0-beta-3</version>
+                            <configuration>
+                                <reportingPlugins>
+                                    <plugin>
+                                        <groupId>org.apache.maven.plugins</groupId>
+                                        <artifactId>maven-project-info-reports-plugin</artifactId>
+                                    </plugin>
+                                    <plugin>
+                                        <artifactId>maven-surefire-report-plugin</artifactId>
+                                    </plugin>
+                                    <plugin>
+                                        <artifactId>maven-checkstyle-plugin</artifactId>
+                                        <configuration>
+                                            <configLocation>http://svn.eu.apache.org/repos/asf/tiles/maven/trunk/build/tiles_checks_v5.xml
+                                            </configLocation>
+                                        </configuration>
+                                    </plugin>
+                                    <plugin>
+                                        <groupId>org.codehaus.mojo</groupId>
+                                        <artifactId>jxr-maven-plugin</artifactId>
+                                    </plugin>
+                                    <plugin>
+                                        <artifactId>maven-pmd-plugin</artifactId>
+                                        <configuration>
+                                            <targetJdk>1.5</targetJdk>
+                                        </configuration>
+                                    </plugin>
+                                    <plugin>
+                                        <groupId>org.apache.maven.plugins</groupId>
+                                        <artifactId>maven-javadoc-plugin</artifactId>
+                                        <version>2.7</version>
+                                        <reports>
+                                            <report>aggregate</report>
+                                        </reports>
+                                        <configuration>
+                                            <excludePackageNames>org.apache.tiles.test</excludePackageNames>
+                                            <links>
+                                                <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
+                                                <link>http://java.sun.com/j2ee/sdk_1.2.1/techdocs/api</link>
+                                                <link>http://commons.apache.org/chain/apidocs</link>
+                                                <link>http://commons.apache.org/digester/commons-digester-1.6/docs/api</link>
+                                                <link>http://commons.apache.org/logging/commons-logging-1.1/apidocs</link>
+                                            </links>
+                                            <doclet>gr.spinellis.umlgraph.doclet.UmlGraphDoc</doclet>
+                                            <docletArtifact>
+                                                <groupId>gr.spinellis</groupId>
+                                                <artifactId>UmlGraph</artifactId>
+                                                <version>4.6</version>
+                                            </docletArtifact>
+                                            <additionalparam>
+                                                -inferrel
+                                                -inferdep -quiet
+                                                -hide
+                                                java.*
+                                                -collpackages
+                                                java.util.*
+                                                -qualify
+                                                -postfixpackage
+                                                -nodefontsize 9
+                                                -nodefontpackagesize 7
+                                            </additionalparam>
+                                        </configuration>
+                                    </plugin>
+                                    <plugin>
+                                        <groupId>org.codehaus.mojo</groupId>
+                                        <artifactId>rat-maven-plugin</artifactId>
+                                        <version>1.0-alpha-3</version>
+                                        <configuration>
+                                            <includes>
+                                                <include>pom.xml</include>
+                                                <include>src/**</include>
+                                            </includes>
+                                            <excludes>
+                                                <exclude>**/*LICENSE.txt</exclude>
+                                                <exclude>**/*MANIFEST.MF</exclude>
+                                            </excludes>
+                                        </configuration>
+                                    </plugin>
+                                    <plugin>
+                                        <groupId>org.codehaus.mojo</groupId>
+                                        <artifactId>emma-maven-plugin</artifactId>
+                                        <version>1.0-alpha-3</version>
+                                    </plugin>
+                                </reportingPlugins>
+                            </configuration>
+                        </plugin>
+                    </plugins>
+                </pluginManagement>
+                <plugins>
+                    <plugin>
+                        <artifactId>maven-site-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>attach-descriptor</id>
+                                <goals>
+                                    <goal>attach-descriptor</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+
 </project>

Added: tiles/framework/trunk/tiles-autotag/src/site/site.xml
URL: http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-autotag/src/site/site.xml?rev=1162068&view=auto
==============================================================================
--- tiles/framework/trunk/tiles-autotag/src/site/site.xml (added)
+++ tiles/framework/trunk/tiles-autotag/src/site/site.xml Fri Aug 26 11:35:47 2011
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+/*
+ * $Id: site.xml 1081442 2011-03-14 16:21:08Z apetrelli $
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+-->
+<project name="Apache - Tiles Autotags">
+    <bannerLeft>
+        <name>Apache Software Foundation</name>
+        <src>http://www.apache.org/images/asf-logo.gif</src>
+        <href>http://www.apache.org</href>
+    </bannerLeft>
+    <bannerRight>
+        <name>Apache Tiles&#8482;</name>
+        <src>http://tiles.apache.org/images/logo.png</src>
+        <href>http://tiles.apache.org</href>
+    </bannerRight>
+    <body>
+
+        <links>
+            <item name="Apache" href="http://www.apache.org" />
+            <item name="Tiles" href="http://tiles.apache.org" />
+        </links>
+
+
+        <menu name="Apache Tiles&#8482;">
+            <item
+                   name="Tiles Home"
+                   href="../index.html"/>
+            <item
+                   name="Tiles Autotags"
+                   href="./index.html"/>
+        </menu>
+        <menu name="Reference">
+            <item
+                    name="Javadoc"
+                    href="apidocs/index.html"/>
+        </menu>
+
+        <menu name="Developers">
+            <item
+                    name="Building"
+                    href="/dev/building.html"/>
+            <item
+                    name="Snapshots"
+                    href="/dev/snapshots.html"/>
+            <item
+                    name="Release Process"
+                    href="/dev/release.html"/>
+            <item
+                    name="Selenium Testing"
+                    href="/selenium.html"/>
+        </menu>
+
+        <menu ref="modules" />
+        <menu ref="reports" />
+
+    </body>
+</project>

Added: tiles/framework/trunk/tiles-autotag/tiles-autotag-core-runtime/src/site/site.xml
URL: http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-autotag/tiles-autotag-core-runtime/src/site/site.xml?rev=1162068&view=auto
==============================================================================
--- tiles/framework/trunk/tiles-autotag/tiles-autotag-core-runtime/src/site/site.xml (added)
+++ tiles/framework/trunk/tiles-autotag/tiles-autotag-core-runtime/src/site/site.xml Fri Aug 26 11:35:47 2011
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+/*
+ * $Id: site.xml 1081442 2011-03-14 16:21:08Z apetrelli $
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+-->
+<project name="Apache - Tiles Autotags">
+    <bannerLeft>
+        <name>Apache Software Foundation</name>
+        <src>http://www.apache.org/images/asf-logo.gif</src>
+        <href>http://www.apache.org</href>
+    </bannerLeft>
+    <bannerRight>
+        <name>Apache Tiles&#8482;</name>
+        <src>http://tiles.apache.org/images/logo.png</src>
+        <href>http://tiles.apache.org</href>
+    </bannerRight>
+    <body>
+
+        <links>
+            <item name="Apache" href="http://www.apache.org" />
+            <item name="Tiles" href="http://tiles.apache.org" />
+        </links>
+
+
+        <menu name="Apache Tiles&#8482;">
+            <item
+                   name="Tiles Home"
+                   href="../../index.html"/>
+            <item
+                   name="Tiles Autotags"
+                   href="../index.html"/>
+        </menu>
+
+        <menu ref="modules" />
+        <menu ref="reports" />
+
+    </body>
+</project>

Added: tiles/framework/trunk/tiles-autotag/tiles-autotag-core/src/site/site.xml
URL: http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-autotag/tiles-autotag-core/src/site/site.xml?rev=1162068&view=auto
==============================================================================
--- tiles/framework/trunk/tiles-autotag/tiles-autotag-core/src/site/site.xml (added)
+++ tiles/framework/trunk/tiles-autotag/tiles-autotag-core/src/site/site.xml Fri Aug 26 11:35:47 2011
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+/*
+ * $Id: site.xml 1081442 2011-03-14 16:21:08Z apetrelli $
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+-->
+<project name="Apache - Tiles Autotags">
+    <bannerLeft>
+        <name>Apache Software Foundation</name>
+        <src>http://www.apache.org/images/asf-logo.gif</src>
+        <href>http://www.apache.org</href>
+    </bannerLeft>
+    <bannerRight>
+        <name>Apache Tiles&#8482;</name>
+        <src>http://tiles.apache.org/images/logo.png</src>
+        <href>http://tiles.apache.org</href>
+    </bannerRight>
+    <body>
+
+        <links>
+            <item name="Apache" href="http://www.apache.org" />
+            <item name="Tiles" href="http://tiles.apache.org" />
+        </links>
+
+
+        <menu name="Apache Tiles&#8482;">
+            <item
+                   name="Tiles Home"
+                   href="../../index.html"/>
+            <item
+                   name="Tiles Autotags"
+                   href="../index.html"/>
+        </menu>
+
+        <menu ref="modules" />
+        <menu ref="reports" />
+
+    </body>
+</project>

Added: tiles/framework/trunk/tiles-autotag/tiles-autotag-freemarker-runtime/src/site/site.xml
URL: http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-autotag/tiles-autotag-freemarker-runtime/src/site/site.xml?rev=1162068&view=auto
==============================================================================
--- tiles/framework/trunk/tiles-autotag/tiles-autotag-freemarker-runtime/src/site/site.xml (added)
+++ tiles/framework/trunk/tiles-autotag/tiles-autotag-freemarker-runtime/src/site/site.xml Fri Aug 26 11:35:47 2011
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+/*
+ * $Id: site.xml 1081442 2011-03-14 16:21:08Z apetrelli $
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+-->
+<project name="Apache - Tiles Autotags">
+    <bannerLeft>
+        <name>Apache Software Foundation</name>
+        <src>http://www.apache.org/images/asf-logo.gif</src>
+        <href>http://www.apache.org</href>
+    </bannerLeft>
+    <bannerRight>
+        <name>Apache Tiles&#8482;</name>
+        <src>http://tiles.apache.org/images/logo.png</src>
+        <href>http://tiles.apache.org</href>
+    </bannerRight>
+    <body>
+
+        <links>
+            <item name="Apache" href="http://www.apache.org" />
+            <item name="Tiles" href="http://tiles.apache.org" />
+        </links>
+
+
+        <menu name="Apache Tiles&#8482;">
+            <item
+                   name="Tiles Home"
+                   href="../../index.html"/>
+            <item
+                   name="Tiles Autotags"
+                   href="../index.html"/>
+        </menu>
+
+        <menu ref="modules" />
+        <menu ref="reports" />
+
+    </body>
+</project>

Added: tiles/framework/trunk/tiles-autotag/tiles-autotag-freemarker/src/site/site.xml
URL: http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-autotag/tiles-autotag-freemarker/src/site/site.xml?rev=1162068&view=auto
==============================================================================
--- tiles/framework/trunk/tiles-autotag/tiles-autotag-freemarker/src/site/site.xml (added)
+++ tiles/framework/trunk/tiles-autotag/tiles-autotag-freemarker/src/site/site.xml Fri Aug 26 11:35:47 2011
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+/*
+ * $Id: site.xml 1081442 2011-03-14 16:21:08Z apetrelli $
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+-->
+<project name="Apache - Tiles Autotags">
+    <bannerLeft>
+        <name>Apache Software Foundation</name>
+        <src>http://www.apache.org/images/asf-logo.gif</src>
+        <href>http://www.apache.org</href>
+    </bannerLeft>
+    <bannerRight>
+        <name>Apache Tiles&#8482;</name>
+        <src>http://tiles.apache.org/images/logo.png</src>
+        <href>http://tiles.apache.org</href>
+    </bannerRight>
+    <body>
+
+        <links>
+            <item name="Apache" href="http://www.apache.org" />
+            <item name="Tiles" href="http://tiles.apache.org" />
+        </links>
+
+
+        <menu name="Apache Tiles&#8482;">
+            <item
+                   name="Tiles Home"
+                   href="../../index.html"/>
+            <item
+                   name="Tiles Autotags"
+                   href="../index.html"/>
+        </menu>
+
+        <menu ref="modules" />
+        <menu ref="reports" />
+
+    </body>
+</project>

Added: tiles/framework/trunk/tiles-autotag/tiles-autotag-jsp-runtime/src/site/site.xml
URL: http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-autotag/tiles-autotag-jsp-runtime/src/site/site.xml?rev=1162068&view=auto
==============================================================================
--- tiles/framework/trunk/tiles-autotag/tiles-autotag-jsp-runtime/src/site/site.xml (added)
+++ tiles/framework/trunk/tiles-autotag/tiles-autotag-jsp-runtime/src/site/site.xml Fri Aug 26 11:35:47 2011
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+/*
+ * $Id: site.xml 1081442 2011-03-14 16:21:08Z apetrelli $
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+-->
+<project name="Apache - Tiles Autotags">
+    <bannerLeft>
+        <name>Apache Software Foundation</name>
+        <src>http://www.apache.org/images/asf-logo.gif</src>
+        <href>http://www.apache.org</href>
+    </bannerLeft>
+    <bannerRight>
+        <name>Apache Tiles&#8482;</name>
+        <src>http://tiles.apache.org/images/logo.png</src>
+        <href>http://tiles.apache.org</href>
+    </bannerRight>
+    <body>
+
+        <links>
+            <item name="Apache" href="http://www.apache.org" />
+            <item name="Tiles" href="http://tiles.apache.org" />
+        </links>
+
+
+        <menu name="Apache Tiles&#8482;">
+            <item
+                   name="Tiles Home"
+                   href="../../index.html"/>
+            <item
+                   name="Tiles Autotags"
+                   href="../index.html"/>
+        </menu>
+
+        <menu ref="modules" />
+        <menu ref="reports" />
+
+    </body>
+</project>

Added: tiles/framework/trunk/tiles-autotag/tiles-autotag-jsp/src/site/site.xml
URL: http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-autotag/tiles-autotag-jsp/src/site/site.xml?rev=1162068&view=auto
==============================================================================
--- tiles/framework/trunk/tiles-autotag/tiles-autotag-jsp/src/site/site.xml (added)
+++ tiles/framework/trunk/tiles-autotag/tiles-autotag-jsp/src/site/site.xml Fri Aug 26 11:35:47 2011
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+/*
+ * $Id: site.xml 1081442 2011-03-14 16:21:08Z apetrelli $
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+-->
+<project name="Apache - Tiles Autotags">
+    <bannerLeft>
+        <name>Apache Software Foundation</name>
+        <src>http://www.apache.org/images/asf-logo.gif</src>
+        <href>http://www.apache.org</href>
+    </bannerLeft>
+    <bannerRight>
+        <name>Apache Tiles&#8482;</name>
+        <src>http://tiles.apache.org/images/logo.png</src>
+        <href>http://tiles.apache.org</href>
+    </bannerRight>
+    <body>
+
+        <links>
+            <item name="Apache" href="http://www.apache.org" />
+            <item name="Tiles" href="http://tiles.apache.org" />
+        </links>
+
+
+        <menu name="Apache Tiles&#8482;">
+            <item
+                   name="Tiles Home"
+                   href="../../index.html"/>
+            <item
+                   name="Tiles Autotags"
+                   href="../index.html"/>
+        </menu>
+
+        <menu ref="modules" />
+        <menu ref="reports" />
+
+    </body>
+</project>

Added: tiles/framework/trunk/tiles-autotag/tiles-autotag-velocity-runtime/src/site/site.xml
URL: http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-autotag/tiles-autotag-velocity-runtime/src/site/site.xml?rev=1162068&view=auto
==============================================================================
--- tiles/framework/trunk/tiles-autotag/tiles-autotag-velocity-runtime/src/site/site.xml (added)
+++ tiles/framework/trunk/tiles-autotag/tiles-autotag-velocity-runtime/src/site/site.xml Fri Aug 26 11:35:47 2011
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+/*
+ * $Id: site.xml 1081442 2011-03-14 16:21:08Z apetrelli $
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+-->
+<project name="Apache - Tiles Autotags">
+    <bannerLeft>
+        <name>Apache Software Foundation</name>
+        <src>http://www.apache.org/images/asf-logo.gif</src>
+        <href>http://www.apache.org</href>
+    </bannerLeft>
+    <bannerRight>
+        <name>Apache Tiles&#8482;</name>
+        <src>http://tiles.apache.org/images/logo.png</src>
+        <href>http://tiles.apache.org</href>
+    </bannerRight>
+    <body>
+
+        <links>
+            <item name="Apache" href="http://www.apache.org" />
+            <item name="Tiles" href="http://tiles.apache.org" />
+        </links>
+
+
+        <menu name="Apache Tiles&#8482;">
+            <item
+                   name="Tiles Home"
+                   href="../../index.html"/>
+            <item
+                   name="Tiles Autotags"
+                   href="../index.html"/>
+        </menu>
+
+        <menu ref="modules" />
+        <menu ref="reports" />
+
+    </body>
+</project>

Added: tiles/framework/trunk/tiles-autotag/tiles-autotag-velocity/src/site/site.xml
URL: http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-autotag/tiles-autotag-velocity/src/site/site.xml?rev=1162068&view=auto
==============================================================================
--- tiles/framework/trunk/tiles-autotag/tiles-autotag-velocity/src/site/site.xml (added)
+++ tiles/framework/trunk/tiles-autotag/tiles-autotag-velocity/src/site/site.xml Fri Aug 26 11:35:47 2011
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+/*
+ * $Id: site.xml 1081442 2011-03-14 16:21:08Z apetrelli $
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+-->
+<project name="Apache - Tiles Autotags">
+    <bannerLeft>
+        <name>Apache Software Foundation</name>
+        <src>http://www.apache.org/images/asf-logo.gif</src>
+        <href>http://www.apache.org</href>
+    </bannerLeft>
+    <bannerRight>
+        <name>Apache Tiles&#8482;</name>
+        <src>http://tiles.apache.org/images/logo.png</src>
+        <href>http://tiles.apache.org</href>
+    </bannerRight>
+    <body>
+
+        <links>
+            <item name="Apache" href="http://www.apache.org" />
+            <item name="Tiles" href="http://tiles.apache.org" />
+        </links>
+
+
+        <menu name="Apache Tiles&#8482;">
+            <item
+                   name="Tiles Home"
+                   href="../../index.html"/>
+            <item
+                   name="Tiles Autotags"
+                   href="../index.html"/>
+        </menu>
+
+        <menu ref="modules" />
+        <menu ref="reports" />
+
+    </body>
+</project>

Modified: tiles/framework/trunk/tiles-eval/pom.xml
URL: http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-eval/pom.xml?rev=1162068&r1=1162067&r2=1162068&view=diff
==============================================================================
--- tiles/framework/trunk/tiles-eval/pom.xml (original)
+++ tiles/framework/trunk/tiles-eval/pom.xml Fri Aug 26 11:35:47 2011
@@ -36,4 +36,246 @@
             <url>scp://people.apache.org/www/tiles.apache.org/eval</url>
         </site>
     </distributionManagement>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-project-info-reports-plugin</artifactId>
+            </plugin>
+            <plugin>
+                <artifactId>maven-surefire-report-plugin</artifactId>
+            </plugin>
+            <plugin>
+                <artifactId>maven-checkstyle-plugin</artifactId>
+                <configuration>
+                    <configLocation>http://svn.eu.apache.org/repos/asf/tiles/maven/trunk/build/tiles_checks_v5.xml
+                    </configLocation>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>jxr-maven-plugin</artifactId>
+            </plugin>
+            <plugin>
+                <artifactId>maven-pmd-plugin</artifactId>
+                <configuration>
+                  <targetJdk>1.5</targetJdk>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <version>2.7</version>
+                <reportSets>
+                    <reportSet>
+                        <id>aggregated</id>
+                        <configuration>
+                            <excludePackageNames>org.apache.tiles.test</excludePackageNames>
+                            <links>
+                                <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
+                                <link>http://java.sun.com/j2ee/sdk_1.2.1/techdocs/api</link>
+                                <link>http://commons.apache.org/chain/apidocs</link>
+                                <link>http://commons.apache.org/digester/commons-digester-1.6/docs/api</link>
+                                <link>http://commons.apache.org/logging/commons-logging-1.1/apidocs</link>
+                            </links>
+                            <doclet>gr.spinellis.umlgraph.doclet.UmlGraphDoc</doclet>
+                            <docletArtifact>
+                                <groupId>gr.spinellis</groupId>
+                                <artifactId>UmlGraph</artifactId>
+                                <version>4.6</version>
+                            </docletArtifact>
+                            <additionalparam>
+                                -inferrel -inferdep -quiet -hide java.*
+                                -collpackages java.util.* -qualify
+                                -postfixpackage -nodefontsize 9
+                                -nodefontpackagesize 7
+                            </additionalparam>
+                        </configuration>
+                        <reports>
+                            <report>aggregate</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>rat-maven-plugin</artifactId>
+                <version>1.0-alpha-3</version>
+                <configuration>
+                    <includes>
+                        <include>pom.xml</include>
+                        <include>src/**</include>
+                    </includes>
+                    <excludes>
+                        <exclude>**/*LICENSE.txt</exclude>
+                        <exclude>**/*MANIFEST.MF</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>emma-maven-plugin</artifactId>
+                <version>1.0-alpha-3</version>
+            </plugin>
+        </plugins>
+    </reporting>
+
+    <profiles>
+        <profile>
+            <id>apache-release</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <artifactId>maven-install-plugin</artifactId>
+                        <configuration>
+                            <createChecksum>true</createChecksum>
+                        </configuration>
+                    </plugin>
+                    <plugin>
+                        <groupId>org.codehaus.mojo</groupId>
+                        <artifactId>rat-maven-plugin</artifactId>
+                        <version>1.0-alpha-3</version>
+                        <executions>
+                            <execution>
+                                <phase>verify</phase>
+                                <goals>
+                                    <goal>check</goal>
+                                </goals>
+                                <configuration>
+                                    <addDefaultLicenseMatchers>false</addDefaultLicenseMatchers>
+                                    <licenseMatchers>
+                                        <classNames>
+                                            <className>rat.analysis.license.ApacheSoftwareLicense20</className>
+                                        </classNames>
+                                    </licenseMatchers>
+                                    <includes>
+                                        <include>pom.xml</include>
+                                        <include>src/**</include>
+                                    </includes>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+        <profile>
+            <id>maven-3</id>
+            <activation>
+                <file>
+                    <exists>${basedir}</exists>
+                </file>
+            </activation>
+            <build>
+                <pluginManagement>
+                    <plugins>
+                        <plugin>
+                            <groupId>org.apache.maven.plugins</groupId>
+                            <artifactId>maven-site-plugin</artifactId>
+                            <version>3.0-beta-3</version>
+                            <configuration>
+                                <reportingPlugins>
+                                    <plugin>
+                                        <groupId>org.apache.maven.plugins</groupId>
+                                        <artifactId>maven-project-info-reports-plugin</artifactId>
+                                    </plugin>
+                                    <plugin>
+                                        <artifactId>maven-surefire-report-plugin</artifactId>
+                                    </plugin>
+                                    <plugin>
+                                        <artifactId>maven-checkstyle-plugin</artifactId>
+                                        <configuration>
+                                            <configLocation>http://svn.eu.apache.org/repos/asf/tiles/maven/trunk/build/tiles_checks_v5.xml
+                                            </configLocation>
+                                        </configuration>
+                                    </plugin>
+                                    <plugin>
+                                        <groupId>org.codehaus.mojo</groupId>
+                                        <artifactId>jxr-maven-plugin</artifactId>
+                                    </plugin>
+                                    <plugin>
+                                        <artifactId>maven-pmd-plugin</artifactId>
+                                        <configuration>
+                                            <targetJdk>1.5</targetJdk>
+                                        </configuration>
+                                    </plugin>
+                                    <plugin>
+                                        <groupId>org.apache.maven.plugins</groupId>
+                                        <artifactId>maven-javadoc-plugin</artifactId>
+                                        <version>2.7</version>
+                                        <reports>
+                                            <report>aggregate</report>
+                                        </reports>
+                                        <configuration>
+                                            <excludePackageNames>org.apache.tiles.test</excludePackageNames>
+                                            <links>
+                                                <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
+                                                <link>http://java.sun.com/j2ee/sdk_1.2.1/techdocs/api</link>
+                                                <link>http://commons.apache.org/chain/apidocs</link>
+                                                <link>http://commons.apache.org/digester/commons-digester-1.6/docs/api</link>
+                                                <link>http://commons.apache.org/logging/commons-logging-1.1/apidocs</link>
+                                            </links>
+                                            <doclet>gr.spinellis.umlgraph.doclet.UmlGraphDoc</doclet>
+                                            <docletArtifact>
+                                                <groupId>gr.spinellis</groupId>
+                                                <artifactId>UmlGraph</artifactId>
+                                                <version>4.6</version>
+                                            </docletArtifact>
+                                            <additionalparam>
+                                                -inferrel
+                                                -inferdep -quiet
+                                                -hide
+                                                java.*
+                                                -collpackages
+                                                java.util.*
+                                                -qualify
+                                                -postfixpackage
+                                                -nodefontsize 9
+                                                -nodefontpackagesize 7
+                                            </additionalparam>
+                                        </configuration>
+                                    </plugin>
+                                    <plugin>
+                                        <groupId>org.codehaus.mojo</groupId>
+                                        <artifactId>rat-maven-plugin</artifactId>
+                                        <version>1.0-alpha-3</version>
+                                        <configuration>
+                                            <includes>
+                                                <include>pom.xml</include>
+                                                <include>src/**</include>
+                                            </includes>
+                                            <excludes>
+                                                <exclude>**/*LICENSE.txt</exclude>
+                                                <exclude>**/*MANIFEST.MF</exclude>
+                                            </excludes>
+                                        </configuration>
+                                    </plugin>
+                                    <plugin>
+                                        <groupId>org.codehaus.mojo</groupId>
+                                        <artifactId>emma-maven-plugin</artifactId>
+                                        <version>1.0-alpha-3</version>
+                                    </plugin>
+                                </reportingPlugins>
+                            </configuration>
+                        </plugin>
+                    </plugins>
+                </pluginManagement>
+                <plugins>
+                    <plugin>
+                        <artifactId>maven-site-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>attach-descriptor</id>
+                                <goals>
+                                    <goal>attach-descriptor</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+
 </project>
\ No newline at end of file

Added: tiles/framework/trunk/tiles-eval/src/site/site.xml
URL: http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-eval/src/site/site.xml?rev=1162068&view=auto
==============================================================================
--- tiles/framework/trunk/tiles-eval/src/site/site.xml (added)
+++ tiles/framework/trunk/tiles-eval/src/site/site.xml Fri Aug 26 11:35:47 2011
@@ -0,0 +1,77 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+/*
+ * $Id: site.xml 1081442 2011-03-14 16:21:08Z apetrelli $
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+-->
+<project name="Apache Tiles - Expression Evaluation Framework">
+    <bannerLeft>
+        <name>Apache Software Foundation</name>
+        <src>http://www.apache.org/images/asf-logo.gif</src>
+        <href>http://www.apache.org</href>
+    </bannerLeft>
+    <bannerRight>
+        <name>Apache Tiles&#8482;</name>
+        <src>http://tiles.apache.org/images/logo.png</src>
+        <href>http://tiles.apache.org</href>
+    </bannerRight>
+    <body>
+
+        <links>
+            <item name="Apache" href="http://www.apache.org" />
+            <item name="Tiles" href="http://tiles.apache.org" />
+        </links>
+
+
+        <menu name="Apache Tiles&#8482;">
+            <item
+                   name="Tiles Home"
+                   href="../index.html"/>
+            <item
+                   name="Expression Evaluation framework"
+                   href="./index.html"/>
+        </menu>
+        <menu name="Reference">
+            <item
+                    name="Javadoc"
+                    href="apidocs/index.html"/>
+        </menu>
+
+        <menu name="Developers">
+            <item
+                    name="Building"
+                    href="/dev/building.html"/>
+            <item
+                    name="Snapshots"
+                    href="/dev/snapshots.html"/>
+            <item
+                    name="Release Process"
+                    href="/dev/release.html"/>
+            <item
+                    name="Selenium Testing"
+                    href="/selenium.html"/>
+        </menu>
+
+
+        <menu ref="modules" />
+        <menu ref="reports" />
+
+    </body>
+</project>

Added: tiles/framework/trunk/tiles-eval/tiles-eval-api/src/site/site.xml
URL: http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-eval/tiles-eval-api/src/site/site.xml?rev=1162068&view=auto
==============================================================================
--- tiles/framework/trunk/tiles-eval/tiles-eval-api/src/site/site.xml (added)
+++ tiles/framework/trunk/tiles-eval/tiles-eval-api/src/site/site.xml Fri Aug 26 11:35:47 2011
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+/*
+ * $Id: site.xml 1081442 2011-03-14 16:21:08Z apetrelli $
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+-->
+<project name="Apache Tiles - Expression Evaluation Framework">
+    <bannerLeft>
+        <name>Apache Software Foundation</name>
+        <src>http://www.apache.org/images/asf-logo.gif</src>
+        <href>http://www.apache.org</href>
+    </bannerLeft>
+    <bannerRight>
+        <name>Apache Tiles&#8482;</name>
+        <src>http://tiles.apache.org/images/logo.png</src>
+        <href>http://tiles.apache.org</href>
+    </bannerRight>
+    <body>
+
+        <links>
+            <item name="Apache" href="http://www.apache.org" />
+            <item name="Tiles" href="http://tiles.apache.org" />
+        </links>
+
+
+        <menu name="Apache Tiles&#8482;">
+            <item
+                   name="Tiles Home"
+                   href="../../index.html"/>
+            <item
+                   name="Expression Evaluation framework"
+                   href="../index.html"/>
+        </menu>
+
+        <menu ref="modules" />
+        <menu ref="reports" />
+
+    </body>
+</project>

Modified: tiles/framework/trunk/tiles-request/pom.xml
URL: http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-request/pom.xml?rev=1162068&r1=1162067&r2=1162068&view=diff
==============================================================================
--- tiles/framework/trunk/tiles-request/pom.xml (original)
+++ tiles/framework/trunk/tiles-request/pom.xml Fri Aug 26 11:35:47 2011
@@ -261,7 +261,7 @@
                                     <plugin>
                                         <groupId>org.codehaus.mojo</groupId>
                                         <artifactId>emma-maven-plugin</artifactId>
-                                        <version>1.0-alpha-3-SNAPSHOT</version>
+                                        <version>1.0-alpha-3</version>
                                     </plugin>
                                 </reportingPlugins>
                             </configuration>