You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2011/06/02 00:34:14 UTC

svn commit: r1130327 [2/3] - in /myfaces/tomahawk/trunk: ./ assembly/ core/ core12/ core20/ examples/ examples/assembly/ examples/blank/ examples/simple/ examples/simple20/ examples/tiles/ examples/wap/ sandbox/ sandbox/core/ sandbox/core12/ sandbox/co...

Modified: myfaces/tomahawk/trunk/examples/simple20/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/examples/simple20/pom.xml?rev=1130327&r1=1130326&r2=1130327&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/examples/simple20/pom.xml (original)
+++ myfaces/tomahawk/trunk/examples/simple20/pom.xml Wed Jun  1 22:34:14 2011
@@ -1,209 +1,209 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.myfaces.tomahawk</groupId>
-        <artifactId>tomahawk-project</artifactId>
-        <version>1.1.11-SNAPSHOT</version>
-    </parent>
-    <scm>
-        <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tomahawk/trunk/examples/simple20</connection>
-        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tomahawk/trunk/examples/simple20</developerConnection>
-        <url>http://svn.apache.org/viewcvs.cgi/myfaces/tomahawk/trunk/examples/simple20</url>
-    </scm>   
-    <artifactId>myfaces-example-simple20</artifactId>
-    <packaging>war</packaging>
-    <name>Tomahawk Examples: Simple 2.0</name>
-        
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.myfaces.tomahawk</groupId>
-            <artifactId>tomahawk20</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
-            <scope>provided</scope>
-        </dependency>
-        <dependency>
-            <groupId>commons-logging</groupId>
-            <artifactId>commons-logging</artifactId>
-            <version>1.1.1</version>
-            <scope>compile</scope>
-        </dependency>
-        <dependency>
-            <groupId>log4j</groupId>
-            <artifactId>log4j</artifactId>
-            <version>1.2.13</version>
-            <scope>compile</scope>
-        </dependency>
-    </dependencies>
-    
-    <build>
-        <finalName>${artifactId}</finalName>
-
-        <resources>
-            <resource>
-                <directory>src/main/resources</directory>
-                <filtering>true</filtering>
-            </resource>
-            <resource>
-                <directory>src/main/java</directory>
-            </resource>
-        </resources>
-
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-compiler-plugin</artifactId>
-                <configuration>
-                  <source>1.5</source>
-                  <target>1.5</target>
-                </configuration>
-            </plugin>
-            <plugin>
-                <artifactId>maven-source-plugin</artifactId>
-                <executions>
-                    <execution>
-                        <id>attach-source</id>
-                        <goals>
-                            <goal>jar</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-            <plugin>
-                <groupId>org.mortbay.jetty</groupId>
-                <artifactId>maven-jetty-plugin</artifactId>
-                <version>6.1.22</version>
-                <configuration>
-                    <scanIntervalSeconds>10</scanIntervalSeconds>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-    <profiles>
-            <!-- To run the examples using MyFaces 2.0: -Djsf=20 -->
-        <profile>
-            <id>myfaces-2.0</id>
-            <activation>
-                <property>
-                    <name>!jsf</name>
-                </property>
-            </activation>
-            <dependencies>
-                <dependency>
-                    <groupId>org.apache.myfaces.core</groupId>
-                    <artifactId>myfaces-api</artifactId>
-                    <version>${myfaces-core20-version}</version>
-                </dependency>
-                <dependency>
-                    <groupId>org.apache.myfaces.core</groupId>
-                    <artifactId>myfaces-impl</artifactId>
-                    <version>${myfaces-core20-version}</version>
-                    <scope>runtime</scope>
-                </dependency>
-                <dependency>
-                    <groupId>javax.servlet</groupId>
-                    <artifactId>jstl</artifactId>
-                    <version>1.2</version>
-                </dependency>
-                <dependency>
-                    <groupId>taglibs</groupId>
-                    <artifactId>standard</artifactId>
-                    <version>1.1.2</version>
-                </dependency>
-                <dependency>
-                    <groupId>org.apache.geronimo.specs</groupId>
-                    <artifactId>geronimo-el_1.0_spec</artifactId>
-                    <scope>provided</scope>
-                </dependency>
-
-            </dependencies>
-
-            <properties>
-                <jsf_implementation>MyFaces 2.0</jsf_implementation>
-            </properties>
-        </profile>
-        
-        <!-- To use the examples using the Sun's JSF Reference Implementation 1.2 : -Djsf=ri12 -->
-        <profile>
-            <id>jsfri-2.0</id>
-            <activation>
-                <property>
-                    <name>jsf</name>
-                    <value>ri</value>
-                </property>
-            </activation>
-            <dependencies>
-                <dependency>
-                    <groupId>com.sun.faces</groupId>
-                    <artifactId>jsf-api</artifactId>
-                    <!-- version>2.0.2-b10</version -->
-                    <version>2.0.3</version>
-                </dependency>
-                <dependency>
-                    <groupId>com.sun.faces</groupId>
-                    <artifactId>jsf-impl</artifactId>
-                    <!-- version>2.0.2-b10</version -->
-                    <version>2.0.3</version>
-                    <scope>runtime</scope>
-                </dependency>
-                <dependency>
-                    <groupId>org.apache.geronimo.specs</groupId>
-                    <artifactId>geronimo-el_1.0_spec</artifactId>
-                    <scope>provided</scope>
-                </dependency>
-            </dependencies>
-
-            <properties>
-                <jsf_implementation>JSF-RI 2.0</jsf_implementation>
-            </properties>
-        </profile>
-    
-        <profile>
-            <id>generate-assembly</id>
-            <activation>
-              <property>
-                <name>performRelease</name>
-                <value>true</value>
-              </property>
-            </activation>
-            <build>        
-                <plugins>
-                    <plugin>
-                        <groupId>org.codehaus.mojo</groupId>
-                        <artifactId>dependency-maven-plugin</artifactId>
-                        <executions>
-                            <execution>
-                                <id>unpack-source</id>
-                                <phase>process-resources</phase>
-                                <goals>
-                                    <goal>unpack</goal>
-                                </goals>
-                                <configuration>
-                                    <artifactItems>
-                                        <artifactItem>
-                                            <groupId>org.apache.myfaces.tomahawk</groupId>
-                                            <artifactId>${artifactId}</artifactId>
-                                            <version>${project.version}</version>
-                                            <classifier>sources</classifier>
-                                        </artifactItem>
-                                        <artifactItem>
-                                            <groupId>org.apache.myfaces.tomahawk</groupId>
-                                            <artifactId>tomahawk20</artifactId>
-                                            <version>${project.version}</version>
-                                            <classifier>sources</classifier>
-                                        </artifactItem>
-                                    </artifactItems>
-                                    <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/src</outputDirectory>
-                                </configuration>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-    </profiles>
-</project>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.myfaces.tomahawk</groupId>
+        <artifactId>tomahawk-project</artifactId>
+        <version>1.1.11</version>
+    </parent>
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tomahawk/tags/tomahawk-project-1.1.11/examples/simple20</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tomahawk/tags/tomahawk-project-1.1.11/examples/simple20</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/myfaces/tomahawk/tags/tomahawk-project-1.1.11/examples/simple20</url>
+    </scm>   
+    <artifactId>myfaces-example-simple20</artifactId>
+    <packaging>war</packaging>
+    <name>Tomahawk Examples: Simple 2.0</name>
+        
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.myfaces.tomahawk</groupId>
+            <artifactId>tomahawk20</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+            <version>2.5</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+            <version>1.1.1</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <version>1.2.13</version>
+            <scope>compile</scope>
+        </dependency>
+    </dependencies>
+    
+    <build>
+        <finalName>${artifactId}</finalName>
+
+        <resources>
+            <resource>
+                <directory>src/main/resources</directory>
+                <filtering>true</filtering>
+            </resource>
+            <resource>
+                <directory>src/main/java</directory>
+            </resource>
+        </resources>
+
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                  <source>1.5</source>
+                  <target>1.5</target>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-source-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>attach-source</id>
+                        <goals>
+                            <goal>jar</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.mortbay.jetty</groupId>
+                <artifactId>maven-jetty-plugin</artifactId>
+                <version>6.1.22</version>
+                <configuration>
+                    <scanIntervalSeconds>10</scanIntervalSeconds>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+    <profiles>
+            <!-- To run the examples using MyFaces 2.0: -Djsf=20 -->
+        <profile>
+            <id>myfaces-2.0</id>
+            <activation>
+                <property>
+                    <name>!jsf</name>
+                </property>
+            </activation>
+            <dependencies>
+                <dependency>
+                    <groupId>org.apache.myfaces.core</groupId>
+                    <artifactId>myfaces-api</artifactId>
+                    <version>${myfaces-core20-version}</version>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.myfaces.core</groupId>
+                    <artifactId>myfaces-impl</artifactId>
+                    <version>${myfaces-core20-version}</version>
+                    <scope>runtime</scope>
+                </dependency>
+                <dependency>
+                    <groupId>javax.servlet</groupId>
+                    <artifactId>jstl</artifactId>
+                    <version>1.2</version>
+                </dependency>
+                <dependency>
+                    <groupId>taglibs</groupId>
+                    <artifactId>standard</artifactId>
+                    <version>1.1.2</version>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.geronimo.specs</groupId>
+                    <artifactId>geronimo-el_1.0_spec</artifactId>
+                    <scope>provided</scope>
+                </dependency>
+
+            </dependencies>
+
+            <properties>
+                <jsf_implementation>MyFaces 2.0</jsf_implementation>
+            </properties>
+        </profile>
+        
+        <!-- To use the examples using the Sun's JSF Reference Implementation 1.2 : -Djsf=ri12 -->
+        <profile>
+            <id>jsfri-2.0</id>
+            <activation>
+                <property>
+                    <name>jsf</name>
+                    <value>ri</value>
+                </property>
+            </activation>
+            <dependencies>
+                <dependency>
+                    <groupId>com.sun.faces</groupId>
+                    <artifactId>jsf-api</artifactId>
+                    <!-- version>2.0.2-b10</version -->
+                    <version>2.0.3</version>
+                </dependency>
+                <dependency>
+                    <groupId>com.sun.faces</groupId>
+                    <artifactId>jsf-impl</artifactId>
+                    <!-- version>2.0.2-b10</version -->
+                    <version>2.0.3</version>
+                    <scope>runtime</scope>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.geronimo.specs</groupId>
+                    <artifactId>geronimo-el_1.0_spec</artifactId>
+                    <scope>provided</scope>
+                </dependency>
+            </dependencies>
+
+            <properties>
+                <jsf_implementation>JSF-RI 2.0</jsf_implementation>
+            </properties>
+        </profile>
+    
+        <profile>
+            <id>generate-assembly</id>
+            <activation>
+              <property>
+                <name>performRelease</name>
+                <value>true</value>
+              </property>
+            </activation>
+            <build>        
+                <plugins>
+                    <plugin>
+                        <groupId>org.codehaus.mojo</groupId>
+                        <artifactId>dependency-maven-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>unpack-source</id>
+                                <phase>process-resources</phase>
+                                <goals>
+                                    <goal>unpack</goal>
+                                </goals>
+                                <configuration>
+                                    <artifactItems>
+                                        <artifactItem>
+                                            <groupId>org.apache.myfaces.tomahawk</groupId>
+                                            <artifactId>${artifactId}</artifactId>
+                                            <version>${project.version}</version>
+                                            <classifier>sources</classifier>
+                                        </artifactItem>
+                                        <artifactItem>
+                                            <groupId>org.apache.myfaces.tomahawk</groupId>
+                                            <artifactId>tomahawk20</artifactId>
+                                            <version>${project.version}</version>
+                                            <classifier>sources</classifier>
+                                        </artifactItem>
+                                    </artifactItems>
+                                    <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/src</outputDirectory>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+</project>

Modified: myfaces/tomahawk/trunk/examples/tiles/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/examples/tiles/pom.xml?rev=1130327&r1=1130326&r2=1130327&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/examples/tiles/pom.xml (original)
+++ myfaces/tomahawk/trunk/examples/tiles/pom.xml Wed Jun  1 22:34:14 2011
@@ -3,12 +3,12 @@
     <parent>
         <groupId>org.apache.myfaces.tomahawk</groupId>
         <artifactId>tomahawk-examples-project</artifactId>
-        <version>1.1.11-SNAPSHOT</version>
+        <version>1.1.11</version>
     </parent>
     <scm>
-        <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tomahawk/trunk/examples/tiles</connection>
-        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tomahawk/trunk/examples/tiles</developerConnection>
-        <url>http://svn.apache.org/viewcvs.cgi/myfaces/tomahawk/trunk/examples/tiles</url>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tomahawk/tags/tomahawk-project-1.1.11/examples/tiles</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tomahawk/tags/tomahawk-project-1.1.11/examples/tiles</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/myfaces/tomahawk/tags/tomahawk-project-1.1.11/examples/tiles</url>
     </scm>   
     <artifactId>myfaces-example-tiles</artifactId>
     <packaging>war</packaging>

Modified: myfaces/tomahawk/trunk/examples/wap/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/examples/wap/pom.xml?rev=1130327&r1=1130326&r2=1130327&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/examples/wap/pom.xml (original)
+++ myfaces/tomahawk/trunk/examples/wap/pom.xml Wed Jun  1 22:34:14 2011
@@ -3,12 +3,12 @@
     <parent>
         <groupId>org.apache.myfaces.tomahawk</groupId>
         <artifactId>tomahawk-examples-project</artifactId>
-        <version>1.1.11-SNAPSHOT</version>
+        <version>1.1.11</version>
     </parent>
     <scm>
-        <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tomahawk/trunk/examples/wap</connection>
-        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tomahawk/trunk/examples/wap</developerConnection>
-        <url>http://svn.apache.org/viewcvs.cgi/myfaces/tomahawk/trunk/examples/wap</url>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tomahawk/tags/tomahawk-project-1.1.11/examples/wap</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tomahawk/tags/tomahawk-project-1.1.11/examples/wap</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/myfaces/tomahawk/tags/tomahawk-project-1.1.11/examples/wap</url>
     </scm>   
     <artifactId>myfaces-example-wap</artifactId>
     <packaging>war</packaging>

Modified: myfaces/tomahawk/trunk/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/pom.xml?rev=1130327&r1=1130326&r2=1130327&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/pom.xml (original)
+++ myfaces/tomahawk/trunk/pom.xml Wed Jun  1 22:34:14 2011
@@ -13,7 +13,7 @@
   <packaging>pom</packaging>
   <name>Tomahawk Project</name>
   <url>http://myfaces.apache.org/tomahawk-project</url>
-  <version>1.1.11-SNAPSHOT</version>	 
+  <version>1.1.11</version>	 
   <description>
   Apache MyFaces Tomahawk is a sub-project of Apache MyFaces which provides an extensive sets
   of custom components for use in your JSF-projects. Additionally, Tomahawk includes many custom
@@ -21,9 +21,9 @@
   </description>
   
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tomahawk/trunk</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tomahawk/trunk</developerConnection>
-    <url>http://svn.apache.org/viewcvs.cgi/myfaces/tomahawk/trunk</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tomahawk/tags/tomahawk-project-1.1.11</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tomahawk/tags/tomahawk-project-1.1.11</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/myfaces/tomahawk/tags/tomahawk-project-1.1.11</url>
   </scm>  
 
   <issueManagement>

Modified: myfaces/tomahawk/trunk/sandbox/core/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/core/pom.xml?rev=1130327&r1=1130326&r2=1130327&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/core/pom.xml (original)
+++ myfaces/tomahawk/trunk/sandbox/core/pom.xml Wed Jun  1 22:34:14 2011
@@ -15,13 +15,13 @@
     <parent>
         <groupId>org.apache.myfaces.tomahawk</groupId>
         <artifactId>sandbox-project</artifactId>
-        <version>1.1.11-SNAPSHOT</version>
+        <version>1.1.11</version>
     </parent>
   
     <scm>
-        <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tomahawk/trunk/sandbox/core</connection>
-        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tomahawk/trunk/sandbox/core</developerConnection>
-        <url>http://svn.apache.org/viewcvs.cgi/myfaces/tomahawk/trunk/sandbox/core</url>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tomahawk/tags/tomahawk-project-1.1.11/sandbox/core</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tomahawk/tags/tomahawk-project-1.1.11/sandbox/core</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/myfaces/tomahawk/tags/tomahawk-project-1.1.11/sandbox/core</url>
     </scm>
 
     <dependencies>

Modified: myfaces/tomahawk/trunk/sandbox/core12/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/core12/pom.xml?rev=1130327&r1=1130326&r2=1130327&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/core12/pom.xml (original)
+++ myfaces/tomahawk/trunk/sandbox/core12/pom.xml Wed Jun  1 22:34:14 2011
@@ -12,13 +12,13 @@
     <parent>
         <groupId>org.apache.myfaces.tomahawk</groupId>
         <artifactId>sandbox-project</artifactId>
-        <version>1.1.11-SNAPSHOT</version>
+        <version>1.1.11</version>
     </parent>
   
     <scm>
-        <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tomahawk/trunk/sandbox/core</connection>
-        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tomahawk/trunk/sandbox/core</developerConnection>
-        <url>http://svn.apache.org/viewcvs.cgi/myfaces/tomahawk/trunk/sandbox/core</url>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tomahawk/tags/tomahawk-project-1.1.11/sandbox/core</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tomahawk/tags/tomahawk-project-1.1.11/sandbox/core</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/myfaces/tomahawk/tags/tomahawk-project-1.1.11/sandbox/core</url>
     </scm>
 
     <dependencies>

Modified: myfaces/tomahawk/trunk/sandbox/core20/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/core20/pom.xml?rev=1130327&r1=1130326&r2=1130327&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/core20/pom.xml (original)
+++ myfaces/tomahawk/trunk/sandbox/core20/pom.xml Wed Jun  1 22:34:14 2011
@@ -1,637 +1,637 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-
-    <modelVersion>4.0.0</modelVersion>
-
-    <artifactId>tomahawk-sandbox20</artifactId>
-    <packaging>jar</packaging>
-    <name>Sandbox Core 20</name>
-    <description>
-        Sandbox is a place to put new JSF 2.0 ideas (components, converters,
-        validators, ...). If the code is good enough, it could be promoted 
-        to tomahawk, myfaces commons or other MyFaces projects.
-    </description>
-
-    <parent>
-        <groupId>org.apache.myfaces.tomahawk</groupId>
-        <artifactId>sandbox-project</artifactId>
-        <version>1.1.11-SNAPSHOT</version>
-    </parent>
-  
-    <scm>
-        <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tomahawk/trunk/sandbox/core</connection>
-        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tomahawk/trunk/sandbox/core</developerConnection>
-        <url>http://svn.apache.org/viewcvs.cgi/myfaces/tomahawk/trunk/sandbox/core</url>
-    </scm>
-
-    <dependencies>
-  
-        <!-- compile -->
-
-        <dependency>
-            <groupId>org.apache.myfaces.tomahawk</groupId>
-            <artifactId>tomahawk20</artifactId>
-            <version>${project.version}</version>
-            <scope>compile</scope>
-        </dependency>
-
-        <!-- 
-        <dependency>
-            <groupId>org.springframework</groupId>
-            <artifactId>spring</artifactId>
-            <scope>compile</scope>
-        </dependency>
-         -->
-
-        <dependency>
-            <groupId>commons-logging</groupId>
-            <artifactId>commons-logging</artifactId>
-            <scope>compile</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>commons-validator</groupId>
-            <artifactId>commons-validator</artifactId>
-            <scope>compile</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>commons-collections</groupId>
-            <artifactId>commons-collections</artifactId>
-            <scope>compile</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>javax.validation</groupId>
-            <artifactId>validation-api</artifactId>
-            <version>1.0.0.GA</version>
-            <scope>provided</scope>
-        </dependency>
-
-        <!-- 
-        <dependency>
-            <groupId>javax.el</groupId>
-            <artifactId>el-api</artifactId>
-            <version>2.1.2-b05</version>
-            <scope>provided</scope>
-        </dependency>
-        -->
-        <dependency>
-            <groupId>org.apache.geronimo.specs</groupId>
-            <artifactId>geronimo-el_2.2_spec</artifactId>
-            <version>1.0.1</version>
-            <scope>provided</scope>
-        </dependency>
-
-        <!-- 
-        <dependency>
-            <groupId>commons-el</groupId>
-            <artifactId>commons-el</artifactId>
-            <scope>compile</scope>
-        </dependency>
-         -->
-
-        <!-- 
-        <dependency>
-            <groupId>commons-codec</groupId>
-            <artifactId>commons-codec</artifactId>
-            <scope>compile</scope>
-        </dependency>
-         -->
-
-        <dependency>
-            <groupId>commons-lang</groupId>
-            <artifactId>commons-lang</artifactId>
-            <scope>compile</scope>
-        </dependency>
-
-        <!-- 
-        <dependency>
-            <groupId>portlet-api</groupId>
-            <artifactId>portlet-api</artifactId>
-            <version>1.0</version>
-            <scope>provided</scope>
-        </dependency>
-         -->
-         
-        <!-- 
-        <dependency>
-            <groupId>poi</groupId>
-            <artifactId>poi</artifactId>
-            <scope>compile</scope>
-        </dependency>
-         -->
-
-        <!-- provided dependencies -->
-
-        <dependency>
-            <groupId>org.apache.myfaces.core</groupId>
-            <artifactId>myfaces-api</artifactId>
-	    <version>${myfaces-core20-version}</version>
-            <scope>provided</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>javax.servlet.jsp</groupId>
-            <artifactId>jsp-api</artifactId>
-            <version>2.1</version>
-            <scope>provided</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
-            <scope>provided</scope>
-        </dependency>
-<!-- 
-        <dependency>
-            <groupId>org.freemarker</groupId>
-            <artifactId>freemarker</artifactId>
-            <scope>compile</scope>
-        </dependency>
-         -->
-        
-        <dependency>
-            <groupId>org.apache.myfaces.buildtools</groupId>
-            <artifactId>myfaces-builder-annotations</artifactId> 
-            <version>${myfaces-builder-annotations-version}</version>
-            <scope>provided</scope>
-        </dependency>
-<!-- 
-    <dependency>
-      <groupId>com.sun.facelets</groupId>
-      <artifactId>jsf-facelets</artifactId>
-      <scope>provided</scope>
-    </dependency>
- -->
- 
-     <!-- 
-     <dependency>
-      <groupId>com.lowagie</groupId>
-      <artifactId>itext</artifactId>
-    </dependency>
-     -->
-
-        <!-- test dependencies -->
-
-        <dependency>
-            <groupId>org.apache.myfaces.core</groupId>
-            <artifactId>myfaces-impl</artifactId>
-            <version>${myfaces-core20-version}</version>
-            <scope>test</scope>
-        </dependency>
-        
-        <dependency>
-          <groupId>maven-taglib</groupId>
-          <artifactId>maven-taglib-plugin</artifactId>
-          <scope>test</scope>
-        </dependency>
-        
-        <dependency>
-          <groupId>org.apache.myfaces.test</groupId>
-          <artifactId>myfaces-test20</artifactId>
-          <scope>test</scope>
-        </dependency>
-
-    </dependencies>
-
-    <build>
-        <resources>
-            <resource>
-                <directory>src/main/resources</directory>
-                <excludes>
-                   <exclude>**/*.vm</exclude>
-                </excludes>
-            </resource>
-            <!-- 
-            <resource>
-                <directory>target/tomahawk12_resources</directory>
-            </resource>
-             -->
-        </resources>
-        <plugins>
-            <plugin>
-              <groupId>org.codehaus.mojo</groupId>
-              <artifactId>build-helper-maven-plugin</artifactId>
-              <executions>
-                  <execution>
-                      <id>add-source</id>
-                      <phase>generate-sources</phase>
-                      <!-- <phase>process-sources</phase> -->
-                      <goals>
-                          <goal>add-source</goal>
-                      </goals>
-                      <configuration>
-                          <sources>
-                              <source>
-                                  ${project.build.directory}/tomahawk12_sources
-                              </source>
-                          </sources>
-                      </configuration>
-                  </execution>
-              </executions>
-            </plugin>
-
-            <plugin>
-              <groupId>org.apache.myfaces.buildtools</groupId>
-              <artifactId>myfaces-builder-plugin</artifactId>
-              <version>${myfaces-builder-plugin-version}</version>
-              <executions>
-                <!--
-                <execution>
-                  <id>unpack-tomahawk</id>
-                  <phase>generate-sources</phase>
-                  <goals>
-                    <goal>unpack</goal>
-                  </goals>
-                  <configuration>
-                    <scanModel>true</scanModel>
-                    <artifactItems>
-                      <artifactItem>
-                        <groupId>org.apache.myfaces.tomahawk</groupId>
-                        <artifactId>tomahawk-sandbox12</artifactId>
-                        <version>${pom.version}</version>
-                        <classifier>sources</classifier>                   
-                        <outputDirectory>${project.build.directory}/tomahawk12_sources</outputDirectory>
-                        <includes>**/*.java</includes>
-                        <excludes>
-                        **/*.class,**/META-INF/**,
-                        org/apache/myfaces/shared_tomahawk/**/*.java,
-                        org/apache/myfaces/custom/ajaxchildcombobox/**/*.java,
-                        org/apache/myfaces/custom/dialog/**/*.java,
-                        org/apache/myfaces/custom/dojoaddresource/**/*.java,
-                        org/apache/myfaces/custom/dojolayouts/**/*.java,
-                        org/apache/myfaces/custom/effect/**/*.java,
-                        org/apache/myfaces/custom/fisheye/**/*.java,
-                        org/apache/myfaces/custom/focus/**/*.java,
-                        org/apache/myfaces/custom/imageloop/**/*.java,
-                        org/apache/myfaces/custom/ppr/**/*.java,
-                        org/apache/myfaces/custom/statechangednotifier/**/*.java,
-                        org/apache/myfaces/custom/submitOnEvent/**/*.java,
-                        org/apache/myfaces/custom/suggestajax/**/*.java,
-                        org/apache/myfaces/custom/table/**/*.java,
-                        org/apache/myfaces/custom/timednotifier/**/*.java,
-                        org/apache/myfaces/convert/ex/**/*.java,
-                        org/apache/myfaces/custom/ajax/**/*.java,
-                        org/apache/myfaces/custom/autoupdatedatatable/**/*.java,
-                        org/apache/myfaces/custom/clientvalidation/**/*.java,
-                        org/apache/myfaces/custom/comparetovalidator/**/*.java,
-                        org/apache/myfaces/custom/conversation/**/*.java,
-                        org/apache/myfaces/custom/convertboolean/**/*.java,
-                        org/apache/myfaces/custom/convertDateTime/**/*.java,
-                        org/apache/myfaces/custom/convertNumber/**/*.java,
-                        org/apache/myfaces/custom/csvvalidator/**/*.java,
-                        org/apache/myfaces/custom/dynamicResources/**/*.java,
-                        org/apache/myfaces/custom/exporter/**/*.java,
-                        org/apache/myfaces/custom/form/**/*.java,
-                        org/apache/myfaces/custom/globalId/**/*.java,
-                        org/apache/myfaces/custom/graphicimagedynamic/**/*.java,
-                        org/apache/myfaces/custom/inputAjax/**/*.java,
-                        org/apache/myfaces/custom/isbnvalidator/**/*.java,
-                        org/apache/myfaces/custom/outputlinkdynamic/**/*.java,
-                        org/apache/myfaces/custom/redirectTracker/**/*.java,
-                        org/apache/myfaces/custom/renderOne/**/*.java,
-                        org/apache/myfaces/custom/requestParameterProvider/**/*.java,
-                        org/apache/myfaces/custom/scope/**/*.java,
-                        org/apache/myfaces/custom/security/**/*.java,
-                        org/apache/myfaces/custom/suggest/**/*.java,
-                        org/apache/myfaces/custom/urlvalidator/**/*.java,
-                        org/apache/myfaces/custom/util/**/*.java,
-                        org/apache/myfaces/renderkit/**/*.java,
-                        org/apache/myfaces/tomahawk/util/**/*.java,
-                        org/apache/myfaces/validator/ex/**/*.java
-                        </excludes>
-                      </artifactItem>
-                    </artifactItems>
-                  </configuration>
-                </execution>
-                <execution>
-                  <id>unpack-tomahawk-resources</id>
-                  <phase>generate-resources</phase>
-                  <goals>
-                    <goal>unpack</goal>
-                  </goals>
-                  <configuration>
-                    <baseDirectory1>${basedir}/src/main/resources</baseDirectory1>
-                    <artifactItems>
-                      <artifactItem>
-                        <groupId>org.apache.myfaces.tomahawk</groupId>
-                        <artifactId>tomahawk-sandbox12</artifactId>
-                        <version>${pom.version}</version>                                   
-                        <outputDirectory>${project.build.directory}/tomahawk12_resources</outputDirectory>
-                        <excludes>**/*.class,**/META-INF/**,
-                        org/apache/myfaces/custom/ajaxchildcombobox/**,
-                        org/apache/myfaces/custom/dialog/**,
-                        org/apache/myfaces/custom/dojoaddresource/**,
-                        org/apache/myfaces/custom/dojolayouts/**,
-                        org/apache/myfaces/custom/effect/**,
-                        org/apache/myfaces/custom/fisheye/**,
-                        org/apache/myfaces/custom/focus/**,
-                        org/apache/myfaces/custom/imageloop/**,
-                        org/apache/myfaces/custom/ppr/**,
-                        org/apache/myfaces/custom/statechangednotifier/**,
-                        org/apache/myfaces/custom/submitOnEvent/**,
-                        org/apache/myfaces/custom/suggestajax/**,
-                        org/apache/myfaces/custom/table/**,
-                        org/apache/myfaces/custom/timednotifier/**
-                        </excludes>
-                      </artifactItem>
-                    </artifactItems>
-                  </configuration>
-                </execution>
-                -->
-                <execution>
-                  <!-- A hierarchy of different tag classes must be created, 
-                  because this classes are not part of the public api. The
-                  generation of all html package is the same. Please note that
-                  we need only a subset -->
-                  <configuration>
-                      <replacePackagePrefixTagFrom>org.apache.myfaces.taglib</replacePackagePrefixTagFrom>
-                      <replacePackagePrefixTagTo>org.apache.myfaces.shared_tomahawk.taglib</replacePackagePrefixTagTo>
-                  </configuration>
-                  <goals>
-                    <goal>build-metadata</goal>
-                  </goals>
-                </execution>
-                <execution>
-                  <id>makefacesconfig</id>
-                  <configuration>
-                      <templateFile>faces-config20.vm</templateFile>
-                      <xmlFile>META-INF/faces-config.xml</xmlFile>
-                  </configuration>
-                  <goals>
-                      <goal>make-config</goal>
-                  </goals>
-                </execution>
-                <execution>
-                    <id>makecomp</id>
-                    <goals>
-                      <goal>make-components</goal>
-                    </goals>
-                    <configuration>
-                       <jsfVersion>20</jsfVersion>
-                       <templateComponentName>componentClass20.vm</templateComponentName>
-                       <mainSourceDirectory2>${project.build.directory}/tomahawk12_sources</mainSourceDirectory2>
-                    </configuration>
-                </execution>
-                <execution>
-                    <id>makeval</id>
-                    <goals>
-                      <goal>make-validators</goal>
-                    </goals>
-                    <configuration>
-                       <jsfVersion>12</jsfVersion>
-                       <mainSourceDirectory2>${project.build.directory}/tomahawk12_sources</mainSourceDirectory2>
-                    </configuration>
-                </execution>
-                <execution>
-                    <id>make-client-behaviors</id>
-                    <goals>
-                      <goal>make-client-behaviors</goal>
-                    </goals>
-                    <configuration>
-                       <mainSourceDirectory2>${project.build.directory}/tomahawk12_sources</mainSourceDirectory2>
-                    </configuration>
-                </execution>
-                <execution>
-                    <id>maketags</id>
-                    <configuration>
-                       <jsfVersion>12</jsfVersion>
-                       <templateTagName>tagClass12.vm</templateTagName>
-                       <mainSourceDirectory2>${project.build.directory}/tomahawk12_sources</mainSourceDirectory2>
-                    </configuration>
-                    <goals>
-                        <goal>make-tags</goal>
-                    </goals>
-                </execution>
-                <execution>
-                  <id>make_validator_tags_tomahawk</id>
-                  <configuration>
-                      <jsfVersion>12</jsfVersion>
-                  </configuration> 
-                  <goals>
-                      <goal>make-validator-tags</goal>
-                      <goal>make-converter-tags</goal>
-                  </goals>
-                </execution>
-                <execution>
-                  <id>makesandboxtld</id>
-                  <configuration>
-                      <xmlFile>META-INF/myfaces_sandbox.tld</xmlFile>
-                      <xmlBaseFile>src/main/conf/META-INF/myfaces_sandbox-base.tld</xmlBaseFile>
-                      <templateFile>tld-tomahawk20.vm</templateFile>
-                      <params>
-                         <shortname>s</shortname>
-                         <uri>http://myfaces.apache.org/sandbox</uri>
-                         <displayname>Tomahawk sandbox tag library.</displayname>
-                         <description>Sandbox is a place to put new JSF 2.0 ideas.</description>
-                      </params>
-                      <modelIds>
-                          <modelId>tomahawk-sandbox20</modelId>
-                      </modelIds>
-                  </configuration>
-                  <goals>
-                      <goal>make-config</goal>
-                  </goals>
-                </execution>
-                <execution>
-                  <id>make_sandbox_facelets_tld</id>
-                  <configuration>
-                      <outputDirectory>${project.build.directory}/tlddoc-facelets</outputDirectory>
-                      <xmlFile>tomahawk_facelets.tld</xmlFile>
-                      <xmlBaseFile>src/main/conf/META-INF/myfaces_sandbox-facelets-base.tld</xmlBaseFile>
-                      <templateFile>tld-facelets-tomahawk20.vm</templateFile>
-                      <params>
-                         <shortname>s</shortname>
-                         <uri>http://myfaces.apache.org/sandbox</uri>
-                         <displayname>Tomahawk sandbox tag library.</displayname>
-                         <description>Sandbox is a place to put new JSF 2.0 ideas.</description>
-                      </params>
-                      <modelIds>
-                          <modelId>tomahawk-sandbox20</modelId>
-                      </modelIds>
-                  </configuration>
-                  <goals>
-                      <goal>make-config</goal>
-                  </goals>
-                </execution>
-                <execution>
-                  <id>makesandboxtaglib</id>
-                  <configuration>
-                      <xmlFile>META-INF/sandbox.taglib.xml</xmlFile>
-                      <xmlBaseFile>src/main/conf/META-INF/facelets-taglib-base.xml</xmlBaseFile>
-                      <templateFile>facelets-taglib20.vm</templateFile>
-                      <params>
-                         <shortname>s</shortname>
-                         <uri>http://myfaces.apache.org/sandbox</uri>
-                      </params>
-                      <modelIds>
-                          <modelId>tomahawk-sandbox20</modelId>
-                      </modelIds>
-                  </configuration>
-                  <goals>
-                      <goal>make-config</goal>
-                  </goals>
-                </execution>
-              </executions>
-            </plugin>
-            <plugin>
-              <artifactId>maven-surefire-plugin</artifactId>
-              <version>2.4.2</version>
-              <configuration>
-                  <excludes>
-                      <exclude>**/Abstract*.java</exclude>
-                      <exclude>**/TestUtils.java</exclude>
-                  </excludes>
-              </configuration>
-            </plugin>
-            <plugin>
-              <groupId>org.apache.maven.plugins</groupId>
-              <artifactId>maven-compiler-plugin</artifactId>
-              <configuration>
-                <source>1.5</source>
-                <target>1.5</target>
-              </configuration>
-            </plugin>
-        </plugins>
-    </build>
-
-    <reporting>
-        <plugins>
-
-            <plugin>
-                <artifactId>maven-changelog-plugin</artifactId>
-                <version>2.1</version>
-                <reportSets>
-                    <reportSet>
-                        <id>dual-report</id>
-                        <configuration>
-                            <type>range</type>
-                            <range>30</range>
-                        </configuration>
-                        <reports>
-                            <report>changelog</report>
-                            <report>file-activity</report>
-                            <report>dev-activity</report>
-                        </reports>
-                    </reportSet>
-                </reportSets>
-            </plugin>
-
-            <plugin>
-                <artifactId>maven-javadoc-plugin</artifactId>
-                <version>2.4</version>
-                <configuration>
-                    <sourcepath>${basedir}/src/main/java;${basedir}/target/tomahawk12_sources;${basedir}/target/maven-faces-plugin/main/java</sourcepath>
-                </configuration>                
-            </plugin>
-
-            <plugin>
-                <artifactId>maven-jxr-plugin</artifactId>
-                <version>2.1</version>
-            </plugin>
-
-            <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>taglist-maven-plugin</artifactId>
-                <version>2.0</version>
-            </plugin>
-
-            <plugin>
-                <artifactId>maven-surefire-report-plugin</artifactId>
-                <version>2.4</version>
-            </plugin>
-
-        </plugins>
-    </reporting>
-
-    <profiles>
-        <profile>
-            <id>generate-site</id>
-            <build>
-                <plugins>
-                    <plugin>
-                        <!-- Generate report content -->
-                        <groupId>org.apache.myfaces.buildtools</groupId>
-                        <artifactId>myfaces-builder-plugin</artifactId>
-                        <version>${myfaces-builder-plugin-version}</version>
-                        <configuration>
-                            <taglibs>
-                                <s>http://myfaces.apache.org/sandbox</s>
-                            </taglibs>
-                        </configuration>
-                        <executions>
-                            <execution>
-                                <goals>
-                                  <goal>tagdoc-content</goal>
-                                </goals>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-            <reporting>
-                <plugins>
-                    <plugin>
-                        <groupId>net.sourceforge.maven-taglib</groupId>
-                        <artifactId>maven-taglib-plugin</artifactId>
-                        <configuration>
-                            <!-- taglib.src.dir>${basedir}/target/classes/META-INF</taglib.src.dir -->
-                            <taglib.src.dir>${basedir}/target/tlddoc-facelets</taglib.src.dir>
-                            <tldDocDir>${basedir}/target/site/tlddoc</tldDocDir>
-                        </configuration>
-                    </plugin>
-                    <plugin>
-                        <!-- Generate report index -->
-                        <groupId>org.apache.myfaces.buildtools</groupId>
-                        <artifactId>myfaces-builder-plugin</artifactId>
-                        <version>${myfaces-builder-plugin-version}</version>
-                        <configuration>
-                            <taglibs>
-                                <s>http://myfaces.apache.org/sandbox</s>
-                            </taglibs>
-                        </configuration>
-                    </plugin>                    
-                </plugins>
-            </reporting>
-        </profile>
-        <profile>
-            <id>generate-assembly</id>
-            <activation>
-              <property>
-                <name>performRelease</name>
-                <value>true</value>
-              </property>
-            </activation>
-            <build>
-                <plugins>
-                    <plugin>
-                        <artifactId>maven-javadoc-plugin</artifactId>
-                        <version>2.4</version>
-                        <executions>
-                            <execution>
-                                <id>attach-javadoc</id>
-                                <goals><goal>jar</goal></goals>
-                            </execution>
-                        </executions>
-                    </plugin>
-                    <plugin>
-                        <groupId>net.sourceforge.maven-taglib</groupId>
-                        <artifactId>maven-taglib-plugin</artifactId>
-                        <configuration>
-                            <taglib.src.dir>${basedir}/target/classes/META-INF</taglib.src.dir>
-                            <tldDocDir>${basedir}/target/tlddoc</tldDocDir>
-                        </configuration>
-                        <executions>
-                            <execution>
-                                <id>attach-javadoc</id>
-                                <goals><goal>taglibdocjar</goal></goals>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-    </profiles>
-
-</project>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <artifactId>tomahawk-sandbox20</artifactId>
+    <packaging>jar</packaging>
+    <name>Sandbox Core 20</name>
+    <description>
+        Sandbox is a place to put new JSF 2.0 ideas (components, converters,
+        validators, ...). If the code is good enough, it could be promoted 
+        to tomahawk, myfaces commons or other MyFaces projects.
+    </description>
+
+    <parent>
+        <groupId>org.apache.myfaces.tomahawk</groupId>
+        <artifactId>sandbox-project</artifactId>
+        <version>1.1.11</version>
+    </parent>
+  
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tomahawk/tags/tomahawk-project-1.1.11/sandbox/core</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tomahawk/tags/tomahawk-project-1.1.11/sandbox/core</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/myfaces/tomahawk/tags/tomahawk-project-1.1.11/sandbox/core</url>
+    </scm>
+
+    <dependencies>
+  
+        <!-- compile -->
+
+        <dependency>
+            <groupId>org.apache.myfaces.tomahawk</groupId>
+            <artifactId>tomahawk20</artifactId>
+            <version>${project.version}</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <!-- 
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring</artifactId>
+            <scope>compile</scope>
+        </dependency>
+         -->
+
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>commons-validator</groupId>
+            <artifactId>commons-validator</artifactId>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>commons-collections</groupId>
+            <artifactId>commons-collections</artifactId>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>javax.validation</groupId>
+            <artifactId>validation-api</artifactId>
+            <version>1.0.0.GA</version>
+            <scope>provided</scope>
+        </dependency>
+
+        <!-- 
+        <dependency>
+            <groupId>javax.el</groupId>
+            <artifactId>el-api</artifactId>
+            <version>2.1.2-b05</version>
+            <scope>provided</scope>
+        </dependency>
+        -->
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-el_2.2_spec</artifactId>
+            <version>1.0.1</version>
+            <scope>provided</scope>
+        </dependency>
+
+        <!-- 
+        <dependency>
+            <groupId>commons-el</groupId>
+            <artifactId>commons-el</artifactId>
+            <scope>compile</scope>
+        </dependency>
+         -->
+
+        <!-- 
+        <dependency>
+            <groupId>commons-codec</groupId>
+            <artifactId>commons-codec</artifactId>
+            <scope>compile</scope>
+        </dependency>
+         -->
+
+        <dependency>
+            <groupId>commons-lang</groupId>
+            <artifactId>commons-lang</artifactId>
+            <scope>compile</scope>
+        </dependency>
+
+        <!-- 
+        <dependency>
+            <groupId>portlet-api</groupId>
+            <artifactId>portlet-api</artifactId>
+            <version>1.0</version>
+            <scope>provided</scope>
+        </dependency>
+         -->
+         
+        <!-- 
+        <dependency>
+            <groupId>poi</groupId>
+            <artifactId>poi</artifactId>
+            <scope>compile</scope>
+        </dependency>
+         -->
+
+        <!-- provided dependencies -->
+
+        <dependency>
+            <groupId>org.apache.myfaces.core</groupId>
+            <artifactId>myfaces-api</artifactId>
+	    <version>${myfaces-core20-version}</version>
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>javax.servlet.jsp</groupId>
+            <artifactId>jsp-api</artifactId>
+            <version>2.1</version>
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+            <version>2.5</version>
+            <scope>provided</scope>
+        </dependency>
+<!-- 
+        <dependency>
+            <groupId>org.freemarker</groupId>
+            <artifactId>freemarker</artifactId>
+            <scope>compile</scope>
+        </dependency>
+         -->
+        
+        <dependency>
+            <groupId>org.apache.myfaces.buildtools</groupId>
+            <artifactId>myfaces-builder-annotations</artifactId> 
+            <version>${myfaces-builder-annotations-version}</version>
+            <scope>provided</scope>
+        </dependency>
+<!-- 
+    <dependency>
+      <groupId>com.sun.facelets</groupId>
+      <artifactId>jsf-facelets</artifactId>
+      <scope>provided</scope>
+    </dependency>
+ -->
+ 
+     <!-- 
+     <dependency>
+      <groupId>com.lowagie</groupId>
+      <artifactId>itext</artifactId>
+    </dependency>
+     -->
+
+        <!-- test dependencies -->
+
+        <dependency>
+            <groupId>org.apache.myfaces.core</groupId>
+            <artifactId>myfaces-impl</artifactId>
+            <version>${myfaces-core20-version}</version>
+            <scope>test</scope>
+        </dependency>
+        
+        <dependency>
+          <groupId>maven-taglib</groupId>
+          <artifactId>maven-taglib-plugin</artifactId>
+          <scope>test</scope>
+        </dependency>
+        
+        <dependency>
+          <groupId>org.apache.myfaces.test</groupId>
+          <artifactId>myfaces-test20</artifactId>
+          <scope>test</scope>
+        </dependency>
+
+    </dependencies>
+
+    <build>
+        <resources>
+            <resource>
+                <directory>src/main/resources</directory>
+                <excludes>
+                   <exclude>**/*.vm</exclude>
+                </excludes>
+            </resource>
+            <!-- 
+            <resource>
+                <directory>target/tomahawk12_resources</directory>
+            </resource>
+             -->
+        </resources>
+        <plugins>
+            <plugin>
+              <groupId>org.codehaus.mojo</groupId>
+              <artifactId>build-helper-maven-plugin</artifactId>
+              <executions>
+                  <execution>
+                      <id>add-source</id>
+                      <phase>generate-sources</phase>
+                      <!-- <phase>process-sources</phase> -->
+                      <goals>
+                          <goal>add-source</goal>
+                      </goals>
+                      <configuration>
+                          <sources>
+                              <source>
+                                  ${project.build.directory}/tomahawk12_sources
+                              </source>
+                          </sources>
+                      </configuration>
+                  </execution>
+              </executions>
+            </plugin>
+
+            <plugin>
+              <groupId>org.apache.myfaces.buildtools</groupId>
+              <artifactId>myfaces-builder-plugin</artifactId>
+              <version>${myfaces-builder-plugin-version}</version>
+              <executions>
+                <!--
+                <execution>
+                  <id>unpack-tomahawk</id>
+                  <phase>generate-sources</phase>
+                  <goals>
+                    <goal>unpack</goal>
+                  </goals>
+                  <configuration>
+                    <scanModel>true</scanModel>
+                    <artifactItems>
+                      <artifactItem>
+                        <groupId>org.apache.myfaces.tomahawk</groupId>
+                        <artifactId>tomahawk-sandbox12</artifactId>
+                        <version>${pom.version}</version>
+                        <classifier>sources</classifier>                   
+                        <outputDirectory>${project.build.directory}/tomahawk12_sources</outputDirectory>
+                        <includes>**/*.java</includes>
+                        <excludes>
+                        **/*.class,**/META-INF/**,
+                        org/apache/myfaces/shared_tomahawk/**/*.java,
+                        org/apache/myfaces/custom/ajaxchildcombobox/**/*.java,
+                        org/apache/myfaces/custom/dialog/**/*.java,
+                        org/apache/myfaces/custom/dojoaddresource/**/*.java,
+                        org/apache/myfaces/custom/dojolayouts/**/*.java,
+                        org/apache/myfaces/custom/effect/**/*.java,
+                        org/apache/myfaces/custom/fisheye/**/*.java,
+                        org/apache/myfaces/custom/focus/**/*.java,
+                        org/apache/myfaces/custom/imageloop/**/*.java,
+                        org/apache/myfaces/custom/ppr/**/*.java,
+                        org/apache/myfaces/custom/statechangednotifier/**/*.java,
+                        org/apache/myfaces/custom/submitOnEvent/**/*.java,
+                        org/apache/myfaces/custom/suggestajax/**/*.java,
+                        org/apache/myfaces/custom/table/**/*.java,
+                        org/apache/myfaces/custom/timednotifier/**/*.java,
+                        org/apache/myfaces/convert/ex/**/*.java,
+                        org/apache/myfaces/custom/ajax/**/*.java,
+                        org/apache/myfaces/custom/autoupdatedatatable/**/*.java,
+                        org/apache/myfaces/custom/clientvalidation/**/*.java,
+                        org/apache/myfaces/custom/comparetovalidator/**/*.java,
+                        org/apache/myfaces/custom/conversation/**/*.java,
+                        org/apache/myfaces/custom/convertboolean/**/*.java,
+                        org/apache/myfaces/custom/convertDateTime/**/*.java,
+                        org/apache/myfaces/custom/convertNumber/**/*.java,
+                        org/apache/myfaces/custom/csvvalidator/**/*.java,
+                        org/apache/myfaces/custom/dynamicResources/**/*.java,
+                        org/apache/myfaces/custom/exporter/**/*.java,
+                        org/apache/myfaces/custom/form/**/*.java,
+                        org/apache/myfaces/custom/globalId/**/*.java,
+                        org/apache/myfaces/custom/graphicimagedynamic/**/*.java,
+                        org/apache/myfaces/custom/inputAjax/**/*.java,
+                        org/apache/myfaces/custom/isbnvalidator/**/*.java,
+                        org/apache/myfaces/custom/outputlinkdynamic/**/*.java,
+                        org/apache/myfaces/custom/redirectTracker/**/*.java,
+                        org/apache/myfaces/custom/renderOne/**/*.java,
+                        org/apache/myfaces/custom/requestParameterProvider/**/*.java,
+                        org/apache/myfaces/custom/scope/**/*.java,
+                        org/apache/myfaces/custom/security/**/*.java,
+                        org/apache/myfaces/custom/suggest/**/*.java,
+                        org/apache/myfaces/custom/urlvalidator/**/*.java,
+                        org/apache/myfaces/custom/util/**/*.java,
+                        org/apache/myfaces/renderkit/**/*.java,
+                        org/apache/myfaces/tomahawk/util/**/*.java,
+                        org/apache/myfaces/validator/ex/**/*.java
+                        </excludes>
+                      </artifactItem>
+                    </artifactItems>
+                  </configuration>
+                </execution>
+                <execution>
+                  <id>unpack-tomahawk-resources</id>
+                  <phase>generate-resources</phase>
+                  <goals>
+                    <goal>unpack</goal>
+                  </goals>
+                  <configuration>
+                    <baseDirectory1>${basedir}/src/main/resources</baseDirectory1>
+                    <artifactItems>
+                      <artifactItem>
+                        <groupId>org.apache.myfaces.tomahawk</groupId>
+                        <artifactId>tomahawk-sandbox12</artifactId>
+                        <version>${pom.version}</version>                                   
+                        <outputDirectory>${project.build.directory}/tomahawk12_resources</outputDirectory>
+                        <excludes>**/*.class,**/META-INF/**,
+                        org/apache/myfaces/custom/ajaxchildcombobox/**,
+                        org/apache/myfaces/custom/dialog/**,
+                        org/apache/myfaces/custom/dojoaddresource/**,
+                        org/apache/myfaces/custom/dojolayouts/**,
+                        org/apache/myfaces/custom/effect/**,
+                        org/apache/myfaces/custom/fisheye/**,
+                        org/apache/myfaces/custom/focus/**,
+                        org/apache/myfaces/custom/imageloop/**,
+                        org/apache/myfaces/custom/ppr/**,
+                        org/apache/myfaces/custom/statechangednotifier/**,
+                        org/apache/myfaces/custom/submitOnEvent/**,
+                        org/apache/myfaces/custom/suggestajax/**,
+                        org/apache/myfaces/custom/table/**,
+                        org/apache/myfaces/custom/timednotifier/**
+                        </excludes>
+                      </artifactItem>
+                    </artifactItems>
+                  </configuration>
+                </execution>
+                -->
+                <execution>
+                  <!-- A hierarchy of different tag classes must be created, 
+                  because this classes are not part of the public api. The
+                  generation of all html package is the same. Please note that
+                  we need only a subset -->
+                  <configuration>
+                      <replacePackagePrefixTagFrom>org.apache.myfaces.taglib</replacePackagePrefixTagFrom>
+                      <replacePackagePrefixTagTo>org.apache.myfaces.shared_tomahawk.taglib</replacePackagePrefixTagTo>
+                  </configuration>
+                  <goals>
+                    <goal>build-metadata</goal>
+                  </goals>
+                </execution>
+                <execution>
+                  <id>makefacesconfig</id>
+                  <configuration>
+                      <templateFile>faces-config20.vm</templateFile>
+                      <xmlFile>META-INF/faces-config.xml</xmlFile>
+                  </configuration>
+                  <goals>
+                      <goal>make-config</goal>
+                  </goals>
+                </execution>
+                <execution>
+                    <id>makecomp</id>
+                    <goals>
+                      <goal>make-components</goal>
+                    </goals>
+                    <configuration>
+                       <jsfVersion>20</jsfVersion>
+                       <templateComponentName>componentClass20.vm</templateComponentName>
+                       <mainSourceDirectory2>${project.build.directory}/tomahawk12_sources</mainSourceDirectory2>
+                    </configuration>
+                </execution>
+                <execution>
+                    <id>makeval</id>
+                    <goals>
+                      <goal>make-validators</goal>
+                    </goals>
+                    <configuration>
+                       <jsfVersion>12</jsfVersion>
+                       <mainSourceDirectory2>${project.build.directory}/tomahawk12_sources</mainSourceDirectory2>
+                    </configuration>
+                </execution>
+                <execution>
+                    <id>make-client-behaviors</id>
+                    <goals>
+                      <goal>make-client-behaviors</goal>
+                    </goals>
+                    <configuration>
+                       <mainSourceDirectory2>${project.build.directory}/tomahawk12_sources</mainSourceDirectory2>
+                    </configuration>
+                </execution>
+                <execution>
+                    <id>maketags</id>
+                    <configuration>
+                       <jsfVersion>12</jsfVersion>
+                       <templateTagName>tagClass12.vm</templateTagName>
+                       <mainSourceDirectory2>${project.build.directory}/tomahawk12_sources</mainSourceDirectory2>
+                    </configuration>
+                    <goals>
+                        <goal>make-tags</goal>
+                    </goals>
+                </execution>
+                <execution>
+                  <id>make_validator_tags_tomahawk</id>
+                  <configuration>
+                      <jsfVersion>12</jsfVersion>
+                  </configuration> 
+                  <goals>
+                      <goal>make-validator-tags</goal>
+                      <goal>make-converter-tags</goal>
+                  </goals>
+                </execution>
+                <execution>
+                  <id>makesandboxtld</id>
+                  <configuration>
+                      <xmlFile>META-INF/myfaces_sandbox.tld</xmlFile>
+                      <xmlBaseFile>src/main/conf/META-INF/myfaces_sandbox-base.tld</xmlBaseFile>
+                      <templateFile>tld-tomahawk20.vm</templateFile>
+                      <params>
+                         <shortname>s</shortname>
+                         <uri>http://myfaces.apache.org/sandbox</uri>
+                         <displayname>Tomahawk sandbox tag library.</displayname>
+                         <description>Sandbox is a place to put new JSF 2.0 ideas.</description>
+                      </params>
+                      <modelIds>
+                          <modelId>tomahawk-sandbox20</modelId>
+                      </modelIds>
+                  </configuration>
+                  <goals>
+                      <goal>make-config</goal>
+                  </goals>
+                </execution>
+                <execution>
+                  <id>make_sandbox_facelets_tld</id>
+                  <configuration>
+                      <outputDirectory>${project.build.directory}/tlddoc-facelets</outputDirectory>
+                      <xmlFile>tomahawk_facelets.tld</xmlFile>
+                      <xmlBaseFile>src/main/conf/META-INF/myfaces_sandbox-facelets-base.tld</xmlBaseFile>
+                      <templateFile>tld-facelets-tomahawk20.vm</templateFile>
+                      <params>
+                         <shortname>s</shortname>
+                         <uri>http://myfaces.apache.org/sandbox</uri>
+                         <displayname>Tomahawk sandbox tag library.</displayname>
+                         <description>Sandbox is a place to put new JSF 2.0 ideas.</description>
+                      </params>
+                      <modelIds>
+                          <modelId>tomahawk-sandbox20</modelId>
+                      </modelIds>
+                  </configuration>
+                  <goals>
+                      <goal>make-config</goal>
+                  </goals>
+                </execution>
+                <execution>
+                  <id>makesandboxtaglib</id>
+                  <configuration>
+                      <xmlFile>META-INF/sandbox.taglib.xml</xmlFile>
+                      <xmlBaseFile>src/main/conf/META-INF/facelets-taglib-base.xml</xmlBaseFile>
+                      <templateFile>facelets-taglib20.vm</templateFile>
+                      <params>
+                         <shortname>s</shortname>
+                         <uri>http://myfaces.apache.org/sandbox</uri>
+                      </params>
+                      <modelIds>
+                          <modelId>tomahawk-sandbox20</modelId>
+                      </modelIds>
+                  </configuration>
+                  <goals>
+                      <goal>make-config</goal>
+                  </goals>
+                </execution>
+              </executions>
+            </plugin>
+            <plugin>
+              <artifactId>maven-surefire-plugin</artifactId>
+              <version>2.4.2</version>
+              <configuration>
+                  <excludes>
+                      <exclude>**/Abstract*.java</exclude>
+                      <exclude>**/TestUtils.java</exclude>
+                  </excludes>
+              </configuration>
+            </plugin>
+            <plugin>
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-compiler-plugin</artifactId>
+              <configuration>
+                <source>1.5</source>
+                <target>1.5</target>
+              </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <reporting>
+        <plugins>
+
+            <plugin>
+                <artifactId>maven-changelog-plugin</artifactId>
+                <version>2.1</version>
+                <reportSets>
+                    <reportSet>
+                        <id>dual-report</id>
+                        <configuration>
+                            <type>range</type>
+                            <range>30</range>
+                        </configuration>
+                        <reports>
+                            <report>changelog</report>
+                            <report>file-activity</report>
+                            <report>dev-activity</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+
+            <plugin>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <version>2.4</version>
+                <configuration>
+                    <sourcepath>${basedir}/src/main/java;${basedir}/target/tomahawk12_sources;${basedir}/target/maven-faces-plugin/main/java</sourcepath>
+                </configuration>                
+            </plugin>
+
+            <plugin>
+                <artifactId>maven-jxr-plugin</artifactId>
+                <version>2.1</version>
+            </plugin>
+
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>taglist-maven-plugin</artifactId>
+                <version>2.0</version>
+            </plugin>
+
+            <plugin>
+                <artifactId>maven-surefire-report-plugin</artifactId>
+                <version>2.4</version>
+            </plugin>
+
+        </plugins>
+    </reporting>
+
+    <profiles>
+        <profile>
+            <id>generate-site</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <!-- Generate report content -->
+                        <groupId>org.apache.myfaces.buildtools</groupId>
+                        <artifactId>myfaces-builder-plugin</artifactId>
+                        <version>${myfaces-builder-plugin-version}</version>
+                        <configuration>
+                            <taglibs>
+                                <s>http://myfaces.apache.org/sandbox</s>
+                            </taglibs>
+                        </configuration>
+                        <executions>
+                            <execution>
+                                <goals>
+                                  <goal>tagdoc-content</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+            <reporting>
+                <plugins>
+                    <plugin>
+                        <groupId>net.sourceforge.maven-taglib</groupId>
+                        <artifactId>maven-taglib-plugin</artifactId>
+                        <configuration>
+                            <!-- taglib.src.dir>${basedir}/target/classes/META-INF</taglib.src.dir -->
+                            <taglib.src.dir>${basedir}/target/tlddoc-facelets</taglib.src.dir>
+                            <tldDocDir>${basedir}/target/site/tlddoc</tldDocDir>
+                        </configuration>
+                    </plugin>
+                    <plugin>
+                        <!-- Generate report index -->
+                        <groupId>org.apache.myfaces.buildtools</groupId>
+                        <artifactId>myfaces-builder-plugin</artifactId>
+                        <version>${myfaces-builder-plugin-version}</version>
+                        <configuration>
+                            <taglibs>
+                                <s>http://myfaces.apache.org/sandbox</s>
+                            </taglibs>
+                        </configuration>
+                    </plugin>                    
+                </plugins>
+            </reporting>
+        </profile>
+        <profile>
+            <id>generate-assembly</id>
+            <activation>
+              <property>
+                <name>performRelease</name>
+                <value>true</value>
+              </property>
+            </activation>
+            <build>
+                <plugins>
+                    <plugin>
+                        <artifactId>maven-javadoc-plugin</artifactId>
+                        <version>2.4</version>
+                        <executions>
+                            <execution>
+                                <id>attach-javadoc</id>
+                                <goals><goal>jar</goal></goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                    <plugin>
+                        <groupId>net.sourceforge.maven-taglib</groupId>
+                        <artifactId>maven-taglib-plugin</artifactId>
+                        <configuration>
+                            <taglib.src.dir>${basedir}/target/classes/META-INF</taglib.src.dir>
+                            <tldDocDir>${basedir}/target/tlddoc</tldDocDir>
+                        </configuration>
+                        <executions>
+                            <execution>
+                                <id>attach-javadoc</id>
+                                <goals><goal>taglibdocjar</goal></goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+
+</project>

Modified: myfaces/tomahawk/trunk/sandbox/examples/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/pom.xml?rev=1130327&r1=1130326&r2=1130327&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/pom.xml (original)
+++ myfaces/tomahawk/trunk/sandbox/examples/pom.xml Wed Jun  1 22:34:14 2011
@@ -7,13 +7,13 @@
     <parent>
         <groupId>org.apache.myfaces.tomahawk</groupId>
         <artifactId>sandbox-project</artifactId>
-        <version>1.1.11-SNAPSHOT</version>
+        <version>1.1.11</version>
     </parent>
     
     <scm>
-        <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tomahawk/trunk/sandbox/examples</connection>
-        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tomahawk/trunk/sandbox/examples</developerConnection>
-        <url>http://svn.apache.org/viewcvs.cgi/myfaces/tomahawk/trunk/sandbox/examples</url>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tomahawk/tags/tomahawk-project-1.1.11/sandbox/examples</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tomahawk/tags/tomahawk-project-1.1.11/sandbox/examples</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/myfaces/tomahawk/tags/tomahawk-project-1.1.11/sandbox/examples</url>
     </scm>
 
     <profiles>