[webbeans-commits] Webbeans SVN: r3761 - in examples/trunk: jsf/numberguess and 1 other directory.

webbeans-commits at lists.jboss.org webbeans-commits at lists.jboss.org
Wed Sep 23 07:19:42 EDT 2009


Author: pete.muir at jboss.org
Date: 2009-09-23 07:19:41 -0400 (Wed, 23 Sep 2009)
New Revision: 3761

Modified:
   examples/trunk/jsf/numberguess/pom.xml
   examples/trunk/pom.xml
Log:
fixes for tomcat

Modified: examples/trunk/jsf/numberguess/pom.xml
===================================================================
--- examples/trunk/jsf/numberguess/pom.xml	2009-09-23 11:19:27 UTC (rev 3760)
+++ examples/trunk/jsf/numberguess/pom.xml	2009-09-23 11:19:41 UTC (rev 3761)
@@ -119,6 +119,12 @@
             </dependency>
             
             <dependency>
+               <groupId>javax.servlet</groupId>
+               <artifactId>jstl</artifactId>
+               <scope>runtime</scope>
+            </dependency>
+            
+            <dependency>
                <groupId>org.jboss.webbeans.servlet</groupId>
                <artifactId>webbeans-servlet</artifactId>
                <scope>runtime</scope>
@@ -206,7 +212,7 @@
                <filesets>
                   <fileset>
                      <!-- clean up files from war:inplace -->
-                     <directory>WebContent</directory>
+                     <directory>src/main/webapp</directory>
                      <includes>
                         <include>WEB-INF/classes/**</include>
                         <include>WEB-INF/lib/**</include>

Modified: examples/trunk/pom.xml
===================================================================
--- examples/trunk/pom.xml	2009-09-23 11:19:27 UTC (rev 3760)
+++ examples/trunk/pom.xml	2009-09-23 11:19:41 UTC (rev 3761)
@@ -76,9 +76,25 @@
       <module>jsf/login</module>
       <module>se/numberguess</module>
       <module>se/hello-world</module>
-      <module>jsf/servlet-numberguess</module>
       <module>wicket/numberguess</module>
    </modules>
+   
+   <dependencyManagement>
+      <dependencies>
+      
+         <dependency>
+            <groupId>javax.faces</groupId>
+            <artifactId>jsf-api</artifactId>
+            <version>2.0.0-RC</version>
+         </dependency>
+         
+         <dependency>
+            <groupId>javax.faces</groupId>
+            <artifactId>jsf-impl</artifactId>
+            <version>2.0.0-RC</version>
+         </dependency>
+      </dependencies>
+   </dependencyManagement>
 
    <build>
       <plugins>




More information about the weld-commits mailing list