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 2008/06/23 22:53:12 UTC

svn commit: r670748 - /myfaces/tomahawk/trunk/examples/simple/pom.xml

Author: lu4242
Date: Mon Jun 23 13:53:12 2008
New Revision: 670748

URL: http://svn.apache.org/viewvc?rev=670748&view=rev
Log:
fix compile with myfaces 1.2 mvn clean -Djsf=12 jetty:run

Modified:
    myfaces/tomahawk/trunk/examples/simple/pom.xml

Modified: myfaces/tomahawk/trunk/examples/simple/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/examples/simple/pom.xml?rev=670748&r1=670747&r2=670748&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/examples/simple/pom.xml (original)
+++ myfaces/tomahawk/trunk/examples/simple/pom.xml Mon Jun 23 13:53:12 2008
@@ -63,6 +63,23 @@
                 <hostedqa.appConfigs>56</hostedqa.appConfigs>
             </properties>
         </profile>
+        <profile>
+            <id>myfaces-1.2</id>
+            <activation>
+                <property>
+                    <name>jsf</name>
+                    <value>12</value>
+                </property>
+            </activation>
+            <dependencies>
+			    <dependency>
+					<groupId>javax.servlet</groupId>
+					<artifactId>servlet-api</artifactId>
+					<version>2.5</version>
+					<scope>provided</scope>
+			    </dependency>
+            </dependencies>
+        </profile>        
     </profiles>
     
     <dependencies>