You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by st...@apache.org on 2012/11/16 20:33:21 UTC

svn commit: r1410544 - /myfaces/core/branches/2.2.x/client-window-example/pom.xml

Author: struberg
Date: Fri Nov 16 19:33:20 2012
New Revision: 1410544

URL: http://svn.apache.org/viewvc?rev=1410544&view=rev
Log:
MYFACES-3649 fix client-window-example

This uses a fileinputfield which needs servlet-3.0.
I also fixed the wrong dependency version to core-impl

Modified:
    myfaces/core/branches/2.2.x/client-window-example/pom.xml

Modified: myfaces/core/branches/2.2.x/client-window-example/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2.2.x/client-window-example/pom.xml?rev=1410544&r1=1410543&r2=1410544&view=diff
==============================================================================
--- myfaces/core/branches/2.2.x/client-window-example/pom.xml (original)
+++ myfaces/core/branches/2.2.x/client-window-example/pom.xml Fri Nov 16 19:33:20 2012
@@ -58,7 +58,7 @@
      -->
 
     <properties>
-        <jsf-myfaces.version>2.2.0-SNAPSHOT</jsf-myfaces.version>
+        <jsf-myfaces.version>${project.version}</jsf-myfaces.version>
         <jsf-mojarra.version>2.1.7</jsf-mojarra.version>        
         <jetty.maven.plugin.version>8.1.3.v20120416</jetty.maven.plugin.version>
         <cargo.version>1.1.1</cargo.version>
@@ -112,8 +112,8 @@
 
         <dependency>
             <groupId>org.apache.geronimo.specs</groupId>
-            <artifactId>geronimo-servlet_2.5_spec</artifactId>
-            <version>1.2</version>
+            <artifactId>geronimo-servlet_3.0_spec</artifactId>
+            <version>1.0</version>
             <scope>provided</scope>
         </dependency>