You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ca...@apache.org on 2007/12/23 00:14:23 UTC

svn commit: r606514 - /myfaces/tomahawk/branches/1_2_0/examples/pom.xml

Author: cagatay
Date: Sat Dec 22 15:14:23 2007
New Revision: 606514

URL: http://svn.apache.org/viewvc?rev=606514&view=rev
Log:
Add servlet and jsp-api dependencies to fix build of examples

Modified:
    myfaces/tomahawk/branches/1_2_0/examples/pom.xml

Modified: myfaces/tomahawk/branches/1_2_0/examples/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/branches/1_2_0/examples/pom.xml?rev=606514&r1=606513&r2=606514&view=diff
==============================================================================
--- myfaces/tomahawk/branches/1_2_0/examples/pom.xml (original)
+++ myfaces/tomahawk/branches/1_2_0/examples/pom.xml Sat Dec 22 15:14:23 2007
@@ -44,6 +44,22 @@
         <module>tiles</module>
         <module>wap</module>
     </modules>
+	
+	  <dependencies>
+        <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>
+    </dependencies>
 
     <profiles>
         <!-- By default, use the current snapshot of Tomahawk -->