Seam SVN: r15396 - branches/enterprise/WFK-2_1/seam-reference-guide/src/docbook/en-US.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2013-01-17 07:35:52 -0500 (Thu, 17 Jan 2013)
New Revision: 15396
Modified:
branches/enterprise/WFK-2_1/seam-reference-guide/src/docbook/en-US/Configuration.xml
branches/enterprise/WFK-2_1/seam-reference-guide/src/docbook/en-US/Jms.xml
Log:
JBSEAM-4925 fixed broken links in documentation
Modified: branches/enterprise/WFK-2_1/seam-reference-guide/src/docbook/en-US/Configuration.xml
===================================================================
--- branches/enterprise/WFK-2_1/seam-reference-guide/src/docbook/en-US/Configuration.xml 2013-01-17 12:35:44 UTC (rev 15395)
+++ branches/enterprise/WFK-2_1/seam-reference-guide/src/docbook/en-US/Configuration.xml 2013-01-17 12:35:52 UTC (rev 15396)
@@ -68,7 +68,7 @@
for a given view of a page you will need to specify the following context-param. Otherwise if a user
uses the "back" button a PAGE scoped component will have the latest value if it has changed not the
value of the "back" page. (see
- <ulink url="https://javaserverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id=295">
+ <ulink url="http://java.net/jira/browse/JAVASERVERFACES_SPEC_PUBLIC-1127">
Spec Issue
</ulink>
). This setting is not enabled by default because of the performance hit of serializing the JSF view
Modified: branches/enterprise/WFK-2_1/seam-reference-guide/src/docbook/en-US/Jms.xml
===================================================================
--- branches/enterprise/WFK-2_1/seam-reference-guide/src/docbook/en-US/Jms.xml 2013-01-17 12:35:44 UTC (rev 15395)
+++ branches/enterprise/WFK-2_1/seam-reference-guide/src/docbook/en-US/Jms.xml 2013-01-17 12:35:52 UTC (rev 15396)
@@ -324,7 +324,7 @@
<note>
<para>Please distinguish between
- <ulink url="http://java.sun.com/developer/technicalArticles/JavaEE/JavaEE6Overview_Pa...">
+ <ulink url="http://docs.oracle.com/javaee/6/api/javax/ejb/Asynchronous.html">
EJB 3.1 annotation
<literal>javax.ejb.Asynchronous</literal></ulink> and Seam annotation
<literal>org.jboss.seam.annotations.async.Asynchronous</literal>.
11 years, 10 months
Seam SVN: r15395 - in branches/enterprise/WFK-2_1/jboss-seam/src/main: java/org/jboss/seam/mock and 1 other directories.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2013-01-17 07:35:44 -0500 (Thu, 17 Jan 2013)
New Revision: 15395
Added:
branches/enterprise/WFK-2_1/jboss-seam/src/main/java/org/jboss/seam/jsf/SeamExceptionHandlerFactory.java
Modified:
branches/enterprise/WFK-2_1/jboss-seam/src/main/java/org/jboss/seam/mock/MockExternalContext.java
branches/enterprise/WFK-2_1/jboss-seam/src/main/resources/META-INF/faces-config.xml
Log:
JBSEAM-5045 Ajax handling for ExceptionFilter
Added: branches/enterprise/WFK-2_1/jboss-seam/src/main/java/org/jboss/seam/jsf/SeamExceptionHandlerFactory.java
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam/src/main/java/org/jboss/seam/jsf/SeamExceptionHandlerFactory.java (rev 0)
+++ branches/enterprise/WFK-2_1/jboss-seam/src/main/java/org/jboss/seam/jsf/SeamExceptionHandlerFactory.java 2013-01-17 12:35:44 UTC (rev 15395)
@@ -0,0 +1,49 @@
+package org.jboss.seam.jsf;
+
+import javax.faces.context.ExceptionHandler;
+import javax.faces.context.ExceptionHandlerFactory;
+import javax.faces.context.FacesContext;
+
+import org.jboss.seam.web.ExceptionFilter;
+
+import com.sun.faces.application.ApplicationAssociate;
+import com.sun.faces.context.AjaxExceptionHandlerImpl;
+import com.sun.faces.context.ExceptionHandlerImpl;
+
+
+
+/**
+ * Factory not to be used AjaxExceptionHandlerImpl class and
+ * always be an exception to be thrown by capturad ExceptionFilter
+ *
+ * @see AjaxExceptionHandlerImpl
+ * @see ExceptionFilter
+ * @author Tiago Peruzzo
+ *
+ */
+public class SeamExceptionHandlerFactory extends ExceptionHandlerFactory {
+
+ private ApplicationAssociate associate;
+
+
+ @Override
+ public ExceptionHandler getExceptionHandler() {
+ FacesContext fc = FacesContext.getCurrentInstance();
+ ApplicationAssociate associate = getAssociate(fc);
+ return new ExceptionHandlerImpl(((associate != null) ? associate.isErrorPagePresent() : Boolean.TRUE));
+ }
+
+
+ // --------------------------------------------------------- Private Methods
+
+ private ApplicationAssociate getAssociate(FacesContext ctx) {
+ if (associate == null) {
+ associate = ApplicationAssociate.getCurrentInstance();
+ if (associate == null) {
+ associate = ApplicationAssociate.getInstance(ctx.getExternalContext());
+ }
+ }
+ return associate;
+ }
+
+}
Modified: branches/enterprise/WFK-2_1/jboss-seam/src/main/java/org/jboss/seam/mock/MockExternalContext.java
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam/src/main/java/org/jboss/seam/mock/MockExternalContext.java 2013-01-17 12:35:32 UTC (rev 15394)
+++ branches/enterprise/WFK-2_1/jboss-seam/src/main/java/org/jboss/seam/mock/MockExternalContext.java 2013-01-17 12:35:44 UTC (rev 15395)
@@ -8,6 +8,7 @@
import java.io.IOException;
import java.io.InputStream;
+import java.io.Writer;
import java.net.MalformedURLException;
import java.net.URL;
import java.security.Principal;
@@ -21,20 +22,26 @@
import java.util.Locale;
import java.util.Map;
import java.util.Set;
+import java.util.logging.Level;
import javax.faces.context.ExternalContext;
import javax.faces.context.FacesContext;
+import javax.faces.context.PartialResponseWriter;
+import javax.faces.context.ResponseWriter;
import javax.servlet.ServletContext;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
+import org.jboss.seam.log.LogProvider;
+import org.jboss.seam.log.Logging;
import org.jboss.seam.util.EnumerationIterator;
/**
* @author Gavin King
* @author <a href="mailto:theute@jboss.org">Thomas Heute</a>
+ * @author Marek Novotny
* @version $Revision: 13963 $
*/
public class MockExternalContext extends ExternalContext
@@ -44,6 +51,8 @@
private HttpServletRequest request;
private HttpServletResponse response;
+
+ private static final LogProvider log = Logging.getLogProvider( MockExternalContext.class );
public MockExternalContext()
{
@@ -525,12 +534,64 @@
@Override
public void redirect(String url) throws IOException
{
- response.sendRedirect(url);
+ if ("partial/ajax".equals(this.request.getHeader("Faces-Request")))
+ {
+ this.response.setContentType("text/xml");
+ this.response.setCharacterEncoding("UTF-8");
+ this.response.addHeader("Cache-Control", "no-cache");
+ this.response.setStatus(HttpServletResponse.SC_OK);
+
+ FacesContext facesContext = FacesContext.getCurrentInstance();
+ PartialResponseWriter pwriter = facesContext.getPartialViewContext().getPartialResponseWriter();
+
+ if (pwriter == null)
+ {
+ pwriter = createPartialResponseWriter();
+ }
+ pwriter.startDocument();
+ pwriter.redirect(url);
+ pwriter.endDocument();
+ }
+ else
+ {
+ this.response.sendRedirect(url);
+ }
+
FacesContext.getCurrentInstance().responseComplete();
}
-
+ private PartialResponseWriter createPartialResponseWriter()
+ {
+ FacesContext facesCtx = FacesContext.getCurrentInstance();
+ ExternalContext externalCtx = facesCtx.getExternalContext();
+ String encoding = externalCtx.getRequestCharacterEncoding();
+ externalCtx.setResponseCharacterEncoding(encoding);
+ ResponseWriter responseWriter = null;
+ Writer outputWriter = null;
+ try
+ {
+ outputWriter = externalCtx.getResponseOutputWriter();
+ }
+ catch (IOException ioe)
+ {
+ log.error("couldn't get ResponseOutputWriter for Partial Ajax request", ioe);
+ }
+ if (outputWriter != null)
+ {
+ responseWriter = facesCtx.getRenderKit().createResponseWriter(outputWriter, "text/xml", encoding);
+ }
+ if (responseWriter instanceof PartialResponseWriter)
+ {
+ return (PartialResponseWriter) responseWriter;
+ }
+ else
+ {
+ return new PartialResponseWriter(responseWriter);
+ }
+
+ }
+
@Override
public void setRequest(Object myrequest)
{
Modified: branches/enterprise/WFK-2_1/jboss-seam/src/main/resources/META-INF/faces-config.xml
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam/src/main/resources/META-INF/faces-config.xml 2013-01-17 12:35:32 UTC (rev 15394)
+++ branches/enterprise/WFK-2_1/jboss-seam/src/main/resources/META-INF/faces-config.xml 2013-01-17 12:35:44 UTC (rev 15395)
@@ -6,6 +6,7 @@
<factory>
<application-factory>org.jboss.seam.jsf.SeamApplicationFactory</application-factory>
+ <exception-handler-factory>org.jboss.seam.jsf.SeamExceptionHandlerFactory</exception-handler-factory>
</factory>
<application>
11 years, 10 months
Seam SVN: r15394 - branches/enterprise/WFK-2_1/jboss-seam/src/main/java/org/jboss/seam/faces.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2013-01-17 07:35:32 -0500 (Thu, 17 Jan 2013)
New Revision: 15394
Modified:
branches/enterprise/WFK-2_1/jboss-seam/src/main/java/org/jboss/seam/faces/FacesManager.java
Log:
JBSEAM-5061 added check for empty parameter value
Modified: branches/enterprise/WFK-2_1/jboss-seam/src/main/java/org/jboss/seam/faces/FacesManager.java
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam/src/main/java/org/jboss/seam/faces/FacesManager.java 2013-01-17 12:35:23 UTC (rev 15393)
+++ branches/enterprise/WFK-2_1/jboss-seam/src/main/java/org/jboss/seam/faces/FacesManager.java 2013-01-17 12:35:32 UTC (rev 15394)
@@ -88,8 +88,12 @@
while ( tokens.hasMoreTokens() )
{
String name = tokens.nextToken();
- String value = Interpolator.instance().interpolate( tokens.nextToken() );
- parameters.put(name, value);
+ if (tokens.hasMoreTokens())
+ {
+ String value = Interpolator.instance().interpolate( tokens.nextToken() );
+ parameters.put(name, value);
+ }
+
}
url = url.substring(0, loc);
}
11 years, 10 months
Seam SVN: r15393 - branches/enterprise/WFK-2_1/examples/jee6/jee6-web/src/main/resources/META-INF.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2013-01-17 07:35:23 -0500 (Thu, 17 Jan 2013)
New Revision: 15393
Removed:
branches/enterprise/WFK-2_1/examples/jee6/jee6-web/src/main/resources/META-INF/ejb-jar.xml
branches/enterprise/WFK-2_1/examples/jee6/jee6-web/src/main/resources/META-INF/jboss-seam-booking-ds.xml
Log:
JBSEAM-4849 removed duplicated resources for jee6 example
Deleted: branches/enterprise/WFK-2_1/examples/jee6/jee6-web/src/main/resources/META-INF/ejb-jar.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/jee6/jee6-web/src/main/resources/META-INF/ejb-jar.xml 2013-01-17 12:35:14 UTC (rev 15392)
+++ branches/enterprise/WFK-2_1/examples/jee6/jee6-web/src/main/resources/META-INF/ejb-jar.xml 2013-01-17 12:35:23 UTC (rev 15393)
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<ejb-jar xmlns="http://java.sun.com/xml/ns/javaee"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd"
- version="3.0">
-
- <interceptors>
- <interceptor>
- <interceptor-class>org.jboss.seam.ejb.SeamInterceptor</interceptor-class>
- </interceptor>
- </interceptors>
-
- <assembly-descriptor>
- <interceptor-binding>
- <ejb-name>*</ejb-name>
- <interceptor-class>org.jboss.seam.ejb.SeamInterceptor</interceptor-class>
- </interceptor-binding>
- </assembly-descriptor>
-
-</ejb-jar>
Deleted: branches/enterprise/WFK-2_1/examples/jee6/jee6-web/src/main/resources/META-INF/jboss-seam-booking-ds.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/jee6/jee6-web/src/main/resources/META-INF/jboss-seam-booking-ds.xml 2013-01-17 12:35:14 UTC (rev 15392)
+++ branches/enterprise/WFK-2_1/examples/jee6/jee6-web/src/main/resources/META-INF/jboss-seam-booking-ds.xml 2013-01-17 12:35:23 UTC (rev 15393)
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<datasources xmlns="http://www.jboss.org/ironjacamar/schema">
- <datasource
- jndi-name="java:/bookingDatasource"
- enabled="true"
- use-java-context="true" pool-name="bookingdb">
- <connection-url>jdbc:h2:mem:bookingdb;DB_CLOSE_DELAY=-1</connection-url>
- <driver>h2</driver>
- <security>
- <user-name>sa</user-name>
- <password>sa</password>
- </security>
- </datasource>
-</datasources>
11 years, 10 months
Seam SVN: r15392 - branches/enterprise/WFK-2_1/jboss-seam-ui/src/main/java/org/jboss/seam/ui/graphicImage.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2013-01-17 07:35:14 -0500 (Thu, 17 Jan 2013)
New Revision: 15392
Modified:
branches/enterprise/WFK-2_1/jboss-seam-ui/src/main/java/org/jboss/seam/ui/graphicImage/Image.java
Log:
JBSEAM-4848 - added missing BMP image type
Modified: branches/enterprise/WFK-2_1/jboss-seam-ui/src/main/java/org/jboss/seam/ui/graphicImage/Image.java
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-ui/src/main/java/org/jboss/seam/ui/graphicImage/Image.java 2013-01-17 12:35:00 UTC (rev 15391)
+++ branches/enterprise/WFK-2_1/jboss-seam-ui/src/main/java/org/jboss/seam/ui/graphicImage/Image.java 2013-01-17 12:35:14 UTC (rev 15392)
@@ -44,7 +44,7 @@
public enum Type
{
IMAGE_PNG("image/png", ".png", "PNG"), IMAGE_JPEG("image/jpeg", ".jpg", "JPEG", "image/jpg"), IMAGE_GIF(
- "image/gif", ".gif", "GIF");
+ "image/gif", ".gif", "GIF"), IMAGE_BMP("image/bmp", ".bmp", "BMP");
private String mimeType;
11 years, 10 months
Seam SVN: r15391 - in branches/enterprise/WFK-2_1: examples/booking/booking-tests/src/test/resources-integration and 18 other directories.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2013-01-17 07:35:00 -0500 (Thu, 17 Jan 2013)
New Revision: 15391
Modified:
branches/enterprise/WFK-2_1/examples/blog/blog-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/booking/booking-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/contactlist/contactlist-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/excel/excel-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/hibernate/hibernate-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/itext/itext-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/jee6/jee6-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/jpa/jpa-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/mail/mail-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/messages/messages-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/quartz/quartz-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/registration/registration-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/restbay/restbay-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/seambay/seambay-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/seampay/seampay-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/tasks/tasks-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/jboss-seam-gen/dist/test/arquillian.xml
Log:
pass jacoco.agent property in integration tests arquillian.xml
Modified: branches/enterprise/WFK-2_1/examples/blog/blog-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/blog/blog-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:33:50 UTC (rev 15390)
+++ branches/enterprise/WFK-2_1/examples/blog/blog-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:35:00 UTC (rev 15391)
@@ -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>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:33:50 UTC (rev 15390)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:35:00 UTC (rev 15391)
@@ -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>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/contactlist/contactlist-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/contactlist/contactlist-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:33:50 UTC (rev 15390)
+++ branches/enterprise/WFK-2_1/examples/contactlist/contactlist-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:35:00 UTC (rev 15391)
@@ -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>
</configuration>
</container>
</arquillian>
\ No newline at end of file
Modified: branches/enterprise/WFK-2_1/examples/excel/excel-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/excel/excel-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:33:50 UTC (rev 15390)
+++ branches/enterprise/WFK-2_1/examples/excel/excel-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:35:00 UTC (rev 15391)
@@ -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>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/hibernate/hibernate-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/hibernate/hibernate-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:33:50 UTC (rev 15390)
+++ branches/enterprise/WFK-2_1/examples/hibernate/hibernate-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:35:00 UTC (rev 15391)
@@ -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>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/itext/itext-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/itext/itext-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:33:50 UTC (rev 15390)
+++ branches/enterprise/WFK-2_1/examples/itext/itext-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:35:00 UTC (rev 15391)
@@ -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>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/jee6/jee6-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/jee6/jee6-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:33:50 UTC (rev 15390)
+++ branches/enterprise/WFK-2_1/examples/jee6/jee6-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:35:00 UTC (rev 15391)
@@ -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>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/jpa/jpa-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/jpa/jpa-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:33:50 UTC (rev 15390)
+++ branches/enterprise/WFK-2_1/examples/jpa/jpa-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:35:00 UTC (rev 15391)
@@ -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>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/mail/mail-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/mail/mail-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:33:50 UTC (rev 15390)
+++ branches/enterprise/WFK-2_1/examples/mail/mail-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:35:00 UTC (rev 15391)
@@ -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>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/messages/messages-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/messages/messages-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:33:50 UTC (rev 15390)
+++ branches/enterprise/WFK-2_1/examples/messages/messages-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:35:00 UTC (rev 15391)
@@ -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>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:33:50 UTC (rev 15390)
+++ branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:35:00 UTC (rev 15391)
@@ -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>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/quartz/quartz-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/quartz/quartz-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:33:50 UTC (rev 15390)
+++ branches/enterprise/WFK-2_1/examples/quartz/quartz-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:35:00 UTC (rev 15391)
@@ -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>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/registration/registration-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/registration/registration-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:33:50 UTC (rev 15390)
+++ branches/enterprise/WFK-2_1/examples/registration/registration-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:35:00 UTC (rev 15391)
@@ -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>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/restbay/restbay-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/restbay/restbay-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:33:50 UTC (rev 15390)
+++ branches/enterprise/WFK-2_1/examples/restbay/restbay-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:35:00 UTC (rev 15391)
@@ -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>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/seambay/seambay-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seambay/seambay-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:33:50 UTC (rev 15390)
+++ branches/enterprise/WFK-2_1/examples/seambay/seambay-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:35:00 UTC (rev 15391)
@@ -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>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:33:50 UTC (rev 15390)
+++ branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:35:00 UTC (rev 15391)
@@ -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>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/seampay/seampay-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seampay/seampay-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:33:50 UTC (rev 15390)
+++ branches/enterprise/WFK-2_1/examples/seampay/seampay-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:35:00 UTC (rev 15391)
@@ -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>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:33:50 UTC (rev 15390)
+++ branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:35:00 UTC (rev 15391)
@@ -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>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/tasks/tasks-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/tasks/tasks-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:33:50 UTC (rev 15390)
+++ branches/enterprise/WFK-2_1/examples/tasks/tasks-tests/src/test/resources-integration/arquillian.xml 2013-01-17 12:35:00 UTC (rev 15391)
@@ -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>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/jboss-seam-gen/dist/test/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-gen/dist/test/arquillian.xml 2013-01-17 12:33:50 UTC (rev 15390)
+++ branches/enterprise/WFK-2_1/jboss-seam-gen/dist/test/arquillian.xml 2013-01-17 12:35:00 UTC (rev 15391)
@@ -13,7 +13,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">${jboss.home}</property>
<property name="serverConfig">standalone-full.xml</property>
</configuration>
11 years, 10 months
Seam SVN: r15390 - branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/exp.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2013-01-17 07:33:50 -0500 (Thu, 17 Jan 2013)
New Revision: 15390
Modified:
branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/exp/introExp.html
branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/exp/workspaceExp.html
Log:
fixed static html INPUT tag
Modified: branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/exp/introExp.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/exp/introExp.html 2013-01-17 11:26:08 UTC (rev 15389)
+++ branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/exp/introExp.html 2013-01-17 12:33:50 UTC (rev 15390)
@@ -18,7 +18,7 @@
<p>
<center>
<form>
- <INPUT type="button" value="Close Window" onclick="window.close()">
+ <input type="button" value="Close Window" onclick="window.close()"/>
</form>
</center>
</p>
@@ -61,7 +61,7 @@
<p>
<center>
<form>
- <INPUT type="button" value="Close Window" onclick="window.close()">
+ <input type="button" value="Close Window" onclick="window.close()"/>
</form>
</center>
</p>
Modified: branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/exp/workspaceExp.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/exp/workspaceExp.html 2013-01-17 11:26:08 UTC (rev 15389)
+++ branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/exp/workspaceExp.html 2013-01-17 12:33:50 UTC (rev 15390)
@@ -18,7 +18,7 @@
<p>
<center>
<form>
- <INPUT type="button" value="Close Window" onclick="window.close()">
+ <input type="button" value="Close Window" onclick="window.close()"/>
</form>
</center>
</p>
11 years, 10 months
Seam SVN: r15389 - in branches/enterprise/WFK-2_1: bom and 133 other directories.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2013-01-17 06:26:08 -0500 (Thu, 17 Jan 2013)
New Revision: 15389
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/pom.xml
branches/enterprise/WFK-2_1/examples/booking/booking-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/booking/booking-tests/pom.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/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/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/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/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/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/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/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/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/pom.xml
branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/pom.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/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/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-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-ui/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 from 2.3.0.Final-redhat-1 to 2.3.1.Final-redhat-1
Modified: branches/enterprise/WFK-2_1/bom/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/bom/pom.xml 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/bom/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<groupId>org.jboss.seam</groupId>
<artifactId>bom</artifactId>
<name>Seam 2 Bill Of Materials </name>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-1</version>
<packaging>pom</packaging>
<licenses>
@@ -31,7 +31,7 @@
<properties>
<!-- Version string properties -->
- <version.seam>2.3.0.Final-redhat-1</version.seam>
+ <version.seam>2.3.1.Final-redhat-1</version.seam>
<version.drools>5.3.0.BRMS</version.drools>
<version.resteasy>2.3.3.Final-redhat-1</version.resteasy>
<version.spring>3.1.1.RELEASE</version.spring>
Modified: branches/enterprise/WFK-2_1/build/common.build.xml
===================================================================
--- branches/enterprise/WFK-2_1/build/common.build.xml 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/build/common.build.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -46,6 +46,7 @@
<!-- User set properties, order of this and default properties is important! -->
<property file="${build.dir}/build.properties" />
+ <property name="complete.version" value="2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/distribution/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-parent</artifactId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/blog/blog-ear/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -5,7 +5,7 @@
<parent>
<artifactId>blog</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/blog/blog-ejb/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam.examples</groupId>
<artifactId>blog</artifactId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/blog/blog-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam.examples</groupId>
<artifactId>blog</artifactId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/blog/blog-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -6,7 +6,7 @@
<parent>
<artifactId>blog</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/blog/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-ear/pom.xml 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-ear/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-ejb/pom.xml 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-ejb/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-tests/pom.xml 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-web/pom.xml 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/booking/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/contactlist/contactlist-ear/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>contactlist</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/contactlist/contactlist-ejb/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>contactlist</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/contactlist/contactlist-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -5,7 +5,7 @@
<parent>
<artifactId>contactlist</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/contactlist/contactlist-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>contactlist</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/contactlist/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/excel/excel-ear/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>excel</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/excel/excel-ejb/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>excel</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/excel/excel-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>excel</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/excel/excel-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>excel</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/excel/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -6,7 +6,7 @@
<parent>
<artifactId>groovybooking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -6,7 +6,7 @@
<parent>
<artifactId>groovybooking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/groovybooking/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-1</version>
</parent>
<packaging>pom</packaging>
<name>Groovy Booking Example (EE6)</name>
Modified: branches/enterprise/WFK-2_1/examples/hibernate/hibernate-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/hibernate/hibernate-tests/pom.xml 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/hibernate/hibernate-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -7,7 +7,7 @@
<parent>
<artifactId>hibernate</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/hibernate/hibernate-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -6,7 +6,7 @@
<parent>
<artifactId>hibernate</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/hibernate/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/itext/itext-ear/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>itext</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/itext/itext-ejb/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>itext</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/itext/itext-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>itext</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/itext/itext-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>itext</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/itext/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/jee6/jee6-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jee6</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/jee6/jee6-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jee6</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/jee6/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/jpa/jpa-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -5,7 +5,7 @@
<parent>
<artifactId>jpa</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/jpa/jpa-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jpa</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/jpa/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/mail/mail-ear/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>mail</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/mail/mail-ejb/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>mail</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/mail/mail-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>mail</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/mail/mail-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>mail</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/mail/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/messages/messages-ear/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>messages</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/messages/messages-ejb/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>messages</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/messages/messages-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>messages</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/messages/messages-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>messages</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/messages/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-ear/pom.xml 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-ear/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>nestedbooking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-ejb/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>nestedbooking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>nestedbooking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>nestedbooking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/nestedbooking/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-1</version>
</parent>
<packaging>pom</packaging>
<name>Nested Booking 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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/openid/openid-ear/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>openid</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/openid/openid-ejb/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>openid</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/openid/openid-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>openid</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/openid/openid-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>openid</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/openid/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/quartz/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/quartz/quartz-ear/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>quartz</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/quartz/quartz-ejb/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>quartz</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/quartz/quartz-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>quartz</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/quartz/quartz-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>quartz</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/registration/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/registration/registration-ear/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>registration</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/registration/registration-ejb/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>registration</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/registration/registration-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>registration</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/registration/registration-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>registration</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-ear/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>chatroom</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-ejb/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>chatroom</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>chatroom</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>chatroom</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/remoting/chatroom/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/remoting/helloworld/helloworld-ear/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>helloworld</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/remoting/helloworld/helloworld-ejb/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>helloworld</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/remoting/helloworld/helloworld-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>helloworld</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/remoting/helloworld/helloworld-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>helloworld</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/remoting/helloworld/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/restbay/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/restbay/restbay-ear/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>restbay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/restbay/restbay-ejb/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>restbay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/restbay/restbay-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>restbay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/restbay/restbay-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>restbay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/seambay/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/seambay/seambay-ear/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seambay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/seambay/seambay-ejb/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seambay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/seambay/seambay-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seambay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/seambay/seambay-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seambay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/seamdiscs/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-ear/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamdiscs</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-ejb/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamdiscs</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamdiscs</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamdiscs</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/seampay/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/seampay/seampay-ear/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seampay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/seampay/seampay-ejb/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seampay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/seampay/seampay-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seampay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/seampay/seampay-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seampay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/seamspace/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-1</version>
</parent>
<packaging>pom</packaging>
<name>SeamSpace Example (EE6)</name>
Modified: branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ear/pom.xml 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ear/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamspace</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ejb/pom.xml 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ejb/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamspace</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/pom.xml 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamspace</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/examples/seamspace/seamspace-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamspace/seamspace-web/pom.xml 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/seamspace/seamspace-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamspace</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/spring/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/spring/spring-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>spring</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/spring/spring-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>spring</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/tasks/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/tasks/tasks-ear/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>tasks</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/tasks/tasks-ejb/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>tasks</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/tasks/tasks-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>tasks</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/tasks/tasks-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>tasks</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/ui/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/ui/ui-ear/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/ui/ui-ejb/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/ui/ui-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/examples/ui/ui-web/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/functional-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/jboss-seam/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-parent</artifactId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/jboss-seam-debug/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/jboss-seam-excel/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/jboss-seam-gen/dist/ivy/ivy-build.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -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-redhat-1/>
+ <property name="seam.version" value="2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/jboss-seam-gen/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-parent</artifactId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/jboss-seam-ioc/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/jboss-seam-mail/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -3,7 +3,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/jboss-seam-pdf/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -3,7 +3,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/jboss-seam-remoting/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/jboss-seam-resteasy/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/jboss-seam-ui/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jboss-seam-ui</artifactId>
Modified: branches/enterprise/WFK-2_1/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/pom.xml 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,13 +4,13 @@
<parent>
<groupId>org.jboss</groupId>
<artifactId>jboss-parent</artifactId>
- <version>8-redhat-1</version>
+ <version>9-redhat-1</version>
</parent>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-parent</artifactId>
<name>Seam Parent</name>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-1</version>
<packaging>pom</packaging>
<licenses>
@@ -45,7 +45,7 @@
<pdf.name>${project.artifactId}.pdf</pdf.name>
<!-- Version string properties -->
- <version.seam>2.3.0.Final-redhat-1</version.seam>
+ <version.seam>2.3.1.Final-redhat-1</version.seam>
<version.testng>5.14.10</version.testng>
<version.jacoco>0.5.8.201207111220</version.jacoco>
<version.jbossas7>7.1.1.Final</version.jbossas7>
Modified: branches/enterprise/WFK-2_1/seam-cdk-helper/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/seam-cdk-helper/pom.xml 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/seam-cdk-helper/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -5,7 +5,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/seam-integration-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/seam-integration-tests/pom.xml 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/seam-integration-tests/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.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 2013-01-17 08:44:39 UTC (rev 15388)
+++ branches/enterprise/WFK-2_1/seam-reference-guide/pom.xml 2013-01-17 11:26:08 UTC (rev 15389)
@@ -3,7 +3,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-1</version>
<relativePath>../pom.xml</relativePath>
</parent>
11 years, 10 months
Seam SVN: r15388 - branches/enterprise/WFK-2_1/examples/blog/blog-web/src/main/webapp/WEB-INF.
by seam-commits@lists.jboss.org
Author: vdedik
Date: 2013-01-17 03:44:39 -0500 (Thu, 17 Jan 2013)
New Revision: 15388
Modified:
branches/enterprise/WFK-2_1/examples/blog/blog-web/src/main/webapp/WEB-INF/pages.xml
Log:
Bug 878006 - Seam2.3 blog example uses org.hibernate.search.errors.EmptyQueryException
Modified: branches/enterprise/WFK-2_1/examples/blog/blog-web/src/main/webapp/WEB-INF/pages.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/blog/blog-web/src/main/webapp/WEB-INF/pages.xml 2013-01-10 11:36:21 UTC (rev 15387)
+++ branches/enterprise/WFK-2_1/examples/blog/blog-web/src/main/webapp/WEB-INF/pages.xml 2013-01-17 08:44:39 UTC (rev 15388)
@@ -58,10 +58,4 @@
<action execute="#{blog.hitCount.hit}"/>
</page>
- <exception class="org.hibernate.search.errors.EmptyQueryException">
- <redirect view-id="/search.xhtml">
- <message severity="warn">Given query is too simple. Try again.</message>
- </redirect>
- </exception>
-
</pages>
11 years, 10 months