Author: maschmid
Date: 2012-10-09 06:23:53 -0400 (Tue, 09 Oct 2012)
New Revision: 15234
Modified:
branches/community/Seam_2_3/examples/todo/todo-web/pom.xml
branches/community/Seam_2_3/examples/todo/todo-web/src/main/webapp/WEB-INF/web.xml
Log:
todo example cleanup
Modified: branches/community/Seam_2_3/examples/todo/todo-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples/todo/todo-web/pom.xml 2012-10-09 10:14:56 UTC
(rev 15233)
+++ branches/community/Seam_2_3/examples/todo/todo-web/pom.xml 2012-10-09 10:23:53 UTC
(rev 15234)
@@ -26,10 +26,6 @@
<scope>provided</scope>
<exclusions>
<exclusion>
- <artifactId>jboss-seam</artifactId>
- <groupId>org.jboss.seam</groupId>
- </exclusion>
- <exclusion>
<artifactId>hibernate-ehcache</artifactId>
<groupId>org.hibernate</groupId>
</exclusion>
@@ -45,18 +41,30 @@
</dependency>
<dependency>
<groupId>org.jboss.seam</groupId>
+ <artifactId>jboss-seam</artifactId>
+ <type>ejb</type>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-ui</artifactId>
<exclusions>
<exclusion>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</exclusion>
- <exclusion>
- <artifactId>jboss-seam</artifactId>
- <groupId>org.jboss.seam</groupId>
- </exclusion>
</exclusions>
</dependency>
+ <dependency>
+ <groupId>org.jboss.spec.javax.faces</groupId>
+ <artifactId>jboss-jsf-api_2.1_spec</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.spec.javax.servlet</groupId>
+ <artifactId>jboss-servlet-api_3.0_spec</artifactId>
+ <scope>provided</scope>
+ </dependency>
</dependencies>
<build>
Modified:
branches/community/Seam_2_3/examples/todo/todo-web/src/main/webapp/WEB-INF/web.xml
===================================================================
---
branches/community/Seam_2_3/examples/todo/todo-web/src/main/webapp/WEB-INF/web.xml 2012-10-09
10:14:56 UTC (rev 15233)
+++
branches/community/Seam_2_3/examples/todo/todo-web/src/main/webapp/WEB-INF/web.xml 2012-10-09
10:23:53 UTC (rev 15234)
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
-<web-app version="2.5"
+<web-app version="3.0"
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/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
+
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<listener>
<listener-class>org.jboss.seam.servlet.SeamListener</listener-class>