Seam SVN: r15180 - branches/community/Seam_2_3/jboss-seam-ui/src/main/java/org/jboss/seam/ui.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-02 08:52:19 -0400 (Tue, 02 Oct 2012)
New Revision: 15180
Modified:
branches/community/Seam_2_3/jboss-seam-ui/src/main/java/org/jboss/seam/ui/ClientUidSelector.java
Log:
JBSEAM-4701 - added forgotten lines
Modified: branches/community/Seam_2_3/jboss-seam-ui/src/main/java/org/jboss/seam/ui/ClientUidSelector.java
===================================================================
--- branches/community/Seam_2_3/jboss-seam-ui/src/main/java/org/jboss/seam/ui/ClientUidSelector.java 2012-10-02 12:52:08 UTC (rev 15179)
+++ branches/community/Seam_2_3/jboss-seam-ui/src/main/java/org/jboss/seam/ui/ClientUidSelector.java 2012-10-02 12:52:19 UTC (rev 15180)
@@ -28,7 +28,12 @@
@Create
public void onCreate()
{
- setCookiePath(FacesContext.getCurrentInstance().getExternalContext().getRequestContextPath());
+ String requestContextPath = FacesContext.getCurrentInstance().getExternalContext().getRequestContextPath();
+ if (requestContextPath.isEmpty())
+ {
+ requestContextPath = "/";
+ }
+ setCookiePath(requestContextPath);
setCookieMaxAge(-1);
setCookieEnabled(true);
clientUid = getCookieValue();
@@ -36,9 +41,10 @@
public void seed()
{
- if (!isSet()) {
+ if (!isSet())
+ {
clientUid = RandomStringUtils.random(50, true, true);
- setCookieValueIfEnabled(clientUid);
+ setCookieValueIfEnabled(clientUid);
}
}
12 years, 2 months
Seam SVN: r15179 - branches/community/Seam_2_3.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-02 08:52:08 -0400 (Tue, 02 Oct 2012)
New Revision: 15179
Modified:
branches/community/Seam_2_3/release-process.txt
Log:
updated process for documentation uploading
Modified: branches/community/Seam_2_3/release-process.txt
===================================================================
--- branches/community/Seam_2_3/release-process.txt 2012-10-02 12:36:10 UTC (rev 15178)
+++ branches/community/Seam_2_3/release-process.txt 2012-10-02 12:52:08 UTC (rev 15179)
@@ -493,6 +493,13 @@
* Upload the "seam-reference-guide/target/*.war" file content to "docs.jboss.com/seam/<NEW VERSION>"
- Note: you need to setup SSH key for that- contact jboss.org team if you didn't have it
+ - Warning: if you updating/recreating latest symlinks for final releases, you need to create link
+ on local and then rsync all to remote.
+ for instance:
+ mkdir 2.3.0.Final;
+ extract seam-reference-guide/target/*.war into above created directory
+ ln -s 2.3.0.Final latest
+ rsync -rva --protocol=28 . seam@filemgmt.jboss.org:/docs_htdocs/seam/
* Create draft of the documentation and download pages on seamframework.org
- documentation points to "docs.jboss.com"
12 years, 2 months
Seam SVN: r15178 - branches/enterprise/JBPAPP_5_0/ui/src/main/java/org/jboss/seam/ui.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-02 08:36:10 -0400 (Tue, 02 Oct 2012)
New Revision: 15178
Modified:
branches/enterprise/JBPAPP_5_0/ui/src/main/java/org/jboss/seam/ui/ClientUidSelector.java
Log:
JBPAPP-7183
Modified: branches/enterprise/JBPAPP_5_0/ui/src/main/java/org/jboss/seam/ui/ClientUidSelector.java
===================================================================
--- branches/enterprise/JBPAPP_5_0/ui/src/main/java/org/jboss/seam/ui/ClientUidSelector.java 2012-10-02 12:04:25 UTC (rev 15177)
+++ branches/enterprise/JBPAPP_5_0/ui/src/main/java/org/jboss/seam/ui/ClientUidSelector.java 2012-10-02 12:36:10 UTC (rev 15178)
@@ -28,7 +28,12 @@
@Create
public void onCreate()
{
- setCookiePath(FacesContext.getCurrentInstance().getExternalContext().getRequestContextPath());
+ String requestContextPath = FacesContext.getCurrentInstance().getExternalContext().getRequestContextPath();
+ if (requestContextPath.isEmpty())
+ {
+ requestContextPath = "/";
+ }
+ setCookiePath(requestContextPath);
setCookieMaxAge(-1);
setCookieEnabled(true);
clientUid = getCookieValue();
12 years, 2 months
Seam SVN: r15177 - branches/enterprise/JBPAPP_5_0/build.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-02 08:04:25 -0400 (Tue, 02 Oct 2012)
New Revision: 15177
Modified:
branches/enterprise/JBPAPP_5_0/build/root.pom.xml
Log:
JBPAPP-9839, JBPAPP-9336 upgrade javassist to 3.12.0.SP1
Modified: branches/enterprise/JBPAPP_5_0/build/root.pom.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/build/root.pom.xml 2012-10-02 11:52:19 UTC (rev 15176)
+++ branches/enterprise/JBPAPP_5_0/build/root.pom.xml 2012-10-02 12:04:25 UTC (rev 15177)
@@ -630,7 +630,7 @@
<dependency>
<groupId>javassist</groupId>
<artifactId>javassist</artifactId>
- <version>3.12.0.GA</version>
+ <version>3.12.0.SP1</version>
</dependency>
<dependency>
12 years, 2 months
Seam SVN: r15176 - branches/enterprise/JBPAPP_5_0/build.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-02 07:52:19 -0400 (Tue, 02 Oct 2012)
New Revision: 15176
Modified:
branches/enterprise/JBPAPP_5_0/build/root.pom.xml
Log:
JBPAPP-8042 upgraded to 3.2.12
Modified: branches/enterprise/JBPAPP_5_0/build/root.pom.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/build/root.pom.xml 2012-10-02 08:43:55 UTC (rev 15175)
+++ branches/enterprise/JBPAPP_5_0/build/root.pom.xml 2012-10-02 11:52:19 UTC (rev 15176)
@@ -217,7 +217,7 @@
<dependency>
<groupId>org.jbpm.jbpm3</groupId>
<artifactId>jbpm-jpdl</artifactId>
- <version>3.2.11.SP2</version>
+ <version>3.2.12</version>
<exclusions>
<exclusion>
<groupId>org.hibernate</groupId>
12 years, 2 months
Seam SVN: r15175 - branches/enterprise/JBPAPP_5_0/src/main/org/jboss/seam/webservice.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-02 04:43:55 -0400 (Tue, 02 Oct 2012)
New Revision: 15175
Modified:
branches/enterprise/JBPAPP_5_0/src/main/org/jboss/seam/webservice/SOAPRequestHandler.java
Log:
JBPAPP-10075, JBPAPP-8376 adding SOAP header if not available in SOAP message.
Modified: branches/enterprise/JBPAPP_5_0/src/main/org/jboss/seam/webservice/SOAPRequestHandler.java
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/main/org/jboss/seam/webservice/SOAPRequestHandler.java 2012-10-01 13:29:18 UTC (rev 15174)
+++ branches/enterprise/JBPAPP_5_0/src/main/org/jboss/seam/webservice/SOAPRequestHandler.java 2012-10-02 08:43:55 UTC (rev 15175)
@@ -7,6 +7,7 @@
import javax.servlet.http.HttpServletRequest;
import javax.xml.namespace.QName;
import javax.xml.soap.SOAPElement;
+import javax.xml.soap.SOAPEnvelope;
import javax.xml.soap.SOAPException;
import javax.xml.soap.SOAPHeader;
import javax.xml.ws.handler.MessageContext;
@@ -105,12 +106,14 @@
SOAPMessageContext smc = (SOAPMessageContext) messageContext;
SOAPHeader header = smc.getMessage().getSOAPHeader();
- if (header != null)
+ if (header == null)
{
- SOAPElement element = header.addChildElement(CIDQN);
- element.addTextNode(conversationId);
- smc.getMessage().saveChanges();
- }
+ SOAPEnvelope envelope = smc.getMessage().getSOAPPart().getEnvelope();
+ header = envelope.addHeader();
+ }
+ SOAPElement element = header.addChildElement(CIDQN);
+ element.addTextNode(conversationId);
+ smc.getMessage().saveChanges();
}
Manager.instance().endRequest( new ServletRequestSessionMap(request) );
12 years, 2 months
Seam SVN: r15174 - in branches/enterprise/WFK-2_1: bom and 190 other directories.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-01 09:29:18 -0400 (Mon, 01 Oct 2012)
New Revision: 15174
Modified:
branches/enterprise/WFK-2_1/bom/pom.xml
branches/enterprise/WFK-2_1/build/common.build.xml
branches/enterprise/WFK-2_1/distribution/pom.xml
branches/enterprise/WFK-2_1/examples/blog/blog-ear/pom.xml
branches/enterprise/WFK-2_1/examples/blog/blog-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/blog/blog-tests/pom.xml
branches/enterprise/WFK-2_1/examples/blog/blog-web/pom.xml
branches/enterprise/WFK-2_1/examples/blog/pom.xml
branches/enterprise/WFK-2_1/examples/booking/booking-ear/build.xml
branches/enterprise/WFK-2_1/examples/booking/booking-ear/pom.xml
branches/enterprise/WFK-2_1/examples/booking/booking-ejb/build.xml
branches/enterprise/WFK-2_1/examples/booking/booking-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/booking/booking-tests/build.xml
branches/enterprise/WFK-2_1/examples/booking/booking-tests/pom.xml
branches/enterprise/WFK-2_1/examples/booking/booking-web/build.xml
branches/enterprise/WFK-2_1/examples/booking/booking-web/pom.xml
branches/enterprise/WFK-2_1/examples/booking/pom.xml
branches/enterprise/WFK-2_1/examples/contactlist/contactlist-ear/pom.xml
branches/enterprise/WFK-2_1/examples/contactlist/contactlist-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/contactlist/contactlist-tests/pom.xml
branches/enterprise/WFK-2_1/examples/contactlist/contactlist-web/pom.xml
branches/enterprise/WFK-2_1/examples/contactlist/pom.xml
branches/enterprise/WFK-2_1/examples/drools/drools-ear/pom.xml
branches/enterprise/WFK-2_1/examples/drools/drools-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/drools/drools-tests/pom.xml
branches/enterprise/WFK-2_1/examples/drools/drools-web/pom.xml
branches/enterprise/WFK-2_1/examples/drools/pom.xml
branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-ear/build.xml
branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-ear/pom.xml
branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-ejb/build.xml
branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-tests/build.xml
branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-tests/pom.xml
branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-web/build.xml
branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-web/pom.xml
branches/enterprise/WFK-2_1/examples/dvdstore/pom.xml
branches/enterprise/WFK-2_1/examples/excel/excel-ear/pom.xml
branches/enterprise/WFK-2_1/examples/excel/excel-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/excel/excel-tests/pom.xml
branches/enterprise/WFK-2_1/examples/excel/excel-web/pom.xml
branches/enterprise/WFK-2_1/examples/excel/pom.xml
branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-tests/pom.xml
branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/pom.xml
branches/enterprise/WFK-2_1/examples/groovybooking/pom.xml
branches/enterprise/WFK-2_1/examples/guice/guice-ear/pom.xml
branches/enterprise/WFK-2_1/examples/guice/guice-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/guice/guice-tests/pom.xml
branches/enterprise/WFK-2_1/examples/guice/guice-web/pom.xml
branches/enterprise/WFK-2_1/examples/guice/pom.xml
branches/enterprise/WFK-2_1/examples/hibernate/hibernate-tests/pom.xml
branches/enterprise/WFK-2_1/examples/hibernate/hibernate-web/pom.xml
branches/enterprise/WFK-2_1/examples/hibernate/pom.xml
branches/enterprise/WFK-2_1/examples/icefaces/icefaces-ear/pom.xml
branches/enterprise/WFK-2_1/examples/icefaces/icefaces-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/icefaces/icefaces-tests/pom.xml
branches/enterprise/WFK-2_1/examples/icefaces/icefaces-web/pom.xml
branches/enterprise/WFK-2_1/examples/icefaces/pom.xml
branches/enterprise/WFK-2_1/examples/itext/itext-ear/pom.xml
branches/enterprise/WFK-2_1/examples/itext/itext-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/itext/itext-tests/pom.xml
branches/enterprise/WFK-2_1/examples/itext/itext-web/pom.xml
branches/enterprise/WFK-2_1/examples/itext/pom.xml
branches/enterprise/WFK-2_1/examples/jee6/jee6-tests/pom.xml
branches/enterprise/WFK-2_1/examples/jee6/jee6-web/pom.xml
branches/enterprise/WFK-2_1/examples/jee6/pom.xml
branches/enterprise/WFK-2_1/examples/jpa/jpa-tests/pom.xml
branches/enterprise/WFK-2_1/examples/jpa/jpa-web/pom.xml
branches/enterprise/WFK-2_1/examples/jpa/pom.xml
branches/enterprise/WFK-2_1/examples/mail/mail-ear/pom.xml
branches/enterprise/WFK-2_1/examples/mail/mail-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/mail/mail-tests/pom.xml
branches/enterprise/WFK-2_1/examples/mail/mail-web/pom.xml
branches/enterprise/WFK-2_1/examples/mail/pom.xml
branches/enterprise/WFK-2_1/examples/messages/messages-ear/pom.xml
branches/enterprise/WFK-2_1/examples/messages/messages-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/messages/messages-tests/pom.xml
branches/enterprise/WFK-2_1/examples/messages/messages-web/pom.xml
branches/enterprise/WFK-2_1/examples/messages/pom.xml
branches/enterprise/WFK-2_1/examples/metawidget/booking/booking-ear/pom.xml
branches/enterprise/WFK-2_1/examples/metawidget/booking/booking-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/metawidget/booking/booking-tests/pom.xml
branches/enterprise/WFK-2_1/examples/metawidget/booking/booking-web/pom.xml
branches/enterprise/WFK-2_1/examples/metawidget/booking/pom.xml
branches/enterprise/WFK-2_1/examples/metawidget/groovybooking/groovybooking-tests/pom.xml
branches/enterprise/WFK-2_1/examples/metawidget/groovybooking/groovybooking-web/pom.xml
branches/enterprise/WFK-2_1/examples/metawidget/groovybooking/pom.xml
branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-ear/pom.xml
branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-tests/pom.xml
branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-web/pom.xml
branches/enterprise/WFK-2_1/examples/nestedbooking/pom.xml
branches/enterprise/WFK-2_1/examples/numberguess/numberguess-ear/pom.xml
branches/enterprise/WFK-2_1/examples/numberguess/numberguess-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/numberguess/numberguess-tests/pom.xml
branches/enterprise/WFK-2_1/examples/numberguess/numberguess-web/pom.xml
branches/enterprise/WFK-2_1/examples/numberguess/pom.xml
branches/enterprise/WFK-2_1/examples/openid/openid-ear/pom.xml
branches/enterprise/WFK-2_1/examples/openid/openid-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/openid/openid-tests/pom.xml
branches/enterprise/WFK-2_1/examples/openid/openid-web/pom.xml
branches/enterprise/WFK-2_1/examples/openid/pom.xml
branches/enterprise/WFK-2_1/examples/pom.xml
branches/enterprise/WFK-2_1/examples/quartz/pom.xml
branches/enterprise/WFK-2_1/examples/quartz/quartz-ear/pom.xml
branches/enterprise/WFK-2_1/examples/quartz/quartz-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/quartz/quartz-tests/pom.xml
branches/enterprise/WFK-2_1/examples/quartz/quartz-web/pom.xml
branches/enterprise/WFK-2_1/examples/registration/pom.xml
branches/enterprise/WFK-2_1/examples/registration/registration-ear/pom.xml
branches/enterprise/WFK-2_1/examples/registration/registration-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/registration/registration-tests/pom.xml
branches/enterprise/WFK-2_1/examples/registration/registration-web/pom.xml
branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-ear/pom.xml
branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-tests/pom.xml
branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-web/pom.xml
branches/enterprise/WFK-2_1/examples/remoting/chatroom/pom.xml
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ear/pom.xml
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-tests/pom.xml
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-web/pom.xml
branches/enterprise/WFK-2_1/examples/remoting/gwt/pom.xml
branches/enterprise/WFK-2_1/examples/remoting/helloworld/helloworld-ear/pom.xml
branches/enterprise/WFK-2_1/examples/remoting/helloworld/helloworld-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/remoting/helloworld/helloworld-tests/pom.xml
branches/enterprise/WFK-2_1/examples/remoting/helloworld/helloworld-web/pom.xml
branches/enterprise/WFK-2_1/examples/remoting/helloworld/pom.xml
branches/enterprise/WFK-2_1/examples/remoting/progressbar/pom.xml
branches/enterprise/WFK-2_1/examples/restbay/pom.xml
branches/enterprise/WFK-2_1/examples/restbay/restbay-ear/pom.xml
branches/enterprise/WFK-2_1/examples/restbay/restbay-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/restbay/restbay-tests/pom.xml
branches/enterprise/WFK-2_1/examples/restbay/restbay-web/pom.xml
branches/enterprise/WFK-2_1/examples/rss/pom.xml
branches/enterprise/WFK-2_1/examples/rss/rss-ear/pom.xml
branches/enterprise/WFK-2_1/examples/rss/rss-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/rss/rss-tests/pom.xml
branches/enterprise/WFK-2_1/examples/rss/rss-web/pom.xml
branches/enterprise/WFK-2_1/examples/seambay/pom.xml
branches/enterprise/WFK-2_1/examples/seambay/seambay-ear/pom.xml
branches/enterprise/WFK-2_1/examples/seambay/seambay-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/seambay/seambay-tests/pom.xml
branches/enterprise/WFK-2_1/examples/seambay/seambay-web/pom.xml
branches/enterprise/WFK-2_1/examples/seamdiscs/pom.xml
branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-ear/pom.xml
branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-tests/pom.xml
branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-web/pom.xml
branches/enterprise/WFK-2_1/examples/seampay/pom.xml
branches/enterprise/WFK-2_1/examples/seampay/seampay-ear/pom.xml
branches/enterprise/WFK-2_1/examples/seampay/seampay-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/seampay/seampay-tests/pom.xml
branches/enterprise/WFK-2_1/examples/seampay/seampay-web/pom.xml
branches/enterprise/WFK-2_1/examples/seamspace/pom.xml
branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ear/build.xml
branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ear/pom.xml
branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ejb/build.xml
branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/build.xml
branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/pom.xml
branches/enterprise/WFK-2_1/examples/seamspace/seamspace-web/build.xml
branches/enterprise/WFK-2_1/examples/seamspace/seamspace-web/pom.xml
branches/enterprise/WFK-2_1/examples/spring/pom.xml
branches/enterprise/WFK-2_1/examples/spring/spring-tests/pom.xml
branches/enterprise/WFK-2_1/examples/spring/spring-web/pom.xml
branches/enterprise/WFK-2_1/examples/tasks/pom.xml
branches/enterprise/WFK-2_1/examples/tasks/tasks-ear/pom.xml
branches/enterprise/WFK-2_1/examples/tasks/tasks-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/tasks/tasks-tests/pom.xml
branches/enterprise/WFK-2_1/examples/tasks/tasks-web/pom.xml
branches/enterprise/WFK-2_1/examples/todo/pom.xml
branches/enterprise/WFK-2_1/examples/todo/todo-ear/pom.xml
branches/enterprise/WFK-2_1/examples/todo/todo-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/todo/todo-tests/pom.xml
branches/enterprise/WFK-2_1/examples/todo/todo-web/pom.xml
branches/enterprise/WFK-2_1/examples/ui/pom.xml
branches/enterprise/WFK-2_1/examples/ui/ui-ear/pom.xml
branches/enterprise/WFK-2_1/examples/ui/ui-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/ui/ui-tests/pom.xml
branches/enterprise/WFK-2_1/examples/ui/ui-web/pom.xml
branches/enterprise/WFK-2_1/examples/wicket/pom.xml
branches/enterprise/WFK-2_1/examples/wicket/wicket-ear/pom.xml
branches/enterprise/WFK-2_1/examples/wicket/wicket-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/wicket/wicket-tests/pom.xml
branches/enterprise/WFK-2_1/examples/wicket/wicket-web/pom.xml
branches/enterprise/WFK-2_1/functional-tests/pom.xml
branches/enterprise/WFK-2_1/jboss-seam-debug/pom.xml
branches/enterprise/WFK-2_1/jboss-seam-excel/pom.xml
branches/enterprise/WFK-2_1/jboss-seam-flex/pom.xml
branches/enterprise/WFK-2_1/jboss-seam-gen/dist/ivy/ivy-build.xml
branches/enterprise/WFK-2_1/jboss-seam-gen/pom.xml
branches/enterprise/WFK-2_1/jboss-seam-ioc/pom.xml
branches/enterprise/WFK-2_1/jboss-seam-mail/pom.xml
branches/enterprise/WFK-2_1/jboss-seam-pdf/pom.xml
branches/enterprise/WFK-2_1/jboss-seam-remoting/pom.xml
branches/enterprise/WFK-2_1/jboss-seam-resteasy/pom.xml
branches/enterprise/WFK-2_1/jboss-seam-rss/pom.xml
branches/enterprise/WFK-2_1/jboss-seam-ui/pom.xml
branches/enterprise/WFK-2_1/jboss-seam-wicket/pom.xml
branches/enterprise/WFK-2_1/jboss-seam/pom.xml
branches/enterprise/WFK-2_1/pom.xml
branches/enterprise/WFK-2_1/seam-cdk-helper/pom.xml
branches/enterprise/WFK-2_1/seam-integration-tests/pom.xml
branches/enterprise/WFK-2_1/seam-reference-guide/pom.xml
Log:
changed version to 2.3.0.Final-redhat-1
Modified: branches/enterprise/WFK-2_1/bom/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/bom/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/bom/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<groupId>org.jboss.seam</groupId>
<artifactId>bom</artifactId>
<name>Seam 2 Bill Of Materials </name>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<packaging>pom</packaging>
<licenses>
@@ -31,7 +31,7 @@
<properties>
<!-- Version string properties -->
- <version.seam>2.3.0.Final</version.seam>
+ <version.seam>2.3.0.Final-redhat-1</version.seam>
<version.wicket>1.4.14</version.wicket>
<version.drools>5.3.3.Final</version.drools>
<version.resteasy>2.0.1.GA</version.resteasy>
Modified: branches/enterprise/WFK-2_1/build/common.build.xml
===================================================================
--- branches/enterprise/WFK-2_1/build/common.build.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/build/common.build.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -47,7 +47,7 @@
<!-- User set properties, order of this and default properties is important! -->
<property file="${seam.dir}/build.properties" />
- <property name="complete.version" value="2.3.0.Final" />
+ <property name="complete.version" value="2.3.0.Final-redhat-1 />
<condition property="mavenized.property">
<not>
Modified: branches/enterprise/WFK-2_1/distribution/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/distribution/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/distribution/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-parent</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
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-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/blog/blog-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -5,7 +5,7 @@
<parent>
<artifactId>blog</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/blog/blog-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/blog/blog-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/blog/blog-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam.examples</groupId>
<artifactId>blog</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/blog/blog-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/blog/blog-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/blog/blog-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam.examples</groupId>
<artifactId>blog</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/blog/blog-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/blog/blog-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/blog/blog-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -6,7 +6,7 @@
<parent>
<artifactId>blog</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/blog/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/blog/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/blog/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-ear/build.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-ear/build.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-ear/build.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -40,7 +40,7 @@
<artifact:dependencies pathId="project.classpath" filesetId="project.fileset">
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.Final" scope="compile">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.Final-redhat-1 scope="compile">
<exclusion groupId="org.testng" artifactId="testng"/>
<exclusion groupId="junit" artifactId="junit"/>
<exclusion groupId="org.jboss.spec.javax.faces" artifactId="jboss-jsf-api_2.0_spec"/>
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-ejb/build.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-ejb/build.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-ejb/build.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -55,7 +55,7 @@
<dependency groupId="org.javassist" artifactId="javassist" version="3.15.0-GA" scope="provided"/>
<dependency groupId="org.jboss.el" artifactId="jboss-el" version="1.0_02.CR6" scope="compile"/>
<dependency groupId="org.jboss.logging" artifactId="jboss-logging" version="3.1.0.CR2" scope="provided"/>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.Final" scope="compile">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.Final-redhat-1 scope="compile">
<exclusion groupId="org.testng" artifactId="testng"/>
<exclusion groupId="junit" artifactId="junit"/>
<exclusion groupId="org.jboss.spec.javax.faces" artifactId="jboss-jsf-api_2.0_spec"/>
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-tests/build.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-tests/build.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-tests/build.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -42,14 +42,14 @@
</artifact:dependencies>
<artifact:dependencies pathId="project.classpath">
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" scope="test" version="2.3.0.Final"/>
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" scope="test" version="2.3.0.Final-redhat-1/>
<dependency groupId="org.slf4j" artifactId="slf4j-log4j12" scope="test" version="1.6.1"/>
<dependency groupId="org.hibernate.javax.persistence" artifactId="hibernate-jpa-2.0-api" version="1.0.1.Final"/>
<dependency groupId="org.jboss.spec.javax.faces" artifactId="jboss-jsf-api_2.0_spec" version="1.0.0.Final"/>
<dependency groupId="javax.mail" artifactId="mail" version="1.4"/>
<dependency groupId="org.seleniumhq.selenium" artifactId="selenium-server" version="2.21.0"/>
<dependency groupId="org.seleniumhq.selenium" artifactId="selenium-java" version="2.21.0"/>
- <dependency groupId="org.jboss.seam" artifactId="functional-tests" scope="test" version="2.3.0.Final"/>
+ <dependency groupId="org.jboss.seam" artifactId="functional-tests" scope="test" version="2.3.0.Final-redhat-1/>
<dependency groupId="junit" artifactId="junit" scope="test" version="4.8.2"/>
<dependency groupId="org.jboss.arquillian.junit" artifactId="arquillian-junit-container" scope="test"
version="1.0.1.Final"/>
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-web/build.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-web/build.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-web/build.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -42,10 +42,10 @@
</artifact:dependencies>
<artifact:dependencies pathId="project.classpath" filesetId="project.fileset" useScope="runtime">
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam-ui" version="2.3.0.Final" scope="runtime">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam-ui" version="2.3.0.Final-redhat-1 scope="runtime">
<exclusion groupId="org.jboss.seam" artifactId="jboss-seam"/>
</dependency>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam-debug" version="2.3.0.Final"
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam-debug" version="2.3.0.Final-redhat-1
scope="compile">
<exclusion groupId="org.jboss.seam" artifactId="jboss-seam"/>
</dependency>
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/booking/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/booking/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<packaging>pom</packaging>
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-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/contactlist/contactlist-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>contactlist</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/contactlist/contactlist-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/contactlist/contactlist-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/contactlist/contactlist-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>contactlist</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/contactlist/contactlist-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/contactlist/contactlist-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/contactlist/contactlist-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -5,7 +5,7 @@
<parent>
<artifactId>contactlist</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/contactlist/contactlist-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/contactlist/contactlist-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/contactlist/contactlist-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>contactlist</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/contactlist/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/contactlist/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/contactlist/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/WFK-2_1/examples/drools/drools-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/drools/drools-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/drools/drools-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam.examples</groupId>
<artifactId>drools</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/drools/drools-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/drools/drools-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/drools/drools-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam.examples</groupId>
<artifactId>drools</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/drools/drools-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/drools/drools-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/drools/drools-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam.examples</groupId>
<artifactId>drools</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/drools/drools-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/drools/drools-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/drools/drools-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.seam.examples</groupId>
<artifactId>drools</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/drools/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/drools/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/drools/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-ear/build.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-ear/build.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-ear/build.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -40,7 +40,7 @@
<artifact:dependencies pathId="project.classpath" filesetId="project.fileset">
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.Final" scope="compile">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.Final-redhat-1 scope="compile">
<exclusion groupId="org.testng" artifactId="testng"/>
<exclusion groupId="junit" artifactId="junit"/>
<exclusion groupId="org.jboss.spec.javax.faces" artifactId="jboss-jsf-api_2.0_spec"/>
Modified: branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>dvdstore</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-ejb/build.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-ejb/build.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-ejb/build.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -44,7 +44,7 @@
scope="provided"/>
<dependency groupId="org.hibernate" artifactId="hibernate-validator" version="4.2.0.Final" scope="provided"/>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.Final" scope="compile">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.Final-redhat-1 scope="compile">
<exclusion groupId="org.testng" artifactId="testng"/>
<exclusion groupId="junit" artifactId="junit"/>
</dependency>
Modified: branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -5,7 +5,7 @@
<parent>
<artifactId>dvdstore</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-tests/build.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-tests/build.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-tests/build.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -67,14 +67,14 @@
<exclusion groupId="hsqldb" artifactId="hsqldb"/>
<exclusion groupId="org.jboss.logging" artifactId="jboss-logging"/>
</dependency>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" scope="compile" version="2.3.0.Final"/>
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" scope="compile" version="2.3.0.Final-redhat-1/>
<dependency groupId="org.slf4j" artifactId="slf4j-log4j12" scope="test" version="1.6.1"/>
<dependency groupId="org.hibernate.javax.persistence" artifactId="hibernate-jpa-2.0-api" version="1.0.1.Final"/>
<dependency groupId="org.jboss.spec.javax.faces" artifactId="jboss-jsf-api_2.0_spec" version="1.0.0.Final"/>
<dependency groupId="javax.mail" artifactId="mail" version="1.4"/>
<dependency groupId="org.seleniumhq.selenium" artifactId="selenium-server" version="2.21.0"/>
<dependency groupId="org.seleniumhq.selenium" artifactId="selenium-java" version="2.21.0"/>
- <dependency groupId="org.jboss.seam" artifactId="functional-tests" scope="test" version="2.3.0.Final"/>
+ <dependency groupId="org.jboss.seam" artifactId="functional-tests" scope="test" version="2.3.0.Final-redhat-1/>
<dependency groupId="junit" artifactId="junit" scope="test" version="4.8.2"/>
<dependency groupId="org.jboss.arquillian.junit" artifactId="arquillian-junit-container" scope="test"
version="1.0.1.Final"/>
@@ -103,7 +103,7 @@
</dependency>
<dependency groupId="org.beanshell" artifactId="bsh" version="2.0b4" scope="compile"/>
<dependency groupId="org.javassist" artifactId="javassist" version="3.15.0-GA" scope="compile"/>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" scope="compile" version="2.3.0.Final"/>
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" scope="compile" version="2.3.0.Final-redhat-1/>
</artifact:dependencies>
<path id="combined.project.classpath">
Modified: branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>dvdstore</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-web/build.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-web/build.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-web/build.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -42,10 +42,10 @@
</artifact:dependencies>
<artifact:dependencies pathId="project.classpath" filesetId="project.fileset" useScope="runtime">
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam-ui" version="2.3.0.Final" scope="runtime">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam-ui" version="2.3.0.Final-redhat-1 scope="runtime">
<exclusion groupId="org.jboss.seam" artifactId="jboss-seam"/>
</dependency>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam-debug" version="2.3.0.Final"
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam-debug" version="2.3.0.Final-redhat-1
scope="compile">
<exclusion groupId="org.jboss.seam" artifactId="jboss-seam"/>
</dependency>
Modified: branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/dvdstore/dvdstore-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>dvdstore</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/dvdstore/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/dvdstore/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/dvdstore/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/WFK-2_1/examples/excel/excel-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/excel/excel-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/excel/excel-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>excel</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/excel/excel-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/excel/excel-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/excel/excel-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>excel</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/excel/excel-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/excel/excel-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/excel/excel-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>excel</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/excel/excel-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/excel/excel-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/excel/excel-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>excel</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/excel/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/excel/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/excel/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -6,7 +6,7 @@
<parent>
<artifactId>groovybooking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -6,7 +6,7 @@
<parent>
<artifactId>groovybooking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/groovybooking/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/groovybooking/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/groovybooking/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<packaging>pom</packaging>
<name>Groovy Booking Example (EE6)</name>
Modified: branches/enterprise/WFK-2_1/examples/guice/guice-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/guice/guice-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/guice/guice-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>guice</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/guice/guice-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/guice/guice-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/guice/guice-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>guice</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/guice/guice-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/guice/guice-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/guice/guice-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -7,7 +7,7 @@
<parent>
<artifactId>guice</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/guice/guice-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/guice/guice-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/guice/guice-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -5,7 +5,7 @@
<parent>
<artifactId>guice</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/guice/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/guice/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/guice/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/WFK-2_1/examples/hibernate/hibernate-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/hibernate/hibernate-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/hibernate/hibernate-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -7,7 +7,7 @@
<parent>
<artifactId>hibernate</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/hibernate/hibernate-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/hibernate/hibernate-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/hibernate/hibernate-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -6,7 +6,7 @@
<parent>
<artifactId>hibernate</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/hibernate/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/hibernate/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/hibernate/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/WFK-2_1/examples/icefaces/icefaces-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/icefaces/icefaces-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/icefaces/icefaces-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>icefaces</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/icefaces/icefaces-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/icefaces/icefaces-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/icefaces/icefaces-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -5,7 +5,7 @@
<parent>
<artifactId>icefaces</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/icefaces/icefaces-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/icefaces/icefaces-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/icefaces/icefaces-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>icefaces</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/icefaces/icefaces-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/icefaces/icefaces-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/icefaces/icefaces-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -5,7 +5,7 @@
<parent>
<artifactId>icefaces</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/icefaces/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/icefaces/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/icefaces/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/WFK-2_1/examples/itext/itext-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/itext/itext-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/itext/itext-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>itext</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/itext/itext-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/itext/itext-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/itext/itext-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>itext</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/itext/itext-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/itext/itext-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/itext/itext-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>itext</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/itext/itext-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/itext/itext-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/itext/itext-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>itext</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/itext/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/itext/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/itext/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/WFK-2_1/examples/jee6/jee6-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/jee6/jee6-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/jee6/jee6-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jee6</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/jee6/jee6-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/jee6/jee6-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/jee6/jee6-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jee6</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/jee6/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/jee6/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/jee6/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<packaging>pom</packaging>
Modified: branches/enterprise/WFK-2_1/examples/jpa/jpa-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/jpa/jpa-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/jpa/jpa-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -5,7 +5,7 @@
<parent>
<artifactId>jpa</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/jpa/jpa-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/jpa/jpa-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/jpa/jpa-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jpa</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/jpa/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/jpa/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/jpa/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<packaging>pom</packaging>
<name>JPA Example (EE6)</name>
Modified: branches/enterprise/WFK-2_1/examples/mail/mail-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/mail/mail-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/mail/mail-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>mail</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/mail/mail-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/mail/mail-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/mail/mail-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>mail</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/mail/mail-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/mail/mail-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/mail/mail-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>mail</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/mail/mail-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/mail/mail-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/mail/mail-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>mail</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/mail/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/mail/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/mail/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<packaging>pom</packaging>
Modified: branches/enterprise/WFK-2_1/examples/messages/messages-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/messages/messages-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/messages/messages-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>messages</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/messages/messages-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/messages/messages-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/messages/messages-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>messages</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/messages/messages-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/messages/messages-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/messages/messages-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>messages</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/messages/messages-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/messages/messages-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/messages/messages-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>messages</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/messages/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/messages/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/messages/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/WFK-2_1/examples/metawidget/booking/booking-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/metawidget/booking/booking-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/metawidget/booking/booking-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.seam.examples.metawidget</groupId>
<artifactId>booking</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/metawidget/booking/booking-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/metawidget/booking/booking-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/metawidget/booking/booking-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples.metawidget</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/metawidget/booking/booking-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/metawidget/booking/booking-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/metawidget/booking/booking-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples.metawidget</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/metawidget/booking/booking-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/metawidget/booking/booking-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/metawidget/booking/booking-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples.metawidget</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/metawidget/booking/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/metawidget/booking/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/metawidget/booking/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<packaging>pom</packaging>
Modified: branches/enterprise/WFK-2_1/examples/metawidget/groovybooking/groovybooking-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/metawidget/groovybooking/groovybooking-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/metawidget/groovybooking/groovybooking-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -5,7 +5,7 @@
<parent>
<artifactId>groovybooking</artifactId>
<groupId>org.jboss.seam.examples.metawidget</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/metawidget/groovybooking/groovybooking-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/metawidget/groovybooking/groovybooking-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/metawidget/groovybooking/groovybooking-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>groovybooking</artifactId>
<groupId>org.jboss.seam.examples.metawidget</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/metawidget/groovybooking/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/metawidget/groovybooking/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/metawidget/groovybooking/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<packaging>pom</packaging>
Modified: branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>nestedbooking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>nestedbooking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>nestedbooking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>nestedbooking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/nestedbooking/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/nestedbooking/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/nestedbooking/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<packaging>pom</packaging>
<name>Nested Booking Example (EE6)</name>
Modified: branches/enterprise/WFK-2_1/examples/numberguess/numberguess-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/numberguess/numberguess-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/numberguess/numberguess-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -5,7 +5,7 @@
<parent>
<artifactId>numberguess</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/numberguess/numberguess-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/numberguess/numberguess-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/numberguess/numberguess-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -5,7 +5,7 @@
<parent>
<artifactId>numberguess</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/numberguess/numberguess-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/numberguess/numberguess-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/numberguess/numberguess-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -5,7 +5,7 @@
<parent>
<artifactId>numberguess</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/numberguess/numberguess-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/numberguess/numberguess-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/numberguess/numberguess-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -5,7 +5,7 @@
<parent>
<artifactId>numberguess</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/numberguess/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/numberguess/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/numberguess/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<packaging>pom</packaging>
<name>Numberguess Example (EE6)</name>
Modified: branches/enterprise/WFK-2_1/examples/openid/openid-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/openid/openid-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/openid/openid-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>openid</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/openid/openid-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/openid/openid-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/openid/openid-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>openid</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/openid/openid-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/openid/openid-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/openid/openid-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>openid</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
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-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/openid/openid-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>openid</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/openid/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/openid/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/openid/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/WFK-2_1/examples/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<packaging>pom</packaging>
<name>Seam 2 EE 6 examples</name>
Modified: branches/enterprise/WFK-2_1/examples/quartz/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/quartz/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/quartz/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<packaging>pom</packaging>
<name>Quartz Example (EE6)</name>
Modified: branches/enterprise/WFK-2_1/examples/quartz/quartz-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/quartz/quartz-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/quartz/quartz-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>quartz</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/quartz/quartz-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/quartz/quartz-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/quartz/quartz-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>quartz</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/quartz/quartz-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/quartz/quartz-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/quartz/quartz-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>quartz</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
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-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/quartz/quartz-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>quartz</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/registration/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/registration/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/registration/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/WFK-2_1/examples/registration/registration-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/registration/registration-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/registration/registration-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>registration</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/registration/registration-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/registration/registration-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/registration/registration-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>registration</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/registration/registration-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/registration/registration-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/registration/registration-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>registration</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
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-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/registration/registration-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>registration</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>chatroom</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>chatroom</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>chatroom</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
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-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>chatroom</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/remoting/chatroom/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/chatroom/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/remoting/chatroom/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>gwt</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>gwt</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>gwt</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>gwt</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/remoting/gwt/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/remoting/helloworld/helloworld-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/helloworld/helloworld-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/remoting/helloworld/helloworld-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>helloworld</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/remoting/helloworld/helloworld-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/helloworld/helloworld-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/remoting/helloworld/helloworld-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>helloworld</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/remoting/helloworld/helloworld-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/helloworld/helloworld-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/remoting/helloworld/helloworld-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>helloworld</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/remoting/helloworld/helloworld-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/helloworld/helloworld-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/remoting/helloworld/helloworld-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>helloworld</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/remoting/helloworld/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/helloworld/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/remoting/helloworld/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/remoting/progressbar/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/progressbar/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/remoting/progressbar/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/restbay/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/restbay/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/restbay/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<packaging>pom</packaging>
<name>Restbay Example (EE6)</name>
Modified: branches/enterprise/WFK-2_1/examples/restbay/restbay-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/restbay/restbay-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/restbay/restbay-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>restbay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/restbay/restbay-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/restbay/restbay-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/restbay/restbay-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>restbay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/restbay/restbay-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/restbay/restbay-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/restbay/restbay-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>restbay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
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-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/restbay/restbay-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>restbay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/rss/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/rss/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/rss/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/WFK-2_1/examples/rss/rss-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/rss/rss-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/rss/rss-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>rss</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/rss/rss-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/rss/rss-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/rss/rss-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>rss</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/rss/rss-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/rss/rss-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/rss/rss-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>rss</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/rss/rss-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/rss/rss-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/rss/rss-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>rss</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/seambay/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seambay/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/seambay/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<packaging>pom</packaging>
<name>Seambay Example (EE6)</name>
Modified: branches/enterprise/WFK-2_1/examples/seambay/seambay-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seambay/seambay-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/seambay/seambay-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seambay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/seambay/seambay-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seambay/seambay-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/seambay/seambay-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seambay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/seambay/seambay-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seambay/seambay-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/seambay/seambay-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seambay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/seambay/seambay-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seambay/seambay-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/seambay/seambay-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seambay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/seamdiscs/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamdiscs/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/seamdiscs/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<packaging>pom</packaging>
<name>Seamdiscs Example</name>
Modified: branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamdiscs</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamdiscs</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamdiscs</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamdiscs</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/seampay/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seampay/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/seampay/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<packaging>pom</packaging>
<name>Seampay Example (EE6)</name>
Modified: branches/enterprise/WFK-2_1/examples/seampay/seampay-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seampay/seampay-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/seampay/seampay-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seampay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/seampay/seampay-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seampay/seampay-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/seampay/seampay-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seampay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/seampay/seampay-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seampay/seampay-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/seampay/seampay-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seampay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/seampay/seampay-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seampay/seampay-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/seampay/seampay-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seampay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/seamspace/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamspace/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/seamspace/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<packaging>pom</packaging>
<name>SeamSpace Example (EE6)</name>
Modified: branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ear/build.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ear/build.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ear/build.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -40,7 +40,7 @@
<artifact:dependencies pathId="project.classpath" filesetId="project.fileset">
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.Final" scope="compile">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.Final-redhat-1 scope="compile">
<exclusion groupId="org.testng" artifactId="testng"/>
<exclusion groupId="junit" artifactId="junit"/>
<exclusion groupId="org.jboss.spec.javax.faces" artifactId="jboss-jsf-api_2.0_spec"/>
@@ -65,7 +65,7 @@
<dependency groupId="org.hibernate" artifactId="hibernate-validator" version="4.2.0.Final" scope="provided"/>
<dependency groupId="org.hibernate.javax.persistence" artifactId="hibernate-jpa-2.0-api" version="1.0.1.Final"
scope="provided"/>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.Final" scope="compile">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.Final-redhat-1 scope="compile">
<exclusion groupId="org.testng" artifactId="testng"/>
<exclusion groupId="junit" artifactId="junit"/>
<exclusion groupId="org.jboss.spec.javax.faces" artifactId="jboss-jsf-api_2.0_spec"/>
Modified: branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamspace</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ejb/build.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ejb/build.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ejb/build.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -45,7 +45,7 @@
<dependency groupId="org.hibernate" artifactId="hibernate-validator" version="4.2.0.Final" scope="provided"/>
<dependency groupId="org.hibernate.javax.persistence" artifactId="hibernate-jpa-2.0-api" version="1.0.1.Final"
scope="provided"/>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.Final" scope="compile">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.Final-redhat-1 scope="compile">
<exclusion groupId="org.testng" artifactId="testng"/>
<exclusion groupId="junit" artifactId="junit"/>
<exclusion groupId="org.jboss.spec.javax.faces" artifactId="jboss-jsf-api_2.0_spec"/>
Modified: branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamspace</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/build.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/build.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/build.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -46,14 +46,14 @@
</artifact:dependencies>
<artifact:dependencies pathId="project.classpath" filesetId="project.fileset">
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" scope="test" version="2.3.0.Final"/>
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" scope="test" version="2.3.0.Final-redhat-1/>
<dependency groupId="org.slf4j" artifactId="slf4j-log4j12" scope="test" version="1.6.1"/>
<dependency groupId="org.hibernate.javax.persistence" scope="test" artifactId="hibernate-jpa-2.0-api" version="1.0.1.Final"/>
<dependency groupId="org.jboss.spec.javax.faces" scope="test" artifactId="jboss-jsf-api_2.0_spec" version="1.0.0.Final"/>
<dependency groupId="javax.mail" artifactId="mail" version="1.4"/>
<dependency groupId="org.seleniumhq.selenium" artifactId="selenium-server" version="2.21.0"/>
<dependency groupId="org.seleniumhq.selenium" artifactId="selenium-java" version="2.21.0"/>
- <dependency groupId="org.jboss.seam" artifactId="functional-tests" scope="test" version="2.3.0.Final"/>
+ <dependency groupId="org.jboss.seam" artifactId="functional-tests" scope="test" version="2.3.0.Final-redhat-1/>
<dependency groupId="junit" artifactId="junit" scope="test" version="4.8.2"/>
<dependency groupId="org.jboss.arquillian.junit" artifactId="arquillian-junit-container" scope="test"
version="1.0.1.Final"/>
Modified: branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamspace</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/seamspace/seamspace-web/build.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamspace/seamspace-web/build.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/seamspace/seamspace-web/build.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -42,10 +42,10 @@
</artifact:dependencies>
<artifact:dependencies pathId="project.classpath" filesetId="project.fileset" useScope="runtime">
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam-ui" version="2.3.0.Final" scope="runtime">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam-ui" version="2.3.0.Final-redhat-1 scope="runtime">
<exclusion groupId="org.jboss.seam" artifactId="jboss-seam"/>
</dependency>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam-debug" version="2.3.0.Final"
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam-debug" version="2.3.0.Final-redhat-1
scope="compile">
<exclusion groupId="org.jboss.seam" artifactId="jboss-seam"/>
</dependency>
Modified: branches/enterprise/WFK-2_1/examples/seamspace/seamspace-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamspace/seamspace-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/seamspace/seamspace-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamspace</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/spring/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/spring/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/spring/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<packaging>pom</packaging>
<name>Spring Example (EE6)</name>
Modified: branches/enterprise/WFK-2_1/examples/spring/spring-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/spring/spring-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/spring/spring-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>spring</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/spring/spring-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/spring/spring-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/spring/spring-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>spring</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/tasks/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/tasks/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/tasks/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<packaging>pom</packaging>
<name>Tasks Example (EE6)</name>
Modified: branches/enterprise/WFK-2_1/examples/tasks/tasks-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/tasks/tasks-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/tasks/tasks-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>tasks</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/tasks/tasks-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/tasks/tasks-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/tasks/tasks-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>tasks</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/tasks/tasks-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/tasks/tasks-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/tasks/tasks-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>tasks</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/tasks/tasks-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/tasks/tasks-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/tasks/tasks-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>tasks</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/todo/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/todo/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/todo/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<packaging>pom</packaging>
Modified: branches/enterprise/WFK-2_1/examples/todo/todo-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/todo/todo-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/todo/todo-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>todo</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/todo/todo-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/todo/todo-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/todo/todo-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>todo</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/todo/todo-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/todo/todo-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/todo/todo-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>todo</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/todo/todo-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/todo/todo-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/todo/todo-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>todo</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/ui/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/ui/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/ui/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/ui/ui-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/ui/ui-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/ui/ui-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/ui/ui-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/ui/ui-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/ui/ui-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/ui/ui-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/ui/ui-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/ui/ui-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/ui/ui-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/ui/ui-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/ui/ui-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/wicket/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/wicket/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/wicket/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
</parent>
<packaging>pom</packaging>
<name>Wicket Booking Example (EE6)</name>
Modified: branches/enterprise/WFK-2_1/examples/wicket/wicket-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/wicket/wicket-ear/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/wicket/wicket-ear/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>wicket</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/wicket/wicket-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/wicket/wicket-ejb/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/wicket/wicket-ejb/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>wicket</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/wicket/wicket-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/wicket/wicket-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/wicket/wicket-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>wicket</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/wicket/wicket-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/wicket/wicket-web/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/examples/wicket/wicket-web/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>wicket</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/functional-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/functional-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/functional-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/jboss-seam/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/jboss-seam/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-parent</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/jboss-seam-debug/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-debug/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/jboss-seam-debug/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/WFK-2_1/jboss-seam-excel/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-excel/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/jboss-seam-excel/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/WFK-2_1/jboss-seam-flex/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-flex/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/jboss-seam-flex/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/WFK-2_1/jboss-seam-gen/dist/ivy/ivy-build.xml
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-gen/dist/ivy/ivy-build.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/jboss-seam-gen/dist/ivy/ivy-build.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -9,7 +9,7 @@
<property name="jboss.repo" value="http://repository.jboss.org/nexus/content/groups/public"/>
<!-- centralize some key artifact versions -->
- <property name="seam.version" value="2.3.0.Final"/>
+ <property name="seam.version" value="2.3.0.Final-redhat-1/>
<!--<property name="jsf.version" value="1.2_12"/>
<property name="richfaces.version" value="3.3.3.Final"/>
<property name="icefaces.version" value="1.8.1"/>
Modified: branches/enterprise/WFK-2_1/jboss-seam-gen/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-gen/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/jboss-seam-gen/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-parent</artifactId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/jboss-seam-ioc/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-ioc/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/jboss-seam-ioc/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/WFK-2_1/jboss-seam-mail/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-mail/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/jboss-seam-mail/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -3,7 +3,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/jboss-seam-pdf/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-pdf/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/jboss-seam-pdf/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -3,7 +3,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/jboss-seam-remoting/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-remoting/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/jboss-seam-remoting/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/WFK-2_1/jboss-seam-resteasy/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-resteasy/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/jboss-seam-resteasy/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/WFK-2_1/jboss-seam-rss/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-rss/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/jboss-seam-rss/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/WFK-2_1/jboss-seam-ui/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-ui/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/jboss-seam-ui/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jboss-seam-ui</artifactId>
@@ -44,7 +44,7 @@
<plugin>
<groupId>org.jboss.seam</groupId>
<artifactId>seam-cdk-helper</artifactId>
- <version>1.0</version>
+ <version>1.0-redhat-1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/WFK-2_1/jboss-seam-wicket/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-wicket/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/jboss-seam-wicket/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -3,7 +3,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -10,7 +10,7 @@
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-parent</artifactId>
<name>Seam Parent</name>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<packaging>pom</packaging>
<licenses>
@@ -44,7 +44,7 @@
<pdf.name>${project.artifactId}.pdf</pdf.name>
<!-- Version string properties -->
- <version.seam>2.3.0.Final</version.seam>
+ <version.seam>2.3.0.Final-redhat-1</version.seam>
<version.arquillian_core>1.0.1.Final</version.arquillian_core>
<version.wicket>1.4.14</version.wicket>
<version.testng>5.14.10</version.testng>
Modified: branches/enterprise/WFK-2_1/seam-cdk-helper/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/seam-cdk-helper/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/seam-cdk-helper/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -5,13 +5,13 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>seam-cdk-helper</artifactId>
<packaging>maven-plugin</packaging>
- <version>1.0</version>
+ <version>1.0-redhat-1</version>
<name>Seam 2.3 CDK Helper for using RF 4 CDK</name>
<url>http://seamframework.org</url>
<dependencies>
Modified: branches/enterprise/WFK-2_1/seam-integration-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/seam-integration-tests/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/seam-integration-tests/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/seam-reference-guide/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/seam-reference-guide/pom.xml 2012-10-01 07:40:10 UTC (rev 15173)
+++ branches/enterprise/WFK-2_1/seam-reference-guide/pom.xml 2012-10-01 13:29:18 UTC (rev 15174)
@@ -3,7 +3,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final</version>
+ <version>2.3.0.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
12 years, 2 months
Seam SVN: r15173 - branches/enterprise.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-01 03:40:10 -0400 (Mon, 01 Oct 2012)
New Revision: 15173
Added:
branches/enterprise/WFK-2_1/
Log:
created branch WFK_2_1 from JBoss_Seam_2_3_0_Final tag
12 years, 2 months
Seam SVN: r15172 - branches/community/Seam_2_3/seam-integration-tests/src/test/resources-jbossas-7.
by seam-commits@lists.jboss.org
Author: maschmid
Date: 2012-10-01 03:15:13 -0400 (Mon, 01 Oct 2012)
New Revision: 15172
Modified:
branches/community/Seam_2_3/seam-integration-tests/src/test/resources-jbossas-7/arquillian.xml
Log:
integration tests, pass jacoco.agent property to managed as7
Modified: branches/community/Seam_2_3/seam-integration-tests/src/test/resources-jbossas-7/arquillian.xml
===================================================================
--- branches/community/Seam_2_3/seam-integration-tests/src/test/resources-jbossas-7/arquillian.xml 2012-09-27 13:48:14 UTC (rev 15171)
+++ branches/community/Seam_2_3/seam-integration-tests/src/test/resources-jbossas-7/arquillian.xml 2012-10-01 07:15:13 UTC (rev 15172)
@@ -9,7 +9,7 @@
<container qualifier="jboss" default="true">
<configuration>
- <property name="javaVmArguments">-Xmx1024m -XX:MaxPermSize=512m</property>
+ <property name="javaVmArguments">-Xmx1024m -XX:MaxPermSize=512m ${jacoco.agent}</property>
<property name="jbossHome">target/jboss-as-${version.jbossas7}</property>
<property name="serverConfig">standalone-full.xml</property>
</configuration>
12 years, 2 months