gatein SVN: r8512 - in epp/docs/branches/5.2/User_Guide/en-US: modules/portal and 1 other directory.
by do-not-reply@jboss.org
Author: jaredmorgs
Date: 2012-02-29 22:08:43 -0500 (Wed, 29 Feb 2012)
New Revision: 8512
Modified:
epp/docs/branches/5.2/User_Guide/en-US/Book_Info.xml
epp/docs/branches/5.2/User_Guide/en-US/Revision_History.xml
epp/docs/branches/5.2/User_Guide/en-US/modules/portal/Manage_Portals.xml
epp/docs/branches/5.2/User_Guide/en-US/modules/portal/Toolbar.xml
Log:
Documented the Services Management interface as part of https://bugzilla.redhat.com/show_bug.cgi?id=794409.
Modified: epp/docs/branches/5.2/User_Guide/en-US/Book_Info.xml
===================================================================
--- epp/docs/branches/5.2/User_Guide/en-US/Book_Info.xml 2012-03-01 00:15:19 UTC (rev 8511)
+++ epp/docs/branches/5.2/User_Guide/en-US/Book_Info.xml 2012-03-01 03:08:43 UTC (rev 8512)
@@ -8,7 +8,7 @@
<productname>JBoss Enterprise Portal Platform</productname>
<productnumber>5.2</productnumber>
<edition>5.2.1</edition>
- <pubsnumber>5</pubsnumber>
+ <pubsnumber>6</pubsnumber>
<abstract>
<para>
This document provides an easy to follow guide to the functions and
Modified: epp/docs/branches/5.2/User_Guide/en-US/Revision_History.xml
===================================================================
--- epp/docs/branches/5.2/User_Guide/en-US/Revision_History.xml 2012-03-01 00:15:19 UTC (rev 8511)
+++ epp/docs/branches/5.2/User_Guide/en-US/Revision_History.xml 2012-03-01 03:08:43 UTC (rev 8512)
@@ -8,6 +8,20 @@
<simpara>
<revhistory>
<revision>
+ <revnumber>5.2.1-6</revnumber>
+ <date>Thu Mar 01 2012</date>
+ <author>
+ <firstname>Jared</firstname>
+ <surname>Morgan</surname>
+ <email/>
+ </author>
+ <revdescription>
+ <simplelist>
+ <member>Documented the Services Management interface as part of https://bugzilla.redhat.com/show_bug.cgi?id=794409.</member>
+ </simplelist>
+ </revdescription>
+ </revision>
+ <revision>
<revnumber>5.2.1-5</revnumber>
<date>Fri Feb 24 2012</date>
<author>
Modified: epp/docs/branches/5.2/User_Guide/en-US/modules/portal/Manage_Portals.xml
===================================================================
--- epp/docs/branches/5.2/User_Guide/en-US/modules/portal/Manage_Portals.xml 2012-03-01 00:15:19 UTC (rev 8511)
+++ epp/docs/branches/5.2/User_Guide/en-US/modules/portal/Manage_Portals.xml 2012-03-01 03:08:43 UTC (rev 8512)
@@ -247,7 +247,7 @@
</para>
</section>
<section id="Export_and_Import">
- <title><remark>BZ#794408 NEEDINFO </remark>Export and Import</title>
+ <title><remark>BZ#794408 </remark>Export and Import</title>
<para>You can export and import portals and groups using the controls provided in the <menuchoice>
<guimenu>Group</guimenu>
<guimenu>Administration</guimenu>
@@ -396,6 +396,110 @@
</procedure>
</task>
</section>
+ <section id="Services_Management">
+ <title><remark>BZ#794409 </remark>Manage Services</title>
+ <para>Users with administrator privileges can run service methods and properties directly from the portal interface, using the controls provided in the <menuchoice>
+ <guimenu>Group</guimenu>
+ <guimenu>Administration</guimenu>
+ <guimenu>Services Management</guimenu>
+ </menuchoice> interface. </para>
+ <para>Services Management presents methods and properties organized by the service class name. Controls in the interface allow users to pass parameters and run commands to call the methods and properties. </para>
+ <para>Follow <xref linkend="task-Services_Management_Call_Method"/> and <xref linkend="task-Services_Management_Call_Property"/> to learn how to call methods and properties related to the <classname>org.exoplatform.portal.application.PortalStatistic</classname> classname. You can adapt the procedures in these tasks to interact with other methods and properties for other portal classes available in the Services Management interface.</para>
+ <task id="task-Services_Management_Call_Method">
+ <title>Task: Call a Method in the Services Management Interface.</title>
+ <tasksummary>
+ <para>Complete this task to call a method using the Services Management interface, which shows the average portal execution time in seconds. </para>
+ </tasksummary>
+ <taskprerequisites>
+ <title>Prerequisites</title>
+ <itemizedlist>
+ <listitem>
+ <para>JBoss Enterprise Portal Platform is running. </para>
+ </listitem>
+ <listitem>
+ <para>You are authenticated with administrator privileges.</para>
+ </listitem>
+ </itemizedlist>
+ </taskprerequisites>
+ <procedure>
+ <step>
+ <para>Click <menuchoice>
+ <guimenu>Group</guimenu>
+ <guimenu>Administration</guimenu>
+ <guimenu>Services Management</guimenu>
+ </menuchoice></para>
+ </step>
+ <step>
+ <para>In the <guilabel>Services</guilabel> drop-down, select <guimenuitem>portalstatistic</guimenuitem>.</para>
+ <formalpara>
+ <title>Result</title>
+ <para>The available methods are displayed on the Methods tab, including <methodname>getMaxTime</methodname>.</para>
+ </formalpara>
+ </step>
+ <step>
+ <para>In the <guilabel>Parameters</guilabel> column, type the name of the portal you want to check. For example, if you are running the default portal, type <userinput>classic</userinput>.</para>
+ </step>
+ <step>
+ <para>In the <guilabel>Action</guilabel> column, click <guibutton>Run</guibutton>.</para>
+ </step>
+ <step>
+ <formalpara>
+ <title>Result</title>
+ <para>The <methodname>getMaxTime</methodname> method is called, and returns the execution time in the value group, underneath the Method table.</para>
+ </formalpara>
+ </step>
+ </procedure>
+ </task>
+ <task id="task-Services_Management_Call_Property">
+ <title>Task: Call a Property in the Services Management Interface.</title>
+ <tasksummary>
+ <para>Complete this task to call a property using the Services Management interface, which returns the identifiers of all known portals. </para>
+ </tasksummary>
+ <taskprerequisites>
+ <title>Prerequisites</title>
+ <itemizedlist>
+ <listitem>
+ <para>JBoss Enterprise Portal Platform is running. </para>
+ </listitem>
+ <listitem>
+ <para>You are authenticated with administrator privileges.</para>
+ </listitem>
+ </itemizedlist>
+ </taskprerequisites>
+ <procedure>
+ <step>
+ <para>Click <menuchoice>
+ <guimenu>Group</guimenu>
+ <guimenu>Administration</guimenu>
+ <guimenu>Services Management</guimenu>
+ </menuchoice></para>
+ </step>
+ <step>
+ <para>In the <guilabel>Services</guilabel> drop-down, select <guimenuitem>portalstatistic</guimenuitem>.</para>
+ <formalpara>
+ <title>Result</title>
+ <para>The available methods are displayed on the Methods tab. </para>
+ </formalpara>
+ </step>
+ <step>
+ <para>Click the Properties tab to display all available properties for the <guimenuitem>portalstatistic</guimenuitem> Service.</para>
+ <formalpara>
+ <title>Result</title>
+ <para>The <property>PortalList</property> property displays. </para>
+ </formalpara>
+ </step>
+ <step>
+ <para>In the <guilabel>Action</guilabel> column, click <guibutton>Run</guibutton>.</para>
+ </step>
+ <step>
+ <formalpara>
+ <title>Result</title>
+ <para>The <methodname>PortalList</methodname> property is called, and returns the name of all known portals, underneath the Properties table.</para>
+ </formalpara>
+ </step>
+ </procedure>
+ </task>
+ </section>
<section id="proc-User_Guide-Manage_Portals-Edit_Properties">
<title>Edit Properties</title>
<para>
Modified: epp/docs/branches/5.2/User_Guide/en-US/modules/portal/Toolbar.xml
===================================================================
--- epp/docs/branches/5.2/User_Guide/en-US/modules/portal/Toolbar.xml 2012-03-01 00:15:19 UTC (rev 8511)
+++ epp/docs/branches/5.2/User_Guide/en-US/modules/portal/Toolbar.xml 2012-03-01 03:08:43 UTC (rev 8512)
@@ -1,137 +1,142 @@
-<?xml version='1.0' encoding='utf-8' ?>
+<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % BOOK_ENTITIES SYSTEM "../../User_Guide.ent">
%BOOK_ENTITIES;
]>
<section id="sect-User_Guide-Toolbar">
- <title>Toolbar</title>
- <para>
- The Toolbar offers a convenient way for users and administrators to execute tasks within the portal quickly and easily.
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/Toolbar.png" format="PNG" align="center" scale="100"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/Toolbar.png" format="PNG" align="center" contentwidth="130mm"/>
- </imageobject>
- </mediaobject>
- <section>
- <title>User Actions in the Toolbar</title>
-
- <variablelist>
- <varlistentry>
- <term><emphasis role="bold">User Menu</emphasis></term>
- <listitem>
- <para>
- You can use the main menu (located under the product icon) to change the language or skin used in the portal or to sign out.
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/StarPortlet.png" format="PNG" align="center" scale="100"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/StarPortlet.png" format="PNG" align="center" contentwidth="130mm"/>
- </imageobject>
- </mediaobject>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term><emphasis role="bold">Site</emphasis></term>
- <listitem>
- <para>
- The Site navigation function shows the different sites available in this Portal and allows users to directly edit the navigation tree.
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/SitePortlet.png" format="PNG" align="center" scale="100"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/SitePortlet.png" format="PNG" align="center" contentwidth="130mm"/>
- </imageobject>
- </mediaobject>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term><emphasis role="bold">Group</emphasis></term>
- <listitem>
- <para>
- Using the Group navigation function users can easily see and access pages in the Portal.
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/GroupPortlet.png" format="PNG" align="center" scale="100"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/GroupPortlet.png" format="PNG" align="center" contentwidth="130mm" />
- </imageobject>
- </mediaobject>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term><emphasis role="bold">Dashboard</emphasis></term>
- <listitem>
- <para>
- You can use the Dashboard to create your own pages of gadgets.
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/DashboardPortlet.png" format="PNG" align="center" scale="100"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/DashboardPortlet.png" format="PNG" align="center" contentwidth="130mm"/>
- </imageobject>
- </mediaobject>
- <para>
- The name shown in the image above is the default and can easily be over-typed when the Dashboard is open.
- </para>
- </listitem>
- </varlistentry>
- </variablelist>
- </section>
-
- <section>
- <title>Administration Actions in the Toolbar</title>
- <variablelist>
- <varlistentry>
- <term> <emphasis role="bold">Editor</emphasis></term>
- <listitem>
- <para>
- Portal Administrators have access to another navigation that allows them to;
- </para>
- <itemizedlist>
- <listitem>
- <para>
+ <title>Toolbar</title>
+ <para>
+ The Toolbar offers a convenient way for users and administrators to execute tasks within the portal quickly and easily.
+ </para>
+ <mediaobject>
+ <imageobject role="html">
+ <imagedata align="center" scale="100" fileref="images/Toolbar.png" format="PNG"/>
+ </imageobject>
+ <imageobject role="fo">
+ <imagedata contentwidth="130mm" align="center" fileref="images/Toolbar.png" format="PNG"/>
+ </imageobject>
+ </mediaobject>
+ <section>
+ <title>User Actions in the Toolbar</title>
+ <variablelist>
+ <varlistentry>
+ <term>
+ <emphasis role="bold">User Menu</emphasis>
+ </term>
+ <listitem>
+ <para>
+ You can use the main menu (located under the product icon) to change the language or skin used in the portal or to sign out.
+ </para>
+ <mediaobject>
+ <imageobject role="html">
+ <imagedata align="center" scale="100" fileref="images/StarPortlet.png" format="PNG"/>
+ </imageobject>
+ <imageobject role="fo">
+ <imagedata contentwidth="130mm" align="center" fileref="images/StarPortlet.png" format="PNG"/>
+ </imageobject>
+ </mediaobject>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>
+ <emphasis role="bold">Site</emphasis>
+ </term>
+ <listitem>
+ <para>
+ The Site navigation function shows the different sites available in this Portal and allows users to directly edit the navigation tree.
+ </para>
+ <mediaobject>
+ <imageobject role="html">
+ <imagedata align="center" scale="100" fileref="images/SitePortlet.png" format="PNG"/>
+ </imageobject>
+ <imageobject role="fo">
+ <imagedata contentwidth="130mm" align="center" fileref="images/SitePortlet.png" format="PNG"/>
+ </imageobject>
+ </mediaobject>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>
+ <emphasis role="bold">Group</emphasis>
+ </term>
+ <listitem>
+ <para>
+ Using the Group navigation function users can easily see and access pages in the Portal.
+ </para>
+ <mediaobject>
+ <imageobject role="html">
+ <imagedata align="center" scale="100" fileref="images/GroupPortlet.png" format="PNG"/>
+ </imageobject>
+ <imageobject role="fo">
+ <imagedata contentwidth="130mm" align="center" fileref="images/GroupPortlet.png" format="PNG"/>
+ </imageobject>
+ </mediaobject>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>
+ <emphasis role="bold">Dashboard</emphasis>
+ </term>
+ <listitem>
+ <para>
+ You can use the Dashboard to create your own pages of gadgets.
+ </para>
+ <mediaobject>
+ <imageobject role="html">
+ <imagedata align="center" scale="100" fileref="images/DashboardPortlet.png" format="PNG"/>
+ </imageobject>
+ <imageobject role="fo">
+ <imagedata contentwidth="130mm" align="center" fileref="images/DashboardPortlet.png" format="PNG"/>
+ </imageobject>
+ </mediaobject>
+ <para>
+ The name shown in the image above is the default and can easily be over-typed when the Dashboard is open.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </section>
+ <section>
+ <title>Administration Actions in the Toolbar</title>
+ <variablelist>
+ <varlistentry>
+ <term>
+ <emphasis role="bold">Editor</emphasis>
+ </term>
+ <listitem>
+ <para>
+ Portal Administrators have access to another navigation that allows them to:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
Add a new page to the current portal.
</para>
- </listitem>
- <listitem>
- <para>
- Edit a particular page's properties.
+ </listitem>
+ <listitem>
+ <para>
+ Edit a particular page's properties.
</para>
- </listitem>
- <listitem>
- <para>
- Change a page's layout.
+ </listitem>
+ <listitem>
+ <para>
+ Change a page's layout.
</para>
- </listitem>
- </itemizedlist>
- <para>
- This navigation appears next to the Dashboard navigation in the Toolbar and is contextually-named. It will appear as either <emphasis role="bold">Site Editor</emphasis>, <emphasis role="bold">Dashboard Editor</emphasis> or <emphasis role="bold">Group Editor</emphasis> depending on the user's location within the portal.
- </para>
- <mediaobject>
- <imageobject role="html">
- <imagedata fileref="images/EditorPortlet.png" format="PNG" align="center" scale="90"/>
- </imageobject>
- <imageobject role="fo">
- <imagedata fileref="images/EditorPortlet.png" format="PNG" align="center" contentwidth="130mm"/>
- </imageobject>
- </mediaobject>
- </listitem>
- </varlistentry>
- </variablelist>
- </section>
-
+ </listitem>
+ </itemizedlist>
+ <para>
+ This navigation appears next to the Dashboard navigation in the Toolbar and is contextually-named. It will appear as either <emphasis role="bold">Site Editor</emphasis>, <emphasis role="bold">Dashboard Editor</emphasis> or <emphasis role="bold">Group Editor</emphasis> depending on the user's location within the portal.
+ </para>
+ <mediaobject>
+ <imageobject role="html">
+ <imagedata align="center" scale="90" fileref="images/EditorPortlet.png" format="PNG"/>
+ </imageobject>
+ <imageobject role="fo">
+ <imagedata contentwidth="130mm" align="center" fileref="images/EditorPortlet.png" format="PNG"/>
+ </imageobject>
+ </mediaobject>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </section>
</section>
-
-
12 years, 10 months
gatein SVN: r8511 - in epp/portal/tags: EPP_5_2_1_ER01 and 108 other directories.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2012-02-29 19:15:19 -0500 (Wed, 29 Feb 2012)
New Revision: 8511
Added:
epp/portal/tags/EPP_5_2_1_ER01/
Modified:
epp/portal/tags/EPP_5_2_1_ER01/component/application-registry/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/common/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/identity/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/management/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/pc/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/portal/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/resources/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/scripting/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/test/core/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/test/jcr/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/test/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/web/api/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/web/controller/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/web/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/web/resources/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/web/security/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/web/server/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/examples/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/gatein-management/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/portletbridge/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/serverAddon/gatein.ear/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/serverAddon/integration.war/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/serverAddon/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-core/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-doc/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-jcr/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-junit/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-kernel/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-parent/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-ws/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-common/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-dep/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-examples/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-management/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-mop/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-parent/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-pc/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-portal/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-shindig/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-simplecaptcha/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-sso/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-wci/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-wsrp/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/jboss-eppsp/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/jboss-picketlink-idm/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/jboss-portletbridge/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/mead.parent/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/extension/config/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/extension/ear/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/extension/jar/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/extension/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/extension/war/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/portal/config/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/portal/ear/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/portal/jar/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/portal/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/portal/rest-war/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/portal/war/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/api/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/jsfhellouser/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/jsphellouser/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/simplesthelloworld/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/struts-jpetstore/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/skins/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/skins/simpleskin/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/gadgets/core/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/gadgets/eXoGadgets/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/gadgets/gwtGadgets/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/gadgets/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/gadgets/server/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/portlet/dashboard/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/portlet/exoadmin/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/portlet/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/portlet/web/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/server/jboss/patch-ear/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/server/jboss/plugin/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/server/jboss/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/server/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/starter/ear/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/starter/jar/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/starter/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/starter/war/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/testsuite/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/testsuite/selenium-snifftests/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/testsuite/webuibasedsamples/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/web/eXoResources/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/web/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/web/portal/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/web/rest/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/webui/core/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/webui/dashboard/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/webui/eXo/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/webui/framework/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/webui/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/webui/portal/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/webui/portlet/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-component/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-config/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-ear-as5/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-ear/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-war/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/pom.xml
Log:
Prepare release
Property changes on: epp/portal/tags/EPP_5_2_1_ER01
___________________________________________________________________
Added: svn:ignore
+ *.iml
.idea
Added: svn:mergeinfo
+ /epp/portal/branches/EPP_5_1_0_GA_JBEPP-795:5868
/portal/branches/branch-GTNPORTAL-1592:4868,4875,4894
/portal/branches/branch-GTNPORTAL-1643:5002,5063,5167
/portal/branches/branch-GTNPORTAL-1700:5348,5363,5402,5445
/portal/branches/branch-GTNPORTAL-1731:5622,5644,5668
/portal/branches/branch-GTNPORTAL-1745:5765
/portal/branches/branch-GTNPORTAL-1790:5871
/portal/branches/branch-GTNPORTAL-1822:5943,5952
/portal/branches/branch-GTNPORTAL-1832:6030,6063
/portal/branches/branch-GTNPORTAL-1872:6400,6551
/portal/branches/branch-GTNPORTAL-1921:6603,6771-6772,6774
/portal/branches/branch-GTNPORTAL-1963:6904,6915-6916
/portal/branches/decoupled-webos:6214-6243
/portal/branches/gatein-management:6920-6958
/portal/branches/global-portlet-metadata:6298-6384
/portal/branches/site-describability:6171-6235
/portal/branches/xss:7377-7595,7597
/portal/branches/xss-issues:7350-7351,7358
/portal/trunk:4876,4891,5269,5744,5822,5943,6168,6196,6201-6203,6205-6206,6223,6323,6437,6440,6449,6452,6573,6783-6784,6912-6913,6960,7042,7061,7085,7095,7117,7125,7132-7134,7186,7239,7262,7308,7326,7330-7334,7359,7367,7412,7433,7450,7452,7454,7478,7497,7500,7552,7554-7555,7570-7571,7573,7577,7598,7614-7615,7695-7696,7701-7704,7741,7748,7773,7780,7857,7877,7900,7928,7938,8045,8053,8072
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/application-registry/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/application-registry/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/application-registry/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/common/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/common/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/common/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.common</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/identity/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/identity/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/identity/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/management/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/management/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/management/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/pc/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/pc/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/pc/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.component</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/portal/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/portal/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/resources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/resources/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/resources/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/scripting/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/scripting/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/scripting/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/test/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/test/core/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/test/core/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/test/jcr/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/test/jcr/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/test/jcr/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/test/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/test/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/test/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/web/api/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/api/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/web/api/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/web/controller/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/controller/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/web/controller/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/web/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/web/resources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/resources/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/web/resources/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/web/security/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/security/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/web/security/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/web/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/server/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/web/server/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/examples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/examples/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/examples/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/gatein-management/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/gatein-management/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/gatein-management/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<groupId>org.jboss.portal</groupId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/portletbridge/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/portletbridge/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/portletbridge/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/serverAddon/gatein.ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/gatein.ear/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/serverAddon/gatein.ear/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>gatein</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/serverAddon/integration.war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/integration.war/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/serverAddon/integration.war/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>integration</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/serverAddon/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/serverAddon/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-core/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-core/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-doc/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-doc/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-doc/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-jcr/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-jcr/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-jcr/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-junit/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-junit/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-junit/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-kernel/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-kernel/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-kernel/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-parent/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-parent/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-parent/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-ws/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-ws/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-ws/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-common/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-common/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-common/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-dep/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-dep/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-dep/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-examples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-examples/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-examples/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-management/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-management/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-management/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-mop/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-mop/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-mop/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-parent/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-parent/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-parent/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-pc/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-pc/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-pc/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-portal/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-portal/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-shindig/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-shindig/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-shindig/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-simplecaptcha/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-simplecaptcha/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-simplecaptcha/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-sso/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-sso/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-sso/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-wci/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wci/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-wci/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-wsrp/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wsrp/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-wsrp/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/jboss-eppsp/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-eppsp/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/jboss-eppsp/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/jboss-picketlink-idm/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-picketlink-idm/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/jboss-picketlink-idm/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/jboss-portletbridge/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-portletbridge/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/jboss-portletbridge/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/mead.parent/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/mead.parent/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/mead.parent/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01</version>
<artifactId>mead-tools</artifactId>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<groupId>org.exoplatform.portal.mead</groupId>
@@ -55,7 +55,7 @@
</build>
<properties>
- <gatein.tag>EPP_5.2.1.DR01-SNAPSHOT</gatein.tag>
+ <gatein.tag>EPP_5.2.1.ER01/gatein.tag>
<!--<gatein-portal.svnpath>epp/portal/tags/${gatein.tag}</gatein-portal.svnpath>-->
<!-- Ant properties -->
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>distribution.parent</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/extension/config/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/config/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/extension/config/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/extension/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/ear/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/extension/ear/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
@@ -38,17 +38,17 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.config</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.jar</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.api</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<scope>provided</scope>
<exclusions>
<exclusion>
@@ -76,7 +76,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.war</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<type>war</type>
</dependency>
<dependency>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/extension/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/jar/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/extension/jar/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/extension/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/extension/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/extension/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/war/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/extension/war/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.sample</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/portal/config/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/config/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/portal/config/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/portal/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/ear/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/portal/ear/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
@@ -38,17 +38,17 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.config</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.jar</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.api</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<scope>provided</scope>
<exclusions>
<exclusion>
@@ -76,13 +76,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.war</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.rest-war</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<type>war</type>
</dependency>
<dependency>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/portal/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/jar/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/portal/jar/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/portal/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/portal/rest-war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/rest-war/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/portal/rest-war/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/portal/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/war/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/portal/war/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/api/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/api/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/api/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>gatein-api</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/jsfhellouser/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/jsfhellouser/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/jsfhellouser/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>gatein-jsf-hellouser</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/jsphellouser/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/jsphellouser/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/jsphellouser/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>gatein-jsp-hellouser</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/simplesthelloworld/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/simplesthelloworld/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/simplesthelloworld/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>gatein-simplest-helloworld</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/struts-jpetstore/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/struts-jpetstore/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/struts-jpetstore/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>struts-jpetstore</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/skins/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/skins/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/skins/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/skins/simpleskin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/skins/simpleskin/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/skins/simpleskin/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.portal.examples.skins</groupId>
<artifactId>skins-parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>gatein-sample-skin</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/gadgets/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/core/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/gadgets/core/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -14,7 +14,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.gadgets-core</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/gadgets/eXoGadgets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/eXoGadgets/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/gadgets/eXoGadgets/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/gadgets/gwtGadgets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/gwtGadgets/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/gadgets/gwtGadgets/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.gwtGadgets</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/gadgets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/gadgets/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.gadgets</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/gadgets/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/server/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/gadgets/server/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.gadgets-server</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -31,7 +31,7 @@
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<packaging>pom</packaging>
<name>EPP GateIn - Portal - ${project.version}</name>
@@ -464,74 +464,74 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.controller</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.security</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.server</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.api</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.resources</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.pc</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.application-registry</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
@@ -541,68 +541,68 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.scripting</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.management</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.framework</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portlet</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.core</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.dashboard</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets-core</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<type>test-jar</type>
</dependency>
<dependency>
@@ -619,7 +619,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss.plugin</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<!-- Chromattic -->
Modified: epp/portal/tags/EPP_5_2_1_ER01/portlet/dashboard/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/dashboard/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/portlet/dashboard/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/portlet/exoadmin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/portlet/exoadmin/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/portlet/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/portlet/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.portlet</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/portlet/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/web/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/portlet/web/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/server/jboss/patch-ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/server/jboss/patch-ear/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/server/jboss/patch-ear/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/server/jboss/plugin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/server/jboss/plugin/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/server/jboss/plugin/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/server/jboss/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/server/jboss/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/server/jboss/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.server.jboss</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/server/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/server/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.server</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/starter/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/starter/ear/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/starter/ear/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
@@ -38,7 +38,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.starter.war</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<type>war</type>
</dependency>
</dependencies>
Modified: epp/portal/tags/EPP_5_2_1_ER01/starter/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/starter/jar/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/starter/jar/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/starter/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/starter/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/starter/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.starter.root</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/starter/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/starter/war/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/starter/war/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
@@ -51,7 +51,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.starter.jar</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
</dependencies>
</project>
Modified: epp/portal/tags/EPP_5_2_1_ER01/testsuite/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/testsuite/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/testsuite/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.testsuite</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/testsuite/selenium-snifftests/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/testsuite/selenium-snifftests/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/testsuite/selenium-snifftests/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.selenium.snifftests</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/testsuite/webuibasedsamples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/testsuite/webuibasedsamples/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/testsuite/webuibasedsamples/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.webui.based.samples</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/web/eXoResources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/eXoResources/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/web/eXoResources/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/web/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.web</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/web/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/portal/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/web/portal/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/web/rest/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/rest/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/web/rest/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/webui/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/core/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/webui/core/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/webui/dashboard/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/dashboard/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/webui/dashboard/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/webui/eXo/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/eXo/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/webui/eXo/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/webui/framework/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/framework/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/webui/framework/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/webui/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/webui/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.webui</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/webui/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/portal/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/webui/portal/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/webui/portlet/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/portlet/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/webui/portlet/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-component/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-component/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-component/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -26,7 +26,7 @@
<parent>
<artifactId>gatein-wsrp-integration-parent</artifactId>
<groupId>org.gatein.integration</groupId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-config/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-config/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-config/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -26,7 +26,7 @@
<parent>
<artifactId>gatein-wsrp-integration-parent</artifactId>
<groupId>org.gatein.integration</groupId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>extension-config</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-ear/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-ear/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -28,7 +28,7 @@
<parent>
<artifactId>gatein-wsrp-integration-parent</artifactId>
<groupId>org.gatein.integration</groupId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>extension-ear</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-ear-as5/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-ear-as5/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-ear-as5/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.gatein.integration</groupId>
<artifactId>gatein-wsrp-integration-parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>extension-ear-as5</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-war/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-war/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -27,7 +27,7 @@
<parent>
<artifactId>gatein-wsrp-integration-parent</artifactId>
<groupId>org.gatein.integration</groupId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>extension-war</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/pom.xml 2012-03-01 00:15:19 UTC (rev 8511)
@@ -34,7 +34,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<description>GateIn WSRP Integration extension parent</description>
12 years, 10 months
gatein SVN: r8510 - epp/portal/tags.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2012-02-29 19:14:15 -0500 (Wed, 29 Feb 2012)
New Revision: 8510
Removed:
epp/portal/tags/EPP_5_2_1_ER01/
Log:
Prepare release
12 years, 10 months
gatein SVN: r8509 - in epp/portal/tags: EPP_5_2_1_ER01 and 108 other directories.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2012-02-29 19:05:46 -0500 (Wed, 29 Feb 2012)
New Revision: 8509
Added:
epp/portal/tags/EPP_5_2_1_ER01/
Modified:
epp/portal/tags/EPP_5_2_1_ER01/component/application-registry/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/common/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/identity/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/management/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/pc/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/portal/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/resources/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/scripting/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/test/core/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/test/jcr/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/test/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/web/api/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/web/controller/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/web/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/web/resources/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/web/security/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/component/web/server/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/examples/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/gatein-management/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/portletbridge/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/serverAddon/gatein.ear/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/serverAddon/integration.war/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/serverAddon/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-core/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-doc/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-jcr/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-junit/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-kernel/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-parent/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-ws/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-common/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-dep/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-examples/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-management/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-mop/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-parent/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-pc/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-portal/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-shindig/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-simplecaptcha/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-sso/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-wci/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-wsrp/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/jboss-eppsp/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/jboss-picketlink-idm/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/jboss-portletbridge/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/mead.parent/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/distribution/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/extension/config/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/extension/ear/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/extension/jar/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/extension/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/extension/war/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/portal/config/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/portal/ear/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/portal/jar/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/portal/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/portal/rest-war/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/portal/war/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/api/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/jsfhellouser/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/jsphellouser/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/simplesthelloworld/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/struts-jpetstore/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/skins/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/examples/skins/simpleskin/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/gadgets/core/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/gadgets/eXoGadgets/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/gadgets/gwtGadgets/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/gadgets/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/gadgets/server/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/portlet/dashboard/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/portlet/exoadmin/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/portlet/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/portlet/web/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/server/jboss/patch-ear/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/server/jboss/plugin/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/server/jboss/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/server/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/starter/ear/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/starter/jar/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/starter/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/starter/war/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/testsuite/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/testsuite/selenium-snifftests/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/testsuite/webuibasedsamples/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/web/eXoResources/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/web/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/web/portal/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/web/rest/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/webui/core/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/webui/dashboard/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/webui/eXo/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/webui/framework/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/webui/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/webui/portal/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/webui/portlet/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-component/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-config/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-ear-as5/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-ear/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-war/pom.xml
epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/pom.xml
Log:
Prepare release
Property changes on: epp/portal/tags/EPP_5_2_1_ER01
___________________________________________________________________
Added: svn:ignore
+ *.iml
.idea
Added: svn:mergeinfo
+ /epp/portal/branches/EPP_5_1_0_GA_JBEPP-795:5868
/portal/branches/branch-GTNPORTAL-1592:4868,4875,4894
/portal/branches/branch-GTNPORTAL-1643:5002,5063,5167
/portal/branches/branch-GTNPORTAL-1700:5348,5363,5402,5445
/portal/branches/branch-GTNPORTAL-1731:5622,5644,5668
/portal/branches/branch-GTNPORTAL-1745:5765
/portal/branches/branch-GTNPORTAL-1790:5871
/portal/branches/branch-GTNPORTAL-1822:5943,5952
/portal/branches/branch-GTNPORTAL-1832:6030,6063
/portal/branches/branch-GTNPORTAL-1872:6400,6551
/portal/branches/branch-GTNPORTAL-1921:6603,6771-6772,6774
/portal/branches/branch-GTNPORTAL-1963:6904,6915-6916
/portal/branches/decoupled-webos:6214-6243
/portal/branches/gatein-management:6920-6958
/portal/branches/global-portlet-metadata:6298-6384
/portal/branches/site-describability:6171-6235
/portal/branches/xss:7377-7595,7597
/portal/branches/xss-issues:7350-7351,7358
/portal/trunk:4876,4891,5269,5744,5822,5943,6168,6196,6201-6203,6205-6206,6223,6323,6437,6440,6449,6452,6573,6783-6784,6912-6913,6960,7042,7061,7085,7095,7117,7125,7132-7134,7186,7239,7262,7308,7326,7330-7334,7359,7367,7412,7433,7450,7452,7454,7478,7497,7500,7552,7554-7555,7570-7571,7573,7577,7598,7614-7615,7695-7696,7701-7704,7741,7748,7773,7780,7857,7877,7900,7928,7938,8045,8053,8072
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/application-registry/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/application-registry/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/application-registry/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/common/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/common/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/common/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.common</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/identity/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/identity/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/identity/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/management/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/management/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/management/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/pc/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/pc/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/pc/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.component</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/portal/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/portal/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/resources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/resources/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/resources/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/scripting/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/scripting/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/scripting/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/test/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/test/core/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/test/core/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/test/jcr/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/test/jcr/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/test/jcr/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/test/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/test/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/test/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/web/api/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/api/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/web/api/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/web/controller/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/controller/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/web/controller/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/web/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/web/resources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/resources/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/web/resources/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/web/security/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/security/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/web/security/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/component/web/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/server/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/component/web/server/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/examples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/examples/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/examples/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/gatein-management/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/gatein-management/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/gatein-management/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<groupId>org.jboss.portal</groupId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/portletbridge/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/portletbridge/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/portletbridge/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/serverAddon/gatein.ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/gatein.ear/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/serverAddon/gatein.ear/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>gatein</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/serverAddon/integration.war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/integration.war/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/serverAddon/integration.war/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>integration</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/serverAddon/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/jboss-epp/serverAddon/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-core/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-core/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01/version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-doc/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-doc/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-doc/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01/version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-jcr/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-jcr/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-jcr/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01/version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-junit/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-junit/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-junit/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01/version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-kernel/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-kernel/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-kernel/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01/version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-parent/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-parent/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-parent/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01/version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-ws/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-ws/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/exo-ws/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01/version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-common/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-common/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-common/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01/version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-dep/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-dep/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-dep/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01/version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-examples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-examples/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-examples/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01/version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-management/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-management/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-management/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01/version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-mop/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-mop/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-mop/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01/version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-parent/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-parent/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-parent/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01/version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-pc/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-pc/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-pc/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01/version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-portal/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-portal/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01/version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-shindig/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-shindig/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-shindig/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01/version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-simplecaptcha/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-simplecaptcha/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-simplecaptcha/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01/version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-sso/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-sso/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-sso/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01/version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-wci/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wci/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-wci/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01/version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-wsrp/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wsrp/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/gatein-wsrp/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01/version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/jboss-eppsp/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-eppsp/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/jboss-eppsp/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01/version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/jboss-picketlink-idm/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-picketlink-idm/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/jboss-picketlink-idm/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01/version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/jboss-portletbridge/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-portletbridge/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/jboss-portletbridge/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01/version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/mead.parent/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/mead.parent/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/mead.parent/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.2.1.ER01/version>
<artifactId>mead-tools</artifactId>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/mead-tools/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<groupId>org.exoplatform.portal.mead</groupId>
@@ -55,7 +55,7 @@
</build>
<properties>
- <gatein.tag>EPP_5.2.1.DR01-SNAPSHOT</gatein.tag>
+ <gatein.tag>EPP_5.2.1.ER01/gatein.tag>
<!--<gatein-portal.svnpath>epp/portal/tags/${gatein.tag}</gatein-portal.svnpath>-->
<!-- Ant properties -->
Modified: epp/portal/tags/EPP_5_2_1_ER01/distribution/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/distribution/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>distribution.parent</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/extension/config/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/config/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/extension/config/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/extension/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/ear/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/extension/ear/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
@@ -38,17 +38,17 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.config</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.jar</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.api</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<scope>provided</scope>
<exclusions>
<exclusion>
@@ -76,7 +76,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.war</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<type>war</type>
</dependency>
<dependency>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/extension/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/jar/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/extension/jar/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/extension/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/extension/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/extension/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/war/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/extension/war/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.sample</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/portal/config/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/config/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/portal/config/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/portal/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/ear/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/portal/ear/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
@@ -38,17 +38,17 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.config</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.jar</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.api</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<scope>provided</scope>
<exclusions>
<exclusion>
@@ -76,13 +76,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.war</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.rest-war</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<type>war</type>
</dependency>
<dependency>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/portal/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/jar/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/portal/jar/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/portal/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/portal/rest-war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/rest-war/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/portal/rest-war/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/portal/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/war/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/portal/war/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/api/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/api/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/api/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>gatein-api</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/jsfhellouser/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/jsfhellouser/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/jsfhellouser/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>gatein-jsf-hellouser</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/jsphellouser/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/jsphellouser/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/jsphellouser/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>gatein-jsp-hellouser</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/simplesthelloworld/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/simplesthelloworld/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/simplesthelloworld/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>gatein-simplest-helloworld</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/struts-jpetstore/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/struts-jpetstore/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/portlets/struts-jpetstore/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>struts-jpetstore</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/skins/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/skins/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/skins/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/examples/skins/simpleskin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/skins/simpleskin/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/examples/skins/simpleskin/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.portal.examples.skins</groupId>
<artifactId>skins-parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>gatein-sample-skin</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/gadgets/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/core/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/gadgets/core/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -14,7 +14,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.gadgets-core</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/gadgets/eXoGadgets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/eXoGadgets/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/gadgets/eXoGadgets/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/gadgets/gwtGadgets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/gwtGadgets/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/gadgets/gwtGadgets/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.gwtGadgets</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/gadgets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/gadgets/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.gadgets</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/gadgets/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/server/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/gadgets/server/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.gadgets-server</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -31,7 +31,7 @@
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<packaging>pom</packaging>
<name>EPP GateIn - Portal - ${project.version}</name>
@@ -464,74 +464,74 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.controller</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.security</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.server</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.api</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.resources</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.pc</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.application-registry</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
@@ -541,68 +541,68 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.scripting</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.management</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.framework</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portlet</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.core</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.dashboard</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets-core</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<type>test-jar</type>
</dependency>
<dependency>
@@ -619,7 +619,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss.plugin</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
<!-- Chromattic -->
Modified: epp/portal/tags/EPP_5_2_1_ER01/portlet/dashboard/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/dashboard/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/portlet/dashboard/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/portlet/exoadmin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/portlet/exoadmin/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/portlet/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/portlet/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.portlet</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/portlet/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/web/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/portlet/web/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/server/jboss/patch-ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/server/jboss/patch-ear/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/server/jboss/patch-ear/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/server/jboss/plugin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/server/jboss/plugin/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/server/jboss/plugin/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/server/jboss/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/server/jboss/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/server/jboss/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.server.jboss</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/server/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/server/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.server</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/starter/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/starter/ear/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/starter/ear/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
@@ -38,7 +38,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.starter.war</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<type>war</type>
</dependency>
</dependencies>
Modified: epp/portal/tags/EPP_5_2_1_ER01/starter/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/starter/jar/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/starter/jar/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER01/starter/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/starter/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/starter/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.starter.root</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/starter/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/starter/war/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/starter/war/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
@@ -51,7 +51,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.starter.jar</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</dependency>
</dependencies>
</project>
Modified: epp/portal/tags/EPP_5_2_1_ER01/testsuite/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/testsuite/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/testsuite/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.testsuite</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/testsuite/selenium-snifftests/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/testsuite/selenium-snifftests/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/testsuite/selenium-snifftests/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.selenium.snifftests</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/testsuite/webuibasedsamples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/testsuite/webuibasedsamples/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/testsuite/webuibasedsamples/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.webui.based.samples</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/web/eXoResources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/eXoResources/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/web/eXoResources/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/web/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.web</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/web/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/portal/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/web/portal/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/web/rest/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/rest/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/web/rest/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/webui/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/core/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/webui/core/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/webui/dashboard/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/dashboard/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/webui/dashboard/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/webui/eXo/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/eXo/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/webui/eXo/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/webui/framework/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/framework/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/webui/framework/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/webui/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/webui/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>exo.portal.webui</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/webui/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/portal/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/webui/portal/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/webui/portlet/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/portlet/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/webui/portlet/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-component/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-component/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-component/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -26,7 +26,7 @@
<parent>
<artifactId>gatein-wsrp-integration-parent</artifactId>
<groupId>org.gatein.integration</groupId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-config/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-config/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-config/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -26,7 +26,7 @@
<parent>
<artifactId>gatein-wsrp-integration-parent</artifactId>
<groupId>org.gatein.integration</groupId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>extension-config</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-ear/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-ear/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -28,7 +28,7 @@
<parent>
<artifactId>gatein-wsrp-integration-parent</artifactId>
<groupId>org.gatein.integration</groupId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>extension-ear</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-ear-as5/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-ear-as5/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-ear-as5/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.gatein.integration</groupId>
<artifactId>gatein-wsrp-integration-parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>extension-ear-as5</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-war/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/extension-war/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -27,7 +27,7 @@
<parent>
<artifactId>gatein-wsrp-integration-parent</artifactId>
<groupId>org.gatein.integration</groupId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<artifactId>extension-war</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/pom.xml 2012-02-29 23:44:15 UTC (rev 8508)
+++ epp/portal/tags/EPP_5_2_1_ER01/wsrp-integration/pom.xml 2012-03-01 00:05:46 UTC (rev 8509)
@@ -34,7 +34,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.DR01-SNAPSHOT</version>
+ <version>5.1.2.ER01</version>
</parent>
<description>GateIn WSRP Integration extension parent</description>
12 years, 10 months