Seam SVN: r15270 - branches/enterprise/WFK-2_1/examples/restbay/restbay-web.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-11 10:48:06 -0400 (Thu, 11 Oct 2012)
New Revision: 15270
Modified:
branches/enterprise/WFK-2_1/examples/restbay/restbay-web/pom.xml
Log:
restbay add missing provided servlet/jsp apis
Modified: branches/enterprise/WFK-2_1/examples/restbay/restbay-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/restbay/restbay-web/pom.xml 2012-10-11 14:48:00 UTC (rev 15269)
+++ branches/enterprise/WFK-2_1/examples/restbay/restbay-web/pom.xml 2012-10-11 14:48:06 UTC (rev 15270)
@@ -45,6 +45,16 @@
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</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>
13 years, 2 months
Seam SVN: r15269 - branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-web.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-11 10:48:00 -0400 (Thu, 11 Oct 2012)
New Revision: 15269
Modified:
branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-web/pom.xml
Log:
chatroom example add missing provided servlet and jsf apis
Modified: branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-web/pom.xml 2012-10-11 14:47:54 UTC (rev 15268)
+++ branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-web/pom.xml 2012-10-11 14:48:00 UTC (rev 15269)
@@ -47,6 +47,16 @@
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</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>
13 years, 2 months
Seam SVN: r15268 - branches/enterprise/WFK-2_1/examples/registration/registration-web.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-11 10:47:54 -0400 (Thu, 11 Oct 2012)
New Revision: 15268
Modified:
branches/enterprise/WFK-2_1/examples/registration/registration-web/pom.xml
Log:
registration, missing provided servlet and jsf dependencies (for web.xml validation)
Modified: branches/enterprise/WFK-2_1/examples/registration/registration-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/registration/registration-web/pom.xml 2012-10-11 14:47:44 UTC (rev 15267)
+++ branches/enterprise/WFK-2_1/examples/registration/registration-web/pom.xml 2012-10-11 14:47:54 UTC (rev 15268)
@@ -49,6 +49,16 @@
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</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>
13 years, 2 months
Seam SVN: r15267 - in branches/enterprise/WFK-2_1/examples/quartz: quartz-web and 1 other directories.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-11 10:47:44 -0400 (Thu, 11 Oct 2012)
New Revision: 15267
Modified:
branches/enterprise/WFK-2_1/examples/quartz/quartz-tests/src/test/java/org/jboss/seam/example/quartz/test/AccountTest.java
branches/enterprise/WFK-2_1/examples/quartz/quartz-web/pom.xml
branches/enterprise/WFK-2_1/examples/quartz/quartz-web/src/main/webapp/search.xhtml
Log:
quartz example cleanup
Modified: branches/enterprise/WFK-2_1/examples/quartz/quartz-tests/src/test/java/org/jboss/seam/example/quartz/test/AccountTest.java
===================================================================
--- branches/enterprise/WFK-2_1/examples/quartz/quartz-tests/src/test/java/org/jboss/seam/example/quartz/test/AccountTest.java 2012-10-11 14:47:30 UTC (rev 15266)
+++ branches/enterprise/WFK-2_1/examples/quartz/quartz-tests/src/test/java/org/jboss/seam/example/quartz/test/AccountTest.java 2012-10-11 14:47:44 UTC (rev 15267)
@@ -11,8 +11,6 @@
import org.jboss.shrinkwrap.api.Archive;
import org.jboss.shrinkwrap.api.spec.EnterpriseArchive;
import org.jboss.shrinkwrap.api.spec.WebArchive;
-import org.jboss.shrinkwrap.resolver.api.DependencyResolvers;
-import org.jboss.shrinkwrap.resolver.api.maven.MavenDependencyResolver;
import org.junit.Test;
import org.junit.runner.RunWith;
Modified: branches/enterprise/WFK-2_1/examples/quartz/quartz-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/quartz/quartz-web/pom.xml 2012-10-11 14:47:30 UTC (rev 15266)
+++ branches/enterprise/WFK-2_1/examples/quartz/quartz-web/pom.xml 2012-10-11 14:47:44 UTC (rev 15267)
@@ -55,6 +55,16 @@
</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/enterprise/WFK-2_1/examples/quartz/quartz-web/src/main/webapp/search.xhtml
===================================================================
--- branches/enterprise/WFK-2_1/examples/quartz/quartz-web/src/main/webapp/search.xhtml 2012-10-11 14:47:30 UTC (rev 15266)
+++ branches/enterprise/WFK-2_1/examples/quartz/quartz-web/src/main/webapp/search.xhtml 2012-10-11 14:47:44 UTC (rev 15267)
@@ -3,8 +3,7 @@
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
- xmlns:s="http://jboss.org/schema/seam/taglib"
- template="template.xhtml">
+ xmlns:s="http://jboss.org/schema/seam/taglib">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Seam Pay</title>
13 years, 2 months
Seam SVN: r15266 - branches/enterprise/WFK-2_1/examples/openid/openid-web.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-11 10:47:30 -0400 (Thu, 11 Oct 2012)
New Revision: 15266
Modified:
branches/enterprise/WFK-2_1/examples/openid/openid-web/pom.xml
Log:
openid example, add missing servlet and jsf spec provided dependencies in openid-web
Modified: branches/enterprise/WFK-2_1/examples/openid/openid-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/openid/openid-web/pom.xml 2012-10-11 14:47:24 UTC (rev 15265)
+++ branches/enterprise/WFK-2_1/examples/openid/openid-web/pom.xml 2012-10-11 14:47:30 UTC (rev 15266)
@@ -61,6 +61,16 @@
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</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>
13 years, 2 months
Seam SVN: r15263 - branches/enterprise/WFK-2_1/examples/contactlist/contactlist-ear.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-11 10:47:08 -0400 (Thu, 11 Oct 2012)
New Revision: 15263
Modified:
branches/enterprise/WFK-2_1/examples/contactlist/contactlist-ear/pom.xml
Log:
example contactlist cleanup
Modified: branches/enterprise/WFK-2_1/examples/contactlist/contactlist-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/contactlist/contactlist-ear/pom.xml 2012-10-11 14:47:02 UTC (rev 15262)
+++ branches/enterprise/WFK-2_1/examples/contactlist/contactlist-ear/pom.xml 2012-10-11 14:47:08 UTC (rev 15263)
@@ -22,13 +22,11 @@
<dependency>
<groupId>org.jboss.seam.examples.contactlist</groupId>
<artifactId>contactlist-web</artifactId>
- <version>${project.version}</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.jboss.seam.examples.contactlist</groupId>
<artifactId>contactlist-ejb</artifactId>
- <version>${project.version}</version>
<type>ejb</type>
</dependency>
<dependency>
13 years, 2 months
Seam SVN: r15262 - branches/enterprise/WFK-2_1/examples/booking/booking-tests/src/test/java/org/jboss/seam/example/booking/test.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-11 10:47:02 -0400 (Thu, 11 Oct 2012)
New Revision: 15262
Modified:
branches/enterprise/WFK-2_1/examples/booking/booking-tests/src/test/java/org/jboss/seam/example/booking/test/BookingTest.java
Log:
cleanup
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-tests/src/test/java/org/jboss/seam/example/booking/test/BookingTest.java
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-tests/src/test/java/org/jboss/seam/example/booking/test/BookingTest.java 2012-10-11 14:46:50 UTC (rev 15261)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-tests/src/test/java/org/jboss/seam/example/booking/test/BookingTest.java 2012-10-11 14:47:02 UTC (rev 15262)
@@ -14,7 +14,6 @@
import org.jboss.arquillian.container.test.api.OverProtocol;
import org.jboss.arquillian.junit.Arquillian;
import org.jboss.seam.Component;
-import org.jboss.seam.annotations.In;
import org.jboss.seam.contexts.Contexts;
import org.jboss.seam.contexts.Lifecycle;
import org.jboss.seam.core.Manager;
13 years, 2 months
Seam SVN: r15261 - branches/enterprise/WFK-2_1/examples/blog/blog-ear.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-11 10:46:50 -0400 (Thu, 11 Oct 2012)
New Revision: 15261
Modified:
branches/enterprise/WFK-2_1/examples/blog/blog-ear/pom.xml
Log:
example blog-ear pom cleanup
Modified: branches/enterprise/WFK-2_1/examples/blog/blog-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/blog/blog-ear/pom.xml 2012-10-11 14:46:43 UTC (rev 15260)
+++ branches/enterprise/WFK-2_1/examples/blog/blog-ear/pom.xml 2012-10-11 14:46:50 UTC (rev 15261)
@@ -18,13 +18,11 @@
<dependency>
<groupId>org.jboss.seam.examples.blog</groupId>
<artifactId>blog-web</artifactId>
- <version>${project.version}</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.jboss.seam.examples.blog</groupId>
<artifactId>blog-ejb</artifactId>
- <version>${project.version}</version>
<type>ejb</type>
</dependency>
<dependency>
13 years, 2 months