You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by gp...@apache.org on 2011/08/15 20:49:08 UTC

svn commit: r1157942 - in /myfaces/extensions/validator/trunk/examples: feature-set_01/src/main/webapp/WEB-INF/ feature-set_02/src/main/webapp/WEB-INF/ hello_bean-validation/ hello_bean-validation/src/main/webapp/WEB-INF/ hello_world/ hello_world/src/m...

Author: gpetracek
Date: Mon Aug 15 18:49:07 2011
New Revision: 1157942

URL: http://svn.apache.org/viewvc?rev=1157942&view=rev
Log:
updated config files

Modified:
    myfaces/extensions/validator/trunk/examples/feature-set_01/src/main/webapp/WEB-INF/web.xml
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/web.xml
    myfaces/extensions/validator/trunk/examples/hello_bean-validation/pom.xml
    myfaces/extensions/validator/trunk/examples/hello_bean-validation/src/main/webapp/WEB-INF/web.xml
    myfaces/extensions/validator/trunk/examples/hello_world/pom.xml
    myfaces/extensions/validator/trunk/examples/hello_world/src/main/webapp/WEB-INF/web.xml

Modified: myfaces/extensions/validator/trunk/examples/feature-set_01/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/feature-set_01/src/main/webapp/WEB-INF/web.xml?rev=1157942&r1=1157941&r2=1157942&view=diff
==============================================================================
--- myfaces/extensions/validator/trunk/examples/feature-set_01/src/main/webapp/WEB-INF/web.xml (original)
+++ myfaces/extensions/validator/trunk/examples/feature-set_01/src/main/webapp/WEB-INF/web.xml Mon Aug 15 18:49:07 2011
@@ -18,10 +18,10 @@
  * specific language governing permissions and limitations
  * under the License.
 -->
-<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
+<web-app xmlns="http://java.sun.com/xml/ns/javaee"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
-         version="2.4">
+         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
+         version="2.5">
 
     <description>MyProject web.xml</description>
 

Modified: myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/web.xml?rev=1157942&r1=1157941&r2=1157942&view=diff
==============================================================================
--- myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/web.xml (original)
+++ myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/web.xml Mon Aug 15 18:49:07 2011
@@ -18,10 +18,10 @@
  * specific language governing permissions and limitations
  * under the License.
 -->
-<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
+<web-app xmlns="http://java.sun.com/xml/ns/javaee"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
-         version="2.4">
+         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
+         version="2.5">
 
     <description>MyProject web.xml</description>
 

Modified: myfaces/extensions/validator/trunk/examples/hello_bean-validation/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/hello_bean-validation/pom.xml?rev=1157942&r1=1157941&r2=1157942&view=diff
==============================================================================
--- myfaces/extensions/validator/trunk/examples/hello_bean-validation/pom.xml (original)
+++ myfaces/extensions/validator/trunk/examples/hello_bean-validation/pom.xml Mon Aug 15 18:49:07 2011
@@ -72,9 +72,9 @@
         </dependency>
 
         <dependency>
-            <groupId>jstl</groupId>
+            <groupId>org.apache.geronimo.bundles</groupId>
             <artifactId>jstl</artifactId>
-            <version>1.2</version>
+            <version>1.2_1</version>
             <scope>runtime</scope>
         </dependency>
 

Modified: myfaces/extensions/validator/trunk/examples/hello_bean-validation/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/hello_bean-validation/src/main/webapp/WEB-INF/web.xml?rev=1157942&r1=1157941&r2=1157942&view=diff
==============================================================================
--- myfaces/extensions/validator/trunk/examples/hello_bean-validation/src/main/webapp/WEB-INF/web.xml (original)
+++ myfaces/extensions/validator/trunk/examples/hello_bean-validation/src/main/webapp/WEB-INF/web.xml Mon Aug 15 18:49:07 2011
@@ -18,10 +18,10 @@
  * specific language governing permissions and limitations
  * under the License.
 -->
-<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
+<web-app xmlns="http://java.sun.com/xml/ns/javaee"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
-         version="2.4">
+         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
+         version="2.5">
 
     <description>MyProject web.xml</description>
 

Modified: myfaces/extensions/validator/trunk/examples/hello_world/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/hello_world/pom.xml?rev=1157942&r1=1157941&r2=1157942&view=diff
==============================================================================
--- myfaces/extensions/validator/trunk/examples/hello_world/pom.xml (original)
+++ myfaces/extensions/validator/trunk/examples/hello_world/pom.xml Mon Aug 15 18:49:07 2011
@@ -65,9 +65,9 @@
         </dependency>
         
         <dependency>
-            <groupId>jstl</groupId>
+            <groupId>org.apache.geronimo.bundles</groupId>
             <artifactId>jstl</artifactId>
-            <version>1.2</version>
+            <version>1.2_1</version>
             <scope>runtime</scope>
         </dependency>        
 

Modified: myfaces/extensions/validator/trunk/examples/hello_world/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/hello_world/src/main/webapp/WEB-INF/web.xml?rev=1157942&r1=1157941&r2=1157942&view=diff
==============================================================================
--- myfaces/extensions/validator/trunk/examples/hello_world/src/main/webapp/WEB-INF/web.xml (original)
+++ myfaces/extensions/validator/trunk/examples/hello_world/src/main/webapp/WEB-INF/web.xml Mon Aug 15 18:49:07 2011
@@ -18,10 +18,10 @@
  * specific language governing permissions and limitations
  * under the License.
 -->
-<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
+<web-app xmlns="http://java.sun.com/xml/ns/javaee"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
-         version="2.4">
+         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
+         version="2.5">
 
     <description>MyProject web.xml</description>