[seam2/jboss-seam] 1b4834: JBSEAM-5085 fixed ViewUrlBuilder to not break Page...
by GitHub
Branch: refs/heads/Seam_2_3
Home: https://github.com/seam2/jboss-seam
Commit: 1b4834c8e61a7aa303ab196da297e10b9468cab6
https://github.com/seam2/jboss-seam/commit/1b4834c8e61a7aa303ab196da297e1...
Author: Marek Novotný <hotmana76(a)gmail.com>
Date: 2013-05-17 (Fri, 17 May 2013)
Changed paths:
M jboss-seam-ui/src/main/java/org/jboss/seam/ui/util/ViewUrlBuilder.java
A seam-integration-tests/src/test/java/org/jboss/seam/test/integration/faces/TestComponent.java
A seam-integration-tests/src/test/java/org/jboss/seam/test/integration/faces/ViewUrlBuilderTest.java
A seam-integration-tests/src/test/resources/WEB-INF/components-rewrite.xml
A seam-integration-tests/src/test/resources/WEB-INF/rewrite-web.xml
A seam-integration-tests/src/test/resources/testslink.xhtml
Log Message:
-----------
JBSEAM-5085 fixed ViewUrlBuilder to not break Page rewrite of UICommandComponents
11 years, 10 months
Seam SVN: r15504 - branches/enterprise/JBPAPP_5_1_0_JBPAPP-10747/ui/src/main/java/org/jboss/seam/ui/graphicImage.
by seam-commits@lists.jboss.org
Author: ivassile
Date: 2013-05-14 14:15:18 -0400 (Tue, 14 May 2013)
New Revision: 15504
Modified:
branches/enterprise/JBPAPP_5_1_0_JBPAPP-10747/ui/src/main/java/org/jboss/seam/ui/graphicImage/Image.java
Log:
Fix for one-off patch https://issues.jboss.org/browse/JBPAPP-10747
Modified: branches/enterprise/JBPAPP_5_1_0_JBPAPP-10747/ui/src/main/java/org/jboss/seam/ui/graphicImage/Image.java
===================================================================
--- branches/enterprise/JBPAPP_5_1_0_JBPAPP-10747/ui/src/main/java/org/jboss/seam/ui/graphicImage/Image.java 2013-05-14 17:23:38 UTC (rev 15503)
+++ branches/enterprise/JBPAPP_5_1_0_JBPAPP-10747/ui/src/main/java/org/jboss/seam/ui/graphicImage/Image.java 2013-05-14 18:15:18 UTC (rev 15504)
@@ -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;
@@ -474,7 +474,12 @@
ImageReadParam param = reader.getDefaultReadParam();
reader.setInput(stream, true, true);
String type = reader.getFormatName();
- setContentType(Type.getTypeByFormatName(type));
+ Type contentType = Type.getTypeByFormatName(type);
+ if (contentType == null)
+ {
+ throw new IllegalArgumentException("The image type is not supported");
+ }
+ setContentType(contentType);
bufferedImage = reader.read(0, param);
stream.close();
reader.dispose();
11 years, 10 months
Seam SVN: r15502 - in branches/enterprise/WFK-2_1/jboss-seam-gen/dist: ivy and 1 other directory.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2013-05-14 09:04:59 -0400 (Tue, 14 May 2013)
New Revision: 15502
Removed:
branches/enterprise/WFK-2_1/jboss-seam-gen/dist/ivy/ivy-build.xml
branches/enterprise/WFK-2_1/jboss-seam-gen/dist/ivy/ivy.settings.xml
branches/enterprise/WFK-2_1/jboss-seam-gen/dist/ivy/ivy.xml
Modified:
branches/enterprise/WFK-2_1/jboss-seam-gen/dist/build.xml
Log:
bz916998 removed ivy command from seam-gen as unsupported
Modified: branches/enterprise/WFK-2_1/jboss-seam-gen/dist/build.xml
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-gen/dist/build.xml 2013-05-13 11:22:23 UTC (rev 15501)
+++ branches/enterprise/WFK-2_1/jboss-seam-gen/dist/build.xml 2013-05-14 13:04:59 UTC (rev 15502)
@@ -1466,22 +1466,6 @@
<echo message="Type '${seam.cmd} restart' and go to http://localhost:8080/${project.name}/${masterPage.name}.seam"/>
</target>
- <target name="add-ivy" depends="validate-project" description="Add Ivy to the project for downloading dependencies">
- <copy todir="${project.home}">
- <fileset dir="${templates.dir}/ivy"/>
- <filterset refid="project"/>
- </copy>
- <condition property="ivy.present">
- <isfileselected file="${project.home}/build.xml">
- <contains text="ivy-build.xml"/>
- </isfileselected>
- </condition>
- <replace dir="${project.home}">
- <include name="build.xml" unless="ivy.present"/>
- <replacetoken><![CDATA[<target name="init"]]></replacetoken>
- <replacevalue><![CDATA[<!-- Import Ivy targets for downloading dependencies -->
- <import file="${basedir}/ivy-build.xml"/>
-
<target name="init"]]></replacevalue>
</replace>
Deleted: 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-05-13 11:22:23 UTC (rev 15501)
+++ branches/enterprise/WFK-2_1/jboss-seam-gen/dist/ivy/ivy-build.xml 2013-05-14 13:04:59 UTC (rev 15502)
@@ -1,68 +0,0 @@
-<?xml version="1.0"?>
-<project basedir="." xmlns:ivy="antlib:org.apache.ivy.ant" name="@projectName@-ivy">
- <property name="ivy.install.version" value="2.2.0"/>
- <property name="ivy.jar.dir" value="${lib.dir}/ivy"/>
- <property name="ivy.jar.file" value="${ivy.jar.dir}/ivy.jar"/>
- <property name="ivy.sync" value="false"/>
- <property name="ivy.use.symlinks" value="false"/>
- <property name="central.repo" value="http://repo1.maven.org/maven2"/>
- <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.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"/>
- <property name="jboss-embedded.version" value="beta3.SP10"/> -->
-
- <target name="init-ivy">
- <available property="ivy.installed" value="true" file="${ivy.jar.file}" type="file"/>
- </target>
-
- <target name="load-ivy" depends="init-ivy,download-ivy">
- <path id="ivy.lib.path">
- <fileset dir="${ivy.jar.dir}" includes="*.jar"/>
- </path>
- <taskdef resource="org/apache/ivy/ant/antlib.xml" uri="antlib:org.apache.ivy.ant" classpathref="ivy.lib.path"/>
- <ivy:settings file="${basedir}/ivy.settings.xml"/>
- </target>
-
- <target name="download-ivy" depends="init-ivy" unless="ivy.installed">
- <mkdir dir="${ivy.jar.dir}"/>
- <echo message="Installing ivy..."/>
- <get src="${central.repo}/org/apache/ivy/ivy/${ivy.install.version}/ivy-${ivy.install.version}.jar"
- dest="${ivy.jar.file}"/>
- </target>
-
- <target name="inflate-core" depends="load-ivy">
- <ivy:retrieve pattern="${lib.dir}/[artifact].[ext]" type="jar" sync="${ivy.sync}" symlink="${ivy.use.symlinks}" conf="default"/>
- </target>
-
- <target name="inflate-source" depends="load-ivy">
- <ivy:retrieve pattern="${lib.dir}/src/[artifact]-[type]s.[ext]" type="source" sync="${ivy.sync}" symlink="${ivy.use.symlinks}" conf="sources"/>
- </target>
-
- <target name="inflate-test" depends="load-ivy">
- <ivy:retrieve pattern="${lib.dir}/test/[artifact].[ext]" type="test-jar" sync="${ivy.sync}" symlink="${ivy.use.symlinks}" conf="test"/>
- </target>
-
- <target name="inflate" depends="inflate-core,inflate-source,inflate-test"/>
-
- <target name="uninflate" depends="deflate"/>
-
- <target name="deflate">
- <delete includeemptydirs="true" failonerror="false">
- <fileset dir="${lib.dir}">
- <include name="**/*"/>
- </fileset>
- </delete>
- </target>
-
- <target name="clean-ivy" depends="load-ivy">
- <ivy:cleancache/>
- </target>
-
- <target name="dependency-report" depends="inflate">
- <ivy:report todir="${dist.dir}/dependency-report"/>
- </target>
-</project>
Deleted: branches/enterprise/WFK-2_1/jboss-seam-gen/dist/ivy/ivy.settings.xml
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-gen/dist/ivy/ivy.settings.xml 2013-05-13 11:22:23 UTC (rev 15501)
+++ branches/enterprise/WFK-2_1/jboss-seam-gen/dist/ivy/ivy.settings.xml 2013-05-14 13:04:59 UTC (rev 15502)
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<ivysettings>
- <settings defaultResolver="seam"/>
- <include url="${ivy.default.settings.dir}/ivysettings.xml" />
- <resolvers>
- <ibiblio name="jboss" m2compatible="true" usepoms="true" root="${jboss.repo}" pattern="[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]"/>
- <chain name="seam" dual="true">
- <!-- local is always checked; public needs to be before jboss to allow Ivy to properly locate sources -->
- <resolver ref="public"/>
- <resolver ref="jboss"/>
- </chain>
- </resolvers>
-</ivysettings>
Deleted: branches/enterprise/WFK-2_1/jboss-seam-gen/dist/ivy/ivy.xml
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-gen/dist/ivy/ivy.xml 2013-05-13 11:22:23 UTC (rev 15501)
+++ branches/enterprise/WFK-2_1/jboss-seam-gen/dist/ivy/ivy.xml 2013-05-14 13:04:59 UTC (rev 15502)
@@ -1,76 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<ivy-module version="1.0" xmlns:m="http://ant.apache.org/ivy/maven">
- <info organisation="@projectName@" module="@projectName@"/>
- <configurations defaultconfmapping="default->default;sources->sources;test->default">
- <conf name="sources" transitive="false" visibility="private"/>
- <conf name="test" transitive="false" visibility="private"/>
- <conf name="default" transitive="false"/>
- </configurations>
- <dependencies defaultconf="default">
- <!-- Add your JDBC driver dependency here if you need it -->
- <!--
- <dependency org="hsqldb" name="hsqldb" rev="1.8.0.8-brew" conf="default"/>
- -->
- <dependency org="commons-beanutils" name="commons-beanutils" rev="1.7.0" conf="default,sources"/>
- <dependency org="commons-digester" name="commons-digester" rev="1.7" conf="default,sources"/>
- <dependency org="janino" name="janino" rev="2.5.10" conf="default"/>
- <dependency org="javax.ejb" name="ejb-api" rev="3.0" conf="default"/>
- <dependency org="javax.el" name="el-api" rev="1.0" conf="default"/>
- <dependency org="javax.faces" name="jsf-api" rev="${jsf.version}" conf="default,sources"/>
- <dependency org="javax.faces" name="jsf-impl" rev="${jsf.version}" conf="default,sources"/>
- <dependency org="javax.persistence" name="persistence-api" rev="1.0" conf="default"/>
- <dependency org="javax.servlet" name="servlet-api" rev="2.5" conf="default"/>
- <dependency org="javax.transaction" name="jta" rev="1.1" conf="default"/>
- <dependency org="net.sourceforge.jexcelapi" name="jxl" rev="2.6.8-seam" conf="default"/>
- <dependency org="org.antlr" name="antlr-runtime" rev="3.0" conf="default"/>
- <dependency org="org.drools" name="knowledge-api" rev="5.3.3.Final" conf="default"/>
- <dependency org="org.drools" name="drools-compiler" rev="5.3.3.Final" conf="default"/>
- <dependency org="org.drools" name="drools-core" rev="5.3.3.Final" conf="default"/>
- <dependency org="org.drools" name="drools-decisiontables" rev="5.3.3.Final" conf="default"/>
- <dependency org="org.drools" name="drools-templates" rev="5.3.3.Final" conf="default"/>
- <dependency org="xstream" name="xstream" rev="1.1.3" conf="default"/>
- <dependency org="xpp3" name="xpp3_min" rev="1.1.3.4.O" conf="default"/>
- <dependency org="org.eclipse.jdt" name="core" rev="3.2.3.v_686_R32x" conf="default"/>
- <dependency org="org.codehaus.groovy" name="groovy-all" rev="1.5.4" conf="default"/>
- <dependency org="org.hibernate" name="hibernate-validator" rev="3.1.0.GA" conf="default"/>
- <dependency org="org.jboss.el" name="jboss-el" rev="1.0_02.CR5" conf="default"/>
- <!-- Seam jar is a special case because it's an EJB type and Ivy (at least right now)
- believes the extension should be ejb, so we have to tell it the correct one. -->
- <dependency org="org.jboss.seam" name="jboss-seam" rev="${seam.version}" conf="default,sources">
- <artifact name="jboss-seam" type="jar" ext="jar"/>
- <artifact name="jboss-seam" type="source" ext="jar" m:classifier="sources"/>
- </dependency>
- <dependency org="org.jboss.seam" name="jboss-seam-debug" rev="${seam.version}" conf="default,sources"/>
- <dependency org="org.jboss.seam" name="jboss-seam-excel" rev="${seam.version}" conf="default,sources"/>
- <dependency org="org.jboss.seam" name="jboss-seam-ioc" rev="${seam.version}" conf="default,sources"/>
- <dependency org="org.jboss.seam" name="jboss-seam-mail" rev="${seam.version}" conf="default,sources"/>
- <dependency org="org.jboss.seam" name="jboss-seam-pdf" rev="${seam.version}" conf="default,sources"/>
- <dependency org="org.jboss.seam" name="jboss-seam-remoting" rev="${seam.version}" conf="default,sources"/>
- <dependency org="org.jboss.seam" name="jboss-seam-rss" rev="${seam.version}" conf="default,sources"/>
- <dependency org="org.jboss.seam" name="jboss-seam-ui" rev="${seam.version}" conf="default,sources"/>
- <dependency org="org.jbpm" name="jbpm-jpdl" rev="3.2.2" conf="default"/>
- <dependency org="org.mvel" name="mvel2" rev="2.0.10" conf="default"/>
- <!-- [if richfaces] ->
- <dependency org="com.sun.facelets" name="jsf-facelets" rev="1.1.15.B1" conf="default,sources"/>
- <dependency org="org.richfaces.framework" name="richfaces-api" rev="${richfaces.version}" conf="default,sources"/>
- <dependency org="org.richfaces.framework" name="richfaces-impl" rev="${richfaces.version}" conf="default,sources"/>
- <dependency org="org.richfaces.ui" name="richfaces-ui" rev="${richfaces.version}" conf="default,sources"/>
- <dependency org="org.richfaces.samples" name="glassX" rev="${richfaces.version}" conf="default"/>
- <dependency org="org.richfaces.samples" name="darkX" rev="${richfaces.version}" conf="default"/>
- <dependency org="org.richfaces.samples" name="laguna" rev="${richfaces.version}" conf="default"/>
- <!- [/endif richfaces] -->
- <!-- [if icefaces] ->
- <dependency org="org.icefaces" name="icefaces" rev="${icefaces.version}" conf="default"/>
- <dependency org="org.icefaces" name="icefaces-comps" rev="${icefaces.version}" conf="default"/>
- <dependency org="org.icefaces" name="icefaces-facelets" rev="${icefaces.version}" conf="default"/>
- <dependency org="backport-util-concurrent" name="backport-util-concurrent" rev="2.2" conf="default"/>
- <dependency org="commons-digester" name="commons-digester" rev="1.8" conf="default"/>
- <dependency org="commons-fileupload" name="commons-fileupload" rev="1.2.1" conf="default"/>
- <!- [/endif icefaces] -->
- <dependency org="org.testng" name="testng" rev="5.9" conf="test"/>
- <dependency org="org.jboss.seam.embedded" name="hibernate-all" rev="${jboss-embedded.version}" conf="test"/>
- <dependency org="org.jboss.seam.embedded" name="thirdparty-all" rev="${jboss-embedded.version}" conf="test"/>
- <dependency org="org.jboss.seam.embedded" name="jboss-embedded-all" rev="${jboss-embedded.version}" conf="test"/>
- <dependency org="org.jboss.seam.embedded" name="jboss-embedded-api" rev="${jboss-embedded.version}" conf="test"/>
- </dependencies>
-</ivy-module>
11 years, 10 months
Seam SVN: r15501 - in branches/enterprise/WFK-2_1: distribution and 1 other directory.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2013-05-13 07:22:23 -0400 (Mon, 13 May 2013)
New Revision: 15501
Modified:
branches/enterprise/WFK-2_1/distribution/pom.xml
branches/enterprise/WFK-2_1/pom.xml
Log:
tuning distribution deps
Modified: branches/enterprise/WFK-2_1/distribution/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/distribution/pom.xml 2013-05-10 14:21:14 UTC (rev 15500)
+++ branches/enterprise/WFK-2_1/distribution/pom.xml 2013-05-13 11:22:23 UTC (rev 15501)
@@ -208,6 +208,10 @@
<groupId>com.fasterxml</groupId>
<artifactId>classmate</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>org.jboss.spec.javax.transaction</groupId>
+ <artifactId>jboss-transaction-api_1.1_spec</artifactId>
+ </exclusion>
</exclusions>
</dependency>
@@ -215,12 +219,12 @@
<dependency>
<groupId>org.jboss.remotingjmx</groupId>
<artifactId>remoting-jmx</artifactId>
- <version>1.0.4.Final-redhat-1</version>
+<!-- <version>1.0.4.Final-redhat-1</version> -->
</dependency>
<dependency>
<groupId>org.jboss.remoting3</groupId>
<artifactId>jboss-remoting</artifactId>
- <version>3.2.14.GA-redhat-1</version>
+<!-- <version>3.2.14.GA-redhat-1</version> -->
</dependency>
</dependencies>
<dependencyManagement>
Modified: branches/enterprise/WFK-2_1/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/pom.xml 2013-05-10 14:21:14 UTC (rev 15500)
+++ branches/enterprise/WFK-2_1/pom.xml 2013-05-13 11:22:23 UTC (rev 15501)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss</groupId>
<artifactId>jboss-parent</artifactId>
- <version>9-redhat-1</version>
+ <version>10-redhat-2</version>
</parent>
<groupId>org.jboss.seam</groupId>
11 years, 10 months
Seam SVN: r15500 - branches/enterprise/WFK-2_1/bom.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2013-05-10 10:21:14 -0400 (Fri, 10 May 2013)
New Revision: 15500
Modified:
branches/enterprise/WFK-2_1/bom/pom.xml
Log:
bz951540 removed duplicated jboss-as-arquillian-container-{managed|remote} dependencies from seam-bom
Modified: branches/enterprise/WFK-2_1/bom/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/bom/pom.xml 2013-05-10 14:21:06 UTC (rev 15499)
+++ branches/enterprise/WFK-2_1/bom/pom.xml 2013-05-10 14:21:14 UTC (rev 15500)
@@ -846,18 +846,6 @@
</dependency>
<dependency>
- <groupId>org.jboss.as</groupId>
- <artifactId>jboss-as-arquillian-container-managed</artifactId>
- <version>${version.jbossas7}</version>
- </dependency>
-
- <dependency>
- <groupId>org.jboss.as</groupId>
- <artifactId>jboss-as-arquillian-container-remote</artifactId>
- <version>${version.jbossas7}</version>
- </dependency>
-
- <dependency>
<groupId>org.infinispan</groupId>
<artifactId>infinispan-core</artifactId>
<version>${version.infinispan}</version>
11 years, 10 months
Seam SVN: r15499 - branches/enterprise/WFK-2_1/bom.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2013-05-10 10:21:06 -0400 (Fri, 10 May 2013)
New Revision: 15499
Modified:
branches/enterprise/WFK-2_1/bom/pom.xml
Log:
re-format the seam bom content
Modified: branches/enterprise/WFK-2_1/bom/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/bom/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
+++ branches/enterprise/WFK-2_1/bom/pom.xml 2013-05-10 14:21:06 UTC (rev 15499)
@@ -1,4 +1,5 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.seam</groupId>
@@ -31,17 +32,17 @@
<properties>
<!-- Version string properties -->
- <version.seam>2.3.1.Final-redhat-2</version.seam>
+ <version.seam>2.3.1.Final-redhat-2</version.seam>
<version.drools>5.3.0.BRMS</version.drools>
<version.resteasy>2.3.4.Final-redhat-2</version.resteasy>
<version.spring>3.1.4.RELEASE</version.spring>
<version.jbossas7>7.1.1.Final</version.jbossas7>
<version.jsf2>2.1.13-redhat-1</version.jsf2>
-<!-- <version.webdriver>0.9.7376</version.webdriver> -->
- <version.infinispan>5.1.8.Final-redhat-1</version.infinispan>
- <version.junit>4.10</version.junit>
- <version.testng>5.14.10</version.testng>
- <version.org.jboss.bom>1.0.4.Final-redhat-wfk-1</version.org.jboss.bom>
+ <!-- <version.webdriver>0.9.7376</version.webdriver> -->
+ <version.infinispan>5.1.8.Final-redhat-1</version.infinispan>
+ <version.junit>4.10</version.junit>
+ <version.testng>5.14.10</version.testng>
+ <version.org.jboss.bom>1.0.4.Final-redhat-wfk-1</version.org.jboss.bom>
<!-- ***************** -->
<!-- Repository Deployment URLs -->
<!-- ***************** -->
@@ -57,51 +58,51 @@
<dependencies>
<dependency>
- <groupId>org.jboss.bom</groupId>
- <artifactId>jboss-javaee-6.0-with-hibernate</artifactId>
- <version>${version.org.jboss.bom}</version>
- <type>pom</type>
- <scope>import</scope>
+ <groupId>org.jboss.bom</groupId>
+ <artifactId>jboss-javaee-6.0-with-hibernate</artifactId>
+ <version>${version.org.jboss.bom}</version>
+ <type>pom</type>
+ <scope>import</scope>
</dependency>
-
+
<dependency>
- <groupId>org.jboss.bom</groupId>
+ <groupId>org.jboss.bom</groupId>
<artifactId>jboss-javaee-6.0-with-tools</artifactId>
- <version>${version.org.jboss.bom}</version>
+ <version>${version.org.jboss.bom}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
-
+
<dependency>
- <groupId>org.jboss.bom</groupId>
+ <groupId>org.jboss.bom</groupId>
<artifactId>jboss-javaee-6.0-with-richfaces</artifactId>
- <version>${version.org.jboss.bom}</version>
+ <version>${version.org.jboss.bom}</version>
<type>pom</type>
<scope>import</scope>
- </dependency>
-
- <!-- managed hibernate-commons-annotations here to overwrite usage
- of other versions in transitive deps -->
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-commons-annotations</artifactId>
- <version>3.2.0.Final-redhat-2</version>
- </dependency>
-
+ </dependency>
+
+ <!-- managed hibernate-commons-annotations here to overwrite usage of
+ other versions in transitive deps -->
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-commons-annotations</artifactId>
+ <version>3.2.0.Final-redhat-2</version>
+ </dependency>
+
<!-- not supported shrinkwrap artifacts -->
<dependency>
- <groupId>org.jboss.shrinkwrap.resolver</groupId>
- <artifactId>shrinkwrap-resolver-impl-maven</artifactId>
- <version>1.0.0-beta-5</version>
- </dependency>
-
- <dependency>
- <groupId>org.jboss.shrinkwrap.resolver</groupId>
- <artifactId>shrinkwrap-resolver-api-maven</artifactId>
- <version>1.0.0-beta-5</version>
- </dependency>
-
+ <groupId>org.jboss.shrinkwrap.resolver</groupId>
+ <artifactId>shrinkwrap-resolver-impl-maven</artifactId>
+ <version>1.0.0-beta-5</version>
+ </dependency>
+
<dependency>
+ <groupId>org.jboss.shrinkwrap.resolver</groupId>
+ <artifactId>shrinkwrap-resolver-api-maven</artifactId>
+ <version>1.0.0-beta-5</version>
+ </dependency>
+
+ <dependency>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam</artifactId>
<version>${version.seam}</version>
@@ -149,7 +150,7 @@
<artifactId>jboss-seam-ui</artifactId>
<version>${version.seam}</version>
</dependency>
-
+
<dependency>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-debug</artifactId>
@@ -162,7 +163,7 @@
<version>${version.seam}</version>
</dependency>
- <!-- thirdparty dependencies -->
+ <!-- thirdparty dependencies -->
<dependency>
<groupId>antlr</groupId>
<artifactId>antlr</artifactId>
@@ -353,7 +354,7 @@
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
- <version>1.4.2</version>
+ <version>1.4.2</version>
</dependency>
<dependency>
@@ -497,7 +498,7 @@
</exclusion>
</exclusions>
</dependency>
-
+
<dependency>
<groupId>org.drools</groupId>
<artifactId>knowledge-api</artifactId>
@@ -550,71 +551,71 @@
<version>1.6.5</version>
</dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-beans</artifactId>
- <version>${version.spring}</version>
- </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-beans</artifactId>
+ <version>${version.spring}</version>
+ </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-aop</artifactId>
- <version>${version.spring}</version>
- </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-aop</artifactId>
+ <version>${version.spring}</version>
+ </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-core</artifactId>
- <version>${version.spring}</version>
- </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-core</artifactId>
+ <version>${version.spring}</version>
+ </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context</artifactId>
- <version>${version.spring}</version>
- </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-context</artifactId>
+ <version>${version.spring}</version>
+ </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context-support</artifactId>
- <version>${version.spring}</version>
- </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-context-support</artifactId>
+ <version>${version.spring}</version>
+ </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-tx</artifactId>
- <version>${version.spring}</version>
- </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-tx</artifactId>
+ <version>${version.spring}</version>
+ </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-jdbc</artifactId>
- <version>${version.spring}</version>
- </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-jdbc</artifactId>
+ <version>${version.spring}</version>
+ </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-orm</artifactId>
- <version>${version.spring}</version>
- </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-orm</artifactId>
+ <version>${version.spring}</version>
+ </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-jms</artifactId>
- <version>${version.spring}</version>
- </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-jms</artifactId>
+ <version>${version.spring}</version>
+ </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-web</artifactId>
- <version>${version.spring}</version>
- </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-web</artifactId>
+ <version>${version.spring}</version>
+ </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-webmvc</artifactId>
- <version>${version.spring}</version>
- </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-webmvc</artifactId>
+ <version>${version.spring}</version>
+ </dependency>
<dependency>
<groupId>cglib</groupId>
@@ -675,38 +676,38 @@
</exclusion>
</exclusions>
</dependency>
- <dependency>
- <groupId>com.google.code.guice</groupId>
- <artifactId>guice</artifactId>
- <version>1.0</version>
- </dependency>
+ <dependency>
+ <groupId>com.google.code.guice</groupId>
+ <artifactId>guice</artifactId>
+ <version>1.0</version>
+ </dependency>
- <!-- rewriting version in pom -->
+ <!-- rewriting version in pom -->
<dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>4.1.3</version>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpclient</artifactId>
+ <version>4.1.3</version>
</dependency>
-
+
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.9.1-redhat-3</version>
</dependency>
-
+
<dependency>
<groupId>org.openid4java</groupId>
<artifactId>openid4java-consumer</artifactId>
<version>0.9.6</version>
<type>pom</type>
</dependency>
-
+
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-servlet</artifactId>
<version>1.5.2</version>
</dependency>
-
+
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
@@ -794,37 +795,37 @@
<artifactId>junit</artifactId>
<version>${version.junit}</version>
</dependency>
-
+
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-server</artifactId>
<version>2.25.0</version>
</dependency>
-
+
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.25.0</version>
</dependency>
-
+
<dependency>
<groupId>org.jboss.seam</groupId>
<artifactId>functional-tests</artifactId>
<version>${version.seam}</version>
<scope>test</scope>
- </dependency>
-
+ </dependency>
+
<dependency>
<groupId>commons-digester</groupId>
<artifactId>commons-digester</artifactId>
<version>2.1</version>
</dependency>
-
+
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.2.1</version>
- </dependency>
+ </dependency>
<dependency>
<groupId>org.codehaus.jettison</groupId>
@@ -836,13 +837,13 @@
<artifactId>stax-api</artifactId>
</exclusion>
</exclusions>
- </dependency>
+ </dependency>
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-impl</artifactId>
<version>${version.jsf2}</version>
- </dependency>
+ </dependency>
<dependency>
<groupId>org.jboss.as</groupId>
@@ -855,24 +856,24 @@
<artifactId>jboss-as-arquillian-container-remote</artifactId>
<version>${version.jbossas7}</version>
</dependency>
-
- <dependency>
- <groupId>org.infinispan</groupId>
- <artifactId>infinispan-core</artifactId>
- <version>${version.infinispan}</version>
- </dependency>
-
- <dependency>
- <groupId>org.infinispan</groupId>
- <artifactId>infinispan-tree</artifactId>
- <version>${version.infinispan}</version>
- </dependency>
-
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpmime</artifactId>
- <version>4.2.2</version>
- </dependency>
+
+ <dependency>
+ <groupId>org.infinispan</groupId>
+ <artifactId>infinispan-core</artifactId>
+ <version>${version.infinispan}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.infinispan</groupId>
+ <artifactId>infinispan-tree</artifactId>
+ <version>${version.infinispan}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpmime</artifactId>
+ <version>4.2.2</version>
+ </dependency>
</dependencies>
</dependencyManagement>
11 years, 10 months
Seam SVN: r15498 - in branches/enterprise/WFK-2_1: bom and 116 other directories.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2013-05-10 09:26:51 -0400 (Fri, 10 May 2013)
New Revision: 15498
Modified:
branches/enterprise/WFK-2_1/bom/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/pom.xml
Log:
changed versions in examples, seam-bom and version.seam property
Modified: branches/enterprise/WFK-2_1/bom/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/bom/pom.xml 2013-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/bom/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<groupId>org.jboss.seam</groupId>
<artifactId>bom</artifactId>
<name>Seam 2 Bill Of Materials </name>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</version>
<packaging>pom</packaging>
<licenses>
@@ -31,7 +31,7 @@
<properties>
<!-- Version string properties -->
- <version.seam>2.3.1.Final-redhat-1</version.seam>
+ <version.seam>2.3.1.Final-redhat-2</version.seam>
<version.drools>5.3.0.BRMS</version.drools>
<version.resteasy>2.3.4.Final-redhat-2</version.resteasy>
<version.spring>3.1.4.RELEASE</version.spring>
Modified: branches/enterprise/WFK-2_1/examples/blog/blog-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/blog/blog-ear/pom.xml 2013-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/blog/blog-ear/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -5,7 +5,7 @@
<parent>
<artifactId>blog</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/blog/blog-ejb/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam.examples</groupId>
<artifactId>blog</artifactId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/blog/blog-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam.examples</groupId>
<artifactId>blog</artifactId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/blog/blog-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -6,7 +6,7 @@
<parent>
<artifactId>blog</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/blog/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-ear/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-ejb/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/booking/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/contactlist/contactlist-ear/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>contactlist</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/contactlist/contactlist-ejb/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>contactlist</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/contactlist/contactlist-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -5,7 +5,7 @@
<parent>
<artifactId>contactlist</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/contactlist/contactlist-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>contactlist</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/contactlist/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/excel/excel-ear/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>excel</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/excel/excel-ejb/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>excel</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/excel/excel-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>excel</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/excel/excel-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>excel</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/excel/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -6,7 +6,7 @@
<parent>
<artifactId>groovybooking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -6,7 +6,7 @@
<parent>
<artifactId>groovybooking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/groovybooking/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/hibernate/hibernate-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -7,7 +7,7 @@
<parent>
<artifactId>hibernate</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/hibernate/hibernate-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -6,7 +6,7 @@
<parent>
<artifactId>hibernate</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/hibernate/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/itext/itext-ear/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>itext</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/itext/itext-ejb/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>itext</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/itext/itext-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>itext</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/itext/itext-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>itext</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/itext/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/jee6/jee6-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jee6</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/jee6/jee6-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jee6</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/jee6/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/jpa/jpa-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -5,7 +5,7 @@
<parent>
<artifactId>jpa</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/jpa/jpa-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jpa</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/jpa/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/mail/mail-ear/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>mail</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/mail/mail-ejb/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>mail</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/mail/mail-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>mail</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/mail/mail-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>mail</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/mail/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/messages/messages-ear/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>messages</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/messages/messages-ejb/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>messages</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/messages/messages-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>messages</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/messages/messages-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>messages</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/messages/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-ear/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>nestedbooking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-ejb/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>nestedbooking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>nestedbooking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>nestedbooking</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/nestedbooking/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/openid/openid-ear/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>openid</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/openid/openid-ejb/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>openid</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/openid/openid-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>openid</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/openid/openid-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>openid</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/openid/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/quartz/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/quartz/quartz-ear/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>quartz</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/quartz/quartz-ejb/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>quartz</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/quartz/quartz-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>quartz</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/quartz/quartz-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>quartz</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/registration/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/registration/registration-ear/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>registration</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/registration/registration-ejb/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>registration</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/registration/registration-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>registration</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/registration/registration-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>registration</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-ear/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>chatroom</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-ejb/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>chatroom</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>chatroom</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/remoting/chatroom/chatroom-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>chatroom</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/remoting/chatroom/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/remoting/helloworld/helloworld-ear/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>helloworld</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/remoting/helloworld/helloworld-ejb/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>helloworld</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/remoting/helloworld/helloworld-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>helloworld</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/remoting/helloworld/helloworld-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>helloworld</artifactId>
<groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/remoting/helloworld/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/restbay/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/restbay/restbay-ear/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>restbay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/restbay/restbay-ejb/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>restbay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/restbay/restbay-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>restbay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/restbay/restbay-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>restbay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/seambay/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/seambay/seambay-ear/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seambay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/seambay/seambay-ejb/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seambay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/seambay/seambay-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seambay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/seambay/seambay-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seambay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/seamdiscs/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-ear/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamdiscs</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-ejb/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamdiscs</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamdiscs</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamdiscs</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/seampay/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/seampay/seampay-ear/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seampay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/seampay/seampay-ejb/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seampay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/seampay/seampay-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seampay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/seampay/seampay-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seampay</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/seamspace/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ear/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamspace</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/seamspace/seamspace-ejb/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamspace</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamspace</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/seamspace/seamspace-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamspace</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/spring/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/spring/spring-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>spring</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/spring/spring-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>spring</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/tasks/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples</artifactId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/tasks/tasks-ear/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>tasks</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/tasks/tasks-ejb/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>tasks</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/tasks/tasks-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>tasks</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/tasks/tasks-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>tasks</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/ui/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/ui/ui-ear/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/ui/ui-ejb/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/ui/ui-tests/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</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-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/examples/ui/ui-web/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -4,7 +4,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.jboss.seam.examples</groupId>
- <version>2.3.1.Final-redhat-1</version>
+ <version>2.3.1.Final-redhat-2</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/enterprise/WFK-2_1/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/pom.xml 2013-05-10 13:24:14 UTC (rev 15497)
+++ branches/enterprise/WFK-2_1/pom.xml 2013-05-10 13:26:51 UTC (rev 15498)
@@ -45,7 +45,7 @@
<pdf.name>${project.artifactId}.pdf</pdf.name>
<!-- Version string properties -->
- <version.seam>2.3.1.Final-redhat-1</version.seam>
+ <version.seam>2.3.1.Final-redhat-2</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>
11 years, 10 months