gatein SVN: r8614 - epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/application.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2012-03-16 08:26:50 -0400 (Fri, 16 Mar 2012)
New Revision: 8614
Modified:
epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortletForm.java
Log:
Bug 803896
- Removed improper NullFieldValidator on description field.
- Cleaned-up formatting as it was getting unwieldy to see what was going on
- Replaced (and tested) use of deprecated UIFormCheckBoxInput by UICheckBoxInput.
Modified: epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortletForm.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortletForm.java 2012-03-16 04:28:51 UTC (rev 8613)
+++ epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortletForm.java 2012-03-16 12:26:50 UTC (rev 8614)
@@ -46,6 +46,7 @@
import org.exoplatform.webui.event.Event.Phase;
import org.exoplatform.webui.event.EventListener;
import org.exoplatform.webui.form.*;
+import org.exoplatform.webui.form.input.UICheckBoxInput;
import org.exoplatform.webui.form.validator.NotHTMLTagValidator;
import org.exoplatform.webui.form.validator.ExpressionValidator;
import org.exoplatform.webui.form.validator.MandatoryValidator;
@@ -94,23 +95,20 @@
UIFormInputSet uiPortletPrefSet = new UIFormInputSet(FIELD_PORTLET_PREF).setRendered(false);
addUIFormInput(uiPortletPrefSet);
UIFormInputSet uiSettingSet = new UIFormInputSet("PortletSetting");
- uiSettingSet.
- /*addUIFormInput(new UIFormStringInput("id", "id", null).
- addValidator(MandatoryValidator.class).setEditable(false)).
- addUIFormInput(new UIFormStringInput("windowId", "windowId", null).setEditable(false)).*/
- addUIFormInput(new UIFormInputInfo("displayName", "displayName", null)).addUIFormInput(
- new UIFormStringInput("title", "title", null).addValidator(StringLengthValidator.class, 3, 60).addValidator(NotHTMLTagValidator.class,
- "UIPortletForm.msg.InvalidPortletTitle"))
- .addUIFormInput(
- new UIFormStringInput("width", "width", null).addValidator(ExpressionValidator.class, "(^([1-9]\\d*)px$)?",
- "UIPortletForm.msg.InvalidWidthHeight")).addUIFormInput(
- new UIFormStringInput("height", "height", null).addValidator(ExpressionValidator.class,
- "(^([1-9]\\d*)px$)?", "UIPortletForm.msg.InvalidWidthHeight")).addUIFormInput(
- new UIFormCheckBoxInput("showInfoBar", "showInfoBar", false)).addUIFormInput(
- new UIFormCheckBoxInput("showPortletMode", "showPortletMode", false)).addUIFormInput(
- new UIFormCheckBoxInput("showWindowState", "showWindowState", false)).addUIFormInput(
- new UIFormTextAreaInput("description", "description", null).addValidator(
- NullFieldValidator.class).addValidator(NotHTMLTagValidator.class, "UIPortletForm.msg.InvalidPortletDescription"));
+ uiSettingSet
+ .addUIFormInput(new UIFormInputInfo("displayName", "displayName", null))
+ .addUIFormInput(new UIFormStringInput("title", "title", null)
+ .addValidator(StringLengthValidator.class, 3, 60)
+ .addValidator(NotHTMLTagValidator.class, "UIPortletForm.msg.InvalidPortletTitle"))
+ .addUIFormInput(new UIFormStringInput("width", "width", null)
+ .addValidator(ExpressionValidator.class, "(^([1-9]\\d*)px$)?", "UIPortletForm.msg.InvalidWidthHeight"))
+ .addUIFormInput(new UIFormStringInput("height", "height", null)
+ .addValidator(ExpressionValidator.class, "(^([1-9]\\d*)px$)?", "UIPortletForm.msg.InvalidWidthHeight"))
+ .addUIFormInput(new UICheckBoxInput("showInfoBar", "showInfoBar", false))
+ .addUIFormInput(new UICheckBoxInput("showPortletMode", "showPortletMode", false))
+ .addUIFormInput(new UICheckBoxInput("showWindowState", "showWindowState", false))
+ .addUIFormInput(new UIFormTextAreaInput("description", "description", null)
+ .addValidator(NotHTMLTagValidator.class, "UIPortletForm.msg.InvalidPortletDescription"));
addUIFormInput(uiSettingSet);
UIFormInputIconSelector uiIconSelector = new UIFormInputIconSelector("Icon", "icon");
addUIFormInput(uiIconSelector);
12 years, 9 months
gatein SVN: r8613 - in epp/docs/branches/5.2/Release_Notes: en-US and 1 other directory.
by do-not-reply@jboss.org
Author: jaredmorgs
Date: 2012-03-16 00:28:51 -0400 (Fri, 16 Mar 2012)
New Revision: 8613
Added:
epp/docs/branches/5.2/Release_Notes/en-US/needinfo.xml
Modified:
epp/docs/branches/5.2/Release_Notes/en-US/5.2.1_Release_Notes.xml
epp/docs/branches/5.2/Release_Notes/en-US/known.xml
epp/docs/branches/5.2/Release_Notes/en-US/resolved.xml
epp/docs/branches/5.2/Release_Notes/publican.cfg
Log:
Version 1 of the EPP 5.2.1 release notes as generated by the BZ release note script
Modified: epp/docs/branches/5.2/Release_Notes/en-US/5.2.1_Release_Notes.xml
===================================================================
--- epp/docs/branches/5.2/Release_Notes/en-US/5.2.1_Release_Notes.xml 2012-03-15 21:53:32 UTC (rev 8612)
+++ epp/docs/branches/5.2/Release_Notes/en-US/5.2.1_Release_Notes.xml 2012-03-16 04:28:51 UTC (rev 8613)
@@ -3,7 +3,7 @@
<!ENTITY % BOOK_ENTITIES SYSTEM "5.2.1_Release_Notes.ent">
%BOOK_ENTITIES;
]>
-<book>
+<book status="draft">
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Book_Info.xml"/>
<chapter id="Release_Notes-Introduction">
<title>Introduction</title>
@@ -230,6 +230,7 @@
</para>
</formalpara>
</chapter>
+ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="needinfo.xml" encoding="XML"/>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="known.xml" encoding="XML"/>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="resolved.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Revision_History.xml"/>
Modified: epp/docs/branches/5.2/Release_Notes/en-US/known.xml
===================================================================
--- epp/docs/branches/5.2/Release_Notes/en-US/known.xml 2012-03-15 21:53:32 UTC (rev 8612)
+++ epp/docs/branches/5.2/Release_Notes/en-US/known.xml 2012-03-16 04:28:51 UTC (rev 8613)
@@ -6,8 +6,12 @@
<title>Known Issues</title>
<para>
- The following issues are known to exist in this version of the JBoss Enterprise Portal Platform and will be fixed in a subsequent release.
+ The following issues are known to exist in JBoss Enterprise Portal Platform, and will be fixed in a subsequent release.
</para>
+ <remark>
+ Do some of these issues look more like Resolved Issues? If they do, its because the ticket has not been set to the correct
+ resolution status (VERIFIED, CLOSED).
+ </remark>
<variablelist>
<varlistentry>
@@ -16,11 +20,35 @@
<para>
An issue was found in the Site Publisher Installation Guide regarding the requirement for Site Publisher to have a separate database to Enterprise Portal Platform. A customer identified an issue with the clarity of this information when they encountered a problem with database provisioning for the platform. The Site Publisher Installation Guide has been merged with the Installation Guide. The Database Configuration section has been extensively reworked to specify Site Publisher must have its own IDM and JCR database configured, and matching database connector JNDI name directives specified in gatein-ds.xml
</para>
+ </listitem>
+</varlistentry>
+
+<varlistentry>
+ <term><ulink url="https://bugzilla.redhat.com/show_bug.cgi?id=794386" /></term>
+ <listitem>
<para>
- This behavior persists in JBoss Enterprise Portal Platform 5.2.1 and will be resolved in a future release.
+ It was discovered that there was insufficient information in the Installation Guide regarding how to replace the default Hypersonic Database (HSQLDB) with a certified database that Red Hat supports. Detailed steps have been added to the Database Configuration section of the guide, which explain how to replace HSQLDB, and the requirements JBoss Enterprise Portal Platform has regarding separate databases for JCR and IDM.
</para>
</listitem>
</varlistentry>
+<varlistentry>
+ <term><ulink url="https://bugzilla.redhat.com/show_bug.cgi?id=794440" /></term>
+ <listitem>
+ <para>
+ Gadgets require HTTPS to be configured correctly in order to operate. This requirement was not clearly documented in the Installation Guide, which caused configuration issues for customers. Instructions from a KBase article have been incorporated into the Installation Guide, with clarifying links to other JBoss Middleware product documentation for background info on keystore and truststore configuration.
+ </para>
+ </listitem>
+</varlistentry>
+
+<varlistentry>
+ <term><ulink url="https://bugzilla.redhat.com/show_bug.cgi?id=793259" /></term>
+ <listitem>
+ <para>
+ A problem affecting Microsoft Internet Explorer 6 caused portal javascript module messages to remain in the window status area after the module had successfully loaded. This caused confusion if a customer was not aware a module had loaded, and saw the error message. The fix corrects the issue by clearing the window.status message after a javascript module is loaded.
+ </para>
+ </listitem>
+</varlistentry>
+
</variablelist>
</chapter>
Added: epp/docs/branches/5.2/Release_Notes/en-US/needinfo.xml
===================================================================
--- epp/docs/branches/5.2/Release_Notes/en-US/needinfo.xml (rev 0)
+++ epp/docs/branches/5.2/Release_Notes/en-US/needinfo.xml 2012-03-16 04:28:51 UTC (rev 8613)
@@ -0,0 +1,73 @@
+<?xml version='1.0'?>
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
+
+<chapter id = "needinfo_issues">
+ <title>NEEDINFO</title>
+
+ <para>
+ The following issues require more information from developers, or need to be processed by the lead writer before they can be approved for Release Note inclusion.
+ </para>
+ <remark>
+ These tickets will not be included in Release Notes as they currently stand.
+ This could be because the tickets have not been docs Ack'd (still at release_note?)
+ or the tickets have not been set to the correct resolution status (VERIFIED, CLOSED).
+ </remark>
+ <variablelist>
+
+<varlistentry>
+ <term><ulink url="https://bugzilla.redhat.com/show_bug.cgi?id=793639" /></term>
+ <listitem>
+ <para>
+ If a user manually added users or groups into a Java Content Repository or LDAP, the required objects were not created because some necessary listeners were not called as they would be if the Organization API was used. This could result in exceptions in some situations, because the required JCR objects for a particular user or group were not correctly initialized. The fix introduces the CoreOrganizationInitializer plugin (exo.portal.component.initializer), which monitors the JCR and LDAP for changes and initiates the listeners when required. The plugin is disabled by default, but can be enabled by a portal administrator by uncommenting the block in JBOSS_HOME/server/[PROFILE]/deploy/gatein.ear/02portal.war/WEB-INF/conf/configuration.xml, which imports the static configuration stored in the initializer-configuration.xml file .
+ </para>
+ </listitem>
+</varlistentry>
+
+<varlistentry>
+ <term><ulink url="https://bugzilla.redhat.com/show_bug.cgi?id=793804" /></term>
+ <listitem>
+ <para>
+ CAUSE: when memberships of some user are changed (For example user root will remove user john from group /platform/users group), then user john won't see updates immediately. He needs to logout and login to see it. Example:
+1) Start browser1, Go to http://localhost:8080/portal and login as john. User john is in group /platform/administrators by default, so he can see "Administrators" link in group menu,
+2) Start browser2, Go to http://localhost:8080/portal and login as root. Go to OrganizationManagement and remove user john from /platform/administrators
+3) Return to browser1 and refresh page. User john can still see "administrators" pages, which is a bug.
+4) Logout and login again as john. Now "Administrators" are not longer visible. Bad is that john needs to logout and login, otherwise permissions for pages are not reflected.
+
+FIX: I added new listener "MembershipUpdateListener" into organization-configuration.xml file. This listener will update all memberships of logged user in ConversationRegistry, so that changes are immediately reflected in UI.
+
+RESULT: Changes are immediately reflected in UI. In previous example, user john won't see "Administrators" page in step 3, which is correct.
+ </para>
+ </listitem>
+</varlistentry>
+
+<varlistentry>
+ <term><ulink url="https://bugzilla.redhat.com/show_bug.cgi?id=794235" /></term>
+ <listitem>
+ <para>
+ CAUSE: When user login, he can see his fullname in right top corner. This is his fullName according to format "firstName lastName" and it's hardcoded so that users can't use different format. It is also quite bad for some languages like Japanese, where is common to use opposite order as fullName.
+
+FIX: There is new field "Display Name" in UI in all screens where is possible to create or edit user. So user is able to fill his displayName and this displayName will be used in right top corner instead of fullName. DisplayName is not mandatory and when user is not using it, it fallback to fullName (old behaviour). This also ensure backward compatibility with older versions of EPP. Name of new attribute in Picketlink IDM database is "displayName" but as said before, attribute is not mandatory.
+ </para>
+ </listitem>
+</varlistentry>
+
+<varlistentry>
+ <term><ulink url="https://bugzilla.redhat.com/show_bug.cgi?id=793838" /></term>
+ <listitem>
+ <para>
+ Release notes docs status: Not Yet Documented
+
+Release notes: CAUSE: Previously it was possible to integrate EPP only with JOSSO 1.8.1
+
+FIX: It's fixed in EPP SSO component, which has been updated in EPP to have the fix available. Now it's still possible to integrate with JOSSO 1.8.1 but also with newer versions like 1.8.2, 1.8.3, 1.8.4 and 1.8.5.
+
+There is changed JOSSO agent API between JOSSO versions 1.8.1 and 1.8.2, which means that we need to have slightly different packaging for JOSSO 1.8.1 and for JOSSO 1.8.2 and newer.
+
+It also affects documentation and related Docs issue is https://bugzilla.redhat.com/show_bug.cgi?id=794433
+ </para>
+ </listitem>
+</varlistentry>
+
+ </variablelist>
+</chapter>
Modified: epp/docs/branches/5.2/Release_Notes/en-US/resolved.xml
===================================================================
--- epp/docs/branches/5.2/Release_Notes/en-US/resolved.xml 2012-03-15 21:53:32 UTC (rev 8612)
+++ epp/docs/branches/5.2/Release_Notes/en-US/resolved.xml 2012-03-16 04:28:51 UTC (rev 8613)
@@ -5,9 +5,32 @@
<chapter id = "resolved">
<title>Resolved Issues</title>
<para>
- The following issues have been resolved in JBoss Enterprise Portal Platform 5.2.1.
+ The following issues have been resolved in JBoss Enterprise Portal Platform .
</para>
<variablelist>
+<varlistentry>
+ <term><ulink url="https://bugzilla.redhat.com/show_bug.cgi?id=793956" /></term>
+ <listitem>
+ <para>
+ Picketlink IDM did not support system property substitution in the configuration files.
+
+The fix implements parameters that allow system property substitution. Substitution is supported for every String element in the Picketlink IDM configuration file. The substitution operates in the same way as JBoss Enterprise Application Platform substitution. Usage examples follow.
+
+<itemizedlist>
+ <listitem>
+ <para>${property1} - Substitutes the system property "property1".</para>
+ </listitem>
+ <listitem>
+ <para>${property1:defaultValue} - Substitutes the system property "property1", and passes the "defaultValue" value if the system property is not set.</para>
+ </listitem>
+ <listitem>
+ <para>${property1,property2:defaultValue} - Substitutes the system property "property1", then attempts to set the "property2" system property. If "property1" and "property2" are not set, fallback to "defaultValue".</para>
+ </listitem>
+</itemizedlist>
+ </para>
+ </listitem>
+</varlistentry>
+
</variablelist>
</chapter>
Modified: epp/docs/branches/5.2/Release_Notes/publican.cfg
===================================================================
--- epp/docs/branches/5.2/Release_Notes/publican.cfg 2012-03-15 21:53:32 UTC (rev 8612)
+++ epp/docs/branches/5.2/Release_Notes/publican.cfg 2012-03-16 04:28:51 UTC (rev 8613)
@@ -4,7 +4,5 @@
xml_lang: en-US
type: Book
brand: JBoss
-#show_remarks: 1
-cvs_branch: DOCS-RHEL-6
-cvs_root: :ext:cvs.devel.redhat.com:/cvs/dist
-cvs_pkg: JBoss_Enterprise_Portal_Platform-5.2.0_Release_Notes-5.2-web-__LANG__
+show_remarks: 1
+git_branch: docs-rhel-6
12 years, 9 months
gatein SVN: r8612 - in epp/portal/branches/EPP_5_2_Branch: component and 109 other directories.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2012-03-15 17:53:32 -0400 (Thu, 15 Mar 2012)
New Revision: 8612
Modified:
epp/portal/branches/EPP_5_2_Branch/component/application-registry/pom.xml
epp/portal/branches/EPP_5_2_Branch/component/common/pom.xml
epp/portal/branches/EPP_5_2_Branch/component/identity/pom.xml
epp/portal/branches/EPP_5_2_Branch/component/initializer/pom.xml
epp/portal/branches/EPP_5_2_Branch/component/management/pom.xml
epp/portal/branches/EPP_5_2_Branch/component/pc/pom.xml
epp/portal/branches/EPP_5_2_Branch/component/pom.xml
epp/portal/branches/EPP_5_2_Branch/component/portal/pom.xml
epp/portal/branches/EPP_5_2_Branch/component/resources/pom.xml
epp/portal/branches/EPP_5_2_Branch/component/scripting/pom.xml
epp/portal/branches/EPP_5_2_Branch/component/test/core/pom.xml
epp/portal/branches/EPP_5_2_Branch/component/test/jcr/pom.xml
epp/portal/branches/EPP_5_2_Branch/component/test/pom.xml
epp/portal/branches/EPP_5_2_Branch/component/web/api/pom.xml
epp/portal/branches/EPP_5_2_Branch/component/web/controller/pom.xml
epp/portal/branches/EPP_5_2_Branch/component/web/pom.xml
epp/portal/branches/EPP_5_2_Branch/component/web/resources/pom.xml
epp/portal/branches/EPP_5_2_Branch/component/web/security/pom.xml
epp/portal/branches/EPP_5_2_Branch/component/web/server/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/examples/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/gatein-management/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/portletbridge/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/gatein.ear/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/integration.war/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-core/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-doc/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-jcr/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-junit/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-kernel/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-parent/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-ws/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-common/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-dep/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-examples/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-jon-plugin/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-management/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-mop/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-parent/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-pc/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-portal/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-shindig/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-simplecaptcha/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-sso/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wci/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wsrp/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-eppsp/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-picketlink-idm/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-portletbridge/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/mead.parent/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/pom.xml
epp/portal/branches/EPP_5_2_Branch/examples/extension/config/pom.xml
epp/portal/branches/EPP_5_2_Branch/examples/extension/ear/pom.xml
epp/portal/branches/EPP_5_2_Branch/examples/extension/jar/pom.xml
epp/portal/branches/EPP_5_2_Branch/examples/extension/pom.xml
epp/portal/branches/EPP_5_2_Branch/examples/extension/war/pom.xml
epp/portal/branches/EPP_5_2_Branch/examples/pom.xml
epp/portal/branches/EPP_5_2_Branch/examples/portal/config/pom.xml
epp/portal/branches/EPP_5_2_Branch/examples/portal/ear/pom.xml
epp/portal/branches/EPP_5_2_Branch/examples/portal/jar/pom.xml
epp/portal/branches/EPP_5_2_Branch/examples/portal/pom.xml
epp/portal/branches/EPP_5_2_Branch/examples/portal/rest-war/pom.xml
epp/portal/branches/EPP_5_2_Branch/examples/portal/war/pom.xml
epp/portal/branches/EPP_5_2_Branch/examples/portlets/api/pom.xml
epp/portal/branches/EPP_5_2_Branch/examples/portlets/jsfhellouser/pom.xml
epp/portal/branches/EPP_5_2_Branch/examples/portlets/jsphellouser/pom.xml
epp/portal/branches/EPP_5_2_Branch/examples/portlets/pom.xml
epp/portal/branches/EPP_5_2_Branch/examples/portlets/simplesthelloworld/pom.xml
epp/portal/branches/EPP_5_2_Branch/examples/portlets/struts-jpetstore/pom.xml
epp/portal/branches/EPP_5_2_Branch/examples/skins/pom.xml
epp/portal/branches/EPP_5_2_Branch/examples/skins/simpleskin/pom.xml
epp/portal/branches/EPP_5_2_Branch/gadgets/core/pom.xml
epp/portal/branches/EPP_5_2_Branch/gadgets/eXoGadgets/pom.xml
epp/portal/branches/EPP_5_2_Branch/gadgets/gwtGadgets/pom.xml
epp/portal/branches/EPP_5_2_Branch/gadgets/pom.xml
epp/portal/branches/EPP_5_2_Branch/gadgets/server/pom.xml
epp/portal/branches/EPP_5_2_Branch/pom.xml
epp/portal/branches/EPP_5_2_Branch/portlet/dashboard/pom.xml
epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/pom.xml
epp/portal/branches/EPP_5_2_Branch/portlet/pom.xml
epp/portal/branches/EPP_5_2_Branch/portlet/web/pom.xml
epp/portal/branches/EPP_5_2_Branch/server/jboss/patch-ear/pom.xml
epp/portal/branches/EPP_5_2_Branch/server/jboss/plugin/pom.xml
epp/portal/branches/EPP_5_2_Branch/server/jboss/pom.xml
epp/portal/branches/EPP_5_2_Branch/server/pom.xml
epp/portal/branches/EPP_5_2_Branch/starter/ear/pom.xml
epp/portal/branches/EPP_5_2_Branch/starter/jar/pom.xml
epp/portal/branches/EPP_5_2_Branch/starter/pom.xml
epp/portal/branches/EPP_5_2_Branch/starter/war/pom.xml
epp/portal/branches/EPP_5_2_Branch/testsuite/pom.xml
epp/portal/branches/EPP_5_2_Branch/testsuite/selenium-snifftests/pom.xml
epp/portal/branches/EPP_5_2_Branch/testsuite/webuibasedsamples/pom.xml
epp/portal/branches/EPP_5_2_Branch/web/eXoResources/pom.xml
epp/portal/branches/EPP_5_2_Branch/web/pom.xml
epp/portal/branches/EPP_5_2_Branch/web/portal/pom.xml
epp/portal/branches/EPP_5_2_Branch/web/rest/pom.xml
epp/portal/branches/EPP_5_2_Branch/webui/core/pom.xml
epp/portal/branches/EPP_5_2_Branch/webui/dashboard/pom.xml
epp/portal/branches/EPP_5_2_Branch/webui/eXo/pom.xml
epp/portal/branches/EPP_5_2_Branch/webui/framework/pom.xml
epp/portal/branches/EPP_5_2_Branch/webui/pom.xml
epp/portal/branches/EPP_5_2_Branch/webui/portal/pom.xml
epp/portal/branches/EPP_5_2_Branch/webui/portlet/pom.xml
epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-component/pom.xml
epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-config/pom.xml
epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-ear-as5/pom.xml
epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-ear/pom.xml
epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-war/pom.xml
epp/portal/branches/EPP_5_2_Branch/wsrp-integration/pom.xml
Log:
Next development version
Modified: epp/portal/branches/EPP_5_2_Branch/component/application-registry/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/application-registry/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/component/application-registry/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/component/common/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/common/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/component/common/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.common</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/component/identity/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/identity/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/component/identity/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/component/initializer/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/initializer/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/component/initializer/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -3,7 +3,7 @@
<parent>
<artifactId>exo.portal.component</artifactId>
<groupId>org.exoplatform.portal</groupId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/component/management/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/management/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/component/management/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/component/pc/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/pc/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/component/pc/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/component/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/component/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.component</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/component/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/portal/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/component/portal/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/component/resources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/resources/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/component/resources/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/component/scripting/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/scripting/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/component/scripting/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/component/test/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/test/core/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/component/test/core/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/component/test/jcr/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/test/jcr/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/component/test/jcr/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/component/test/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/test/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/component/test/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/component/web/api/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/api/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/component/web/api/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/component/web/controller/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/controller/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/component/web/controller/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/component/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/component/web/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/component/web/resources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/resources/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/component/web/resources/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/component/web/security/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/security/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/component/web/security/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/component/web/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/server/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/component/web/server/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/examples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/examples/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/examples/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/gatein-management/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/gatein-management/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/gatein-management/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<groupId>org.jboss.portal</groupId>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/portletbridge/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/portletbridge/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/portletbridge/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/gatein.ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/gatein.ear/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/gatein.ear/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>gatein</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/integration.war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/integration.war/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/integration.war/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>integration</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-core/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-core/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-doc/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-doc/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-doc/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-jcr/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-jcr/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-jcr/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-junit/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-junit/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-junit/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-kernel/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-kernel/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-kernel/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-parent/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-parent/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-parent/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-ws/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-ws/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-ws/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-common/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-common/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-common/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-dep/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-dep/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-dep/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-examples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-examples/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-examples/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-jon-plugin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-jon-plugin/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-jon-plugin/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-management/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-management/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-management/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-mop/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-mop/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-mop/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-parent/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-parent/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-parent/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-pc/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-pc/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-pc/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-portal/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-portal/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-shindig/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-shindig/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-shindig/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-simplecaptcha/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-simplecaptcha/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-simplecaptcha/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-sso/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-sso/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-sso/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wci/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wci/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wci/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wsrp/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wsrp/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wsrp/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-eppsp/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-eppsp/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-eppsp/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-picketlink-idm/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-picketlink-idm/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-picketlink-idm/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-portletbridge/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-portletbridge/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-portletbridge/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/mead.parent/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/mead.parent/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/mead.parent/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<artifactId>mead-tools</artifactId>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<groupId>org.exoplatform.portal.mead</groupId>
@@ -55,8 +55,7 @@
</build>
<properties>
- <gatein.tag>EPP_5.2.1.ER02-SNAPSHOT</gatein.tag>
- <!--<gatein-portal.svnpath>epp/portal/tags/${gatein.tag}</gatein-portal.svnpath>-->
+ <gatein.tag>EPP_5.2.1.ER03-SNAPSHOT</gatein.tag>
<!-- Ant properties -->
<ant.build.file>build.xml</ant.build.file>
@@ -90,38 +89,9 @@
<!-- GateIn -->
<svn.gatein.repo>gatein</svn.gatein.repo>
- <!--<gatein-portal.svnpath>${project.scm.url}</gatein-portal.svnpath>-->
- <!-- <gatein-portal.svnpath>epp/portal/branches/EPP_5_2_Branch</gatein-portal.svnpath> -->
- <!--<gatein-parent.svnpath>maven/parent/tags/${org.gatein.parent.version}</gatein-parent.svnpath>-->
- <!--<gatein-dep.svnpath>maven/dep/tags/${org.gatein.dep.version}</gatein-dep.svnpath>-->
-
- <!--<gatein-common.svnpath>components/common/tags/${org.gatein.common.version}</gatein-common.svnpath>-->
- <!--<gatein-wci.svnpath>components/wci/tags/${org.gatein.wci.version}</gatein-wci.svnpath>-->
- <!--<gatein-pc.svnpath>components/pc/tags/${org.gatein.pc.version}</gatein-pc.svnpath>-->
- <!--<gatein-wsrp.svnpath>components/wsrp/tags/${org.gatein.wsrp.version}</gatein-wsrp.svnpath>-->
- <!--<gatein-mop.svnpath>components/mop/tags/${org.gatein.mop.version}</gatein-mop.svnpath>-->
- <!--<gatein-sso.svnpath>components/sso/tags/${sso.version}</gatein-sso.svnpath>-->
- <!--<gatein-simplecaptcha.svnpath>components/simplecaptcha/tags/${nl.captcha.simplecaptcha.version}</gatein-simplecaptcha.svnpath>-->
- <!--<gatein-shindig.svnpath>components/shindig/tags/${org.shindig.version}</gatein-shindig.svnpath>-->
-
- <!-- # JBoss components -->
- <!--<svn.jboss-picketlink-idm.repo>picketlink</svn.jboss-picketlink-idm.repo>-->
- <!--<jboss-picketlink-idm.svnpath>idm/tags/${org.picketlink.idm}</jboss-picketlink-idm.svnpath>-->
-
- <!--<svn.jboss-portletbridge.repo>portletbridge</svn.jboss-portletbridge.repo>-->
- <!--<jboss-portletbridge.svnpath>tags/${portletbridge.version}</jboss-portletbridge.svnpath>-->
-
<!-- # eXo components -->
<svn.exo.repo>exo-jcr</svn.exo.repo>
- <!--<exo-parent.svnpath>parent/tags/${org.exoplatform.parent.version}</exo-parent.svnpath>-->
- <!--<exo-doc.svnpath>docs-style/tags/${org.exoplatform.doc-style.version}</exo-doc.svnpath>-->
- <!--<exo-junit.svnpath>junit.framework/tags/${org.exoplatform.kernel.junit.version}</exo-junit.svnpath>-->
- <!--<exo-kernel.svnpath>kernel/tags/${org.exoplatform.kernel.version}</exo-kernel.svnpath>-->
- <!--<exo-core.svnpath>core/tags/${org.exoplatform.core.version}</exo-core.svnpath>-->
- <!--<exo-ws.svnpath>ws/tags/${org.exoplatform.ws.version}</exo-ws.svnpath>-->
- <!--<exo-jcr.svnpath>jcr/tags/${org.exoplatform.jcr.version}</exo-jcr.svnpath>-->
-
</properties>
<profiles>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>distribution.parent</artifactId>
@@ -29,7 +29,7 @@
<sso.directory>gatein-sso</sso.directory>
<!-- EPP Documentation main directory -->
- <epp.doc.directory>jboss-epp-doc-5.1</epp.doc.directory>
+ <epp.doc.directory>jboss-epp-doc-5.2</epp.doc.directory>
</properties>
Modified: epp/portal/branches/EPP_5_2_Branch/examples/extension/config/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/config/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/examples/extension/config/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/examples/extension/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/ear/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/examples/extension/ear/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</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.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.jar</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.api</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</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.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<type>war</type>
</dependency>
<dependency>
Modified: epp/portal/branches/EPP_5_2_Branch/examples/extension/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/jar/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/examples/extension/jar/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/examples/extension/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/examples/extension/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/examples/extension/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/war/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/examples/extension/war/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/examples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/examples/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.sample</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/examples/portal/config/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/config/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/examples/portal/config/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/examples/portal/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/ear/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/examples/portal/ear/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</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.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.jar</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.api</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</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.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.rest-war</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<type>war</type>
</dependency>
<dependency>
Modified: epp/portal/branches/EPP_5_2_Branch/examples/portal/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/jar/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/examples/portal/jar/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/examples/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/examples/portal/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/examples/portal/rest-war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/rest-war/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/examples/portal/rest-war/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/examples/portal/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/war/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/examples/portal/war/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/examples/portlets/api/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/api/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/examples/portlets/api/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>gatein-api</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/examples/portlets/jsfhellouser/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/jsfhellouser/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/examples/portlets/jsfhellouser/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>gatein-jsf-hellouser</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/examples/portlets/jsphellouser/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/jsphellouser/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/examples/portlets/jsphellouser/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>gatein-jsp-hellouser</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/examples/portlets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/examples/portlets/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/examples/portlets/simplesthelloworld/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/simplesthelloworld/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/examples/portlets/simplesthelloworld/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>gatein-simplest-helloworld</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/examples/portlets/struts-jpetstore/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/struts-jpetstore/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/examples/portlets/struts-jpetstore/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>struts-jpetstore</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/examples/skins/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/skins/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/examples/skins/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/examples/skins/simpleskin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/skins/simpleskin/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/examples/skins/simpleskin/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.portal.examples.skins</groupId>
<artifactId>skins-parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>gatein-sample-skin</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/gadgets/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/core/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/gadgets/core/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -14,7 +14,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gadgets-core</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/gadgets/eXoGadgets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/eXoGadgets/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/gadgets/eXoGadgets/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/gadgets/gwtGadgets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/gwtGadgets/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/gadgets/gwtGadgets/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gwtGadgets</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/gadgets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/gadgets/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gadgets</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/gadgets/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/server/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/gadgets/server/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gadgets-server</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -31,7 +31,7 @@
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<packaging>pom</packaging>
<name>EPP GateIn - Portal - ${project.version}</name>
@@ -75,9 +75,9 @@
</properties>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/epp/portal/tags/EPP_5.2.1.DR01</connection>
- <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/epp/portal/tags/EPP_5.2.1.DR01</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/epp/portal/tags/EPP_5.2.1.DR01</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/epp/portal/tags/EPP_5.2.1.E...</connection>
+ <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/epp/portal/tags/EPP_5.2.1.ER03-...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/epp/portal/tags/EPP_5.2.1.ER03-SNA...</url>
</scm>
<modules>
@@ -464,79 +464,79 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.controller</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.security</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.server</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.api</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.resources</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.pc</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.initializer</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.application-registry</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
@@ -546,68 +546,68 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.scripting</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.management</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.framework</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portlet</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.core</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.dashboard</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets-core</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<type>test-jar</type>
</dependency>
<dependency>
@@ -624,7 +624,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss.plugin</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
<!-- Chromattic -->
Modified: epp/portal/branches/EPP_5_2_Branch/portlet/dashboard/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/dashboard/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/portlet/dashboard/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/portlet/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/portlet/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.portlet</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/portlet/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/web/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/portlet/web/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/server/jboss/patch-ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/server/jboss/patch-ear/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/server/jboss/patch-ear/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/server/jboss/plugin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/server/jboss/plugin/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/server/jboss/plugin/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/server/jboss/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/server/jboss/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/server/jboss/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.server.jboss</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/server/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/server/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.server</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/starter/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/starter/ear/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/starter/ear/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</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.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
Modified: epp/portal/branches/EPP_5_2_Branch/starter/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/starter/jar/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/starter/jar/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/starter/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/starter/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/starter/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.starter.root</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/starter/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/starter/war/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/starter/war/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</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.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: epp/portal/branches/EPP_5_2_Branch/testsuite/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/testsuite/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/testsuite/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.testsuite</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/testsuite/selenium-snifftests/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/testsuite/selenium-snifftests/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/testsuite/selenium-snifftests/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.selenium.snifftests</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/testsuite/webuibasedsamples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/testsuite/webuibasedsamples/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/testsuite/webuibasedsamples/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>exo.webui.based.samples</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/web/eXoResources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/eXoResources/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/web/eXoResources/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/web/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.web</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/web/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/portal/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/web/portal/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/web/rest/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/rest/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/web/rest/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/webui/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/core/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/webui/core/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/webui/dashboard/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/dashboard/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/webui/dashboard/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/webui/eXo/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/eXo/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/webui/eXo/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/webui/framework/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/framework/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/webui/framework/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/webui/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/webui/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.webui</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/webui/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/portal/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/webui/portal/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/webui/portlet/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/portlet/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/webui/portlet/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-component/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-component/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-component/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -26,7 +26,7 @@
<parent>
<artifactId>gatein-wsrp-integration-parent</artifactId>
<groupId>org.gatein.integration</groupId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-config/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-config/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-config/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -26,7 +26,7 @@
<parent>
<artifactId>gatein-wsrp-integration-parent</artifactId>
<groupId>org.gatein.integration</groupId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>extension-config</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-ear/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-ear/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -28,7 +28,7 @@
<parent>
<artifactId>gatein-wsrp-integration-parent</artifactId>
<groupId>org.gatein.integration</groupId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>extension-ear</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-ear-as5/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-ear-as5/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-ear-as5/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.gatein.integration</groupId>
<artifactId>gatein-wsrp-integration-parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>extension-ear-as5</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-war/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-war/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -27,7 +27,7 @@
<parent>
<artifactId>gatein-wsrp-integration-parent</artifactId>
<groupId>org.gatein.integration</groupId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<artifactId>extension-war</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/wsrp-integration/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
+++ epp/portal/branches/EPP_5_2_Branch/wsrp-integration/pom.xml 2012-03-15 21:53:32 UTC (rev 8612)
@@ -34,7 +34,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER03-SNAPSHOT</version>
</parent>
<description>GateIn WSRP Integration extension parent</description>
12 years, 9 months
gatein SVN: r8611 - in epp/portal/tags: EPP_5_2_1_ER02 and 110 other directories.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2012-03-15 11:34:17 -0400 (Thu, 15 Mar 2012)
New Revision: 8611
Added:
epp/portal/tags/EPP_5_2_1_ER02/
Modified:
epp/portal/tags/EPP_5_2_1_ER02/component/application-registry/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/component/common/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/component/identity/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/component/initializer/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/component/management/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/component/pc/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/component/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/component/portal/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/component/resources/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/component/scripting/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/component/test/core/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/component/test/jcr/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/component/test/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/component/web/api/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/component/web/controller/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/component/web/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/component/web/resources/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/component/web/security/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/component/web/server/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/jboss-epp/examples/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/jboss-epp/gatein-management/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/jboss-epp/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/jboss-epp/portletbridge/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/jboss-epp/serverAddon/gatein.ear/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/jboss-epp/serverAddon/integration.war/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/jboss-epp/serverAddon/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/exo-core/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/exo-doc/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/exo-jcr/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/exo-junit/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/exo-kernel/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/exo-parent/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/exo-ws/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-common/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-dep/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-examples/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-jon-plugin/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-management/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-mop/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-parent/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-pc/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-portal/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-shindig/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-simplecaptcha/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-sso/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-wci/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-wsrp/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/jboss-eppsp/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/jboss-picketlink-idm/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/jboss-portletbridge/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/mead.parent/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/distribution/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/examples/extension/config/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/examples/extension/ear/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/examples/extension/jar/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/examples/extension/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/examples/extension/war/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/examples/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/examples/portal/config/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/examples/portal/ear/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/examples/portal/jar/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/examples/portal/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/examples/portal/rest-war/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/examples/portal/war/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/examples/portlets/api/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/examples/portlets/jsfhellouser/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/examples/portlets/jsphellouser/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/examples/portlets/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/examples/portlets/simplesthelloworld/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/examples/portlets/struts-jpetstore/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/examples/skins/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/examples/skins/simpleskin/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/gadgets/core/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/gadgets/eXoGadgets/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/gadgets/gwtGadgets/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/gadgets/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/gadgets/server/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/portlet/dashboard/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/portlet/exoadmin/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/portlet/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/portlet/web/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/server/jboss/patch-ear/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/server/jboss/plugin/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/server/jboss/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/server/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/starter/ear/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/starter/jar/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/starter/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/starter/war/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/testsuite/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/testsuite/selenium-snifftests/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/testsuite/webuibasedsamples/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/web/eXoResources/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/web/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/web/portal/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/web/rest/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/webui/core/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/webui/dashboard/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/webui/eXo/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/webui/framework/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/webui/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/webui/portal/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/webui/portlet/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/wsrp-integration/extension-component/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/wsrp-integration/extension-config/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/wsrp-integration/extension-ear-as5/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/wsrp-integration/extension-ear/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/wsrp-integration/extension-war/pom.xml
epp/portal/tags/EPP_5_2_1_ER02/wsrp-integration/pom.xml
Log:
New release
Property changes on: epp/portal/tags/EPP_5_2_1_ER02
___________________________________________________________________
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,7409,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_ER02/component/application-registry/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/application-registry/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/component/application-registry/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/component/common/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/common/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/component/common/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.common</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/component/identity/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/identity/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/component/identity/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/component/initializer/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/initializer/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/component/initializer/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -3,7 +3,7 @@
<parent>
<artifactId>exo.portal.component</artifactId>
<groupId>org.exoplatform.portal</groupId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/component/management/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/management/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/component/management/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/component/pc/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/pc/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/component/pc/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/component/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/component/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>exo.portal.component</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/component/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/portal/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/component/portal/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/component/resources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/resources/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/component/resources/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/component/scripting/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/scripting/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/component/scripting/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/component/test/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/test/core/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/component/test/core/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/component/test/jcr/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/test/jcr/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/component/test/jcr/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/component/test/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/test/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/component/test/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/component/web/api/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/api/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/component/web/api/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/component/web/controller/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/controller/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/component/web/controller/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/component/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/component/web/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/component/web/resources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/resources/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/component/web/resources/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/component/web/security/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/security/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/component/web/security/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/component/web/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/server/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/component/web/server/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/jboss-epp/examples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/examples/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/jboss-epp/examples/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/jboss-epp/gatein-management/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/gatein-management/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/jboss-epp/gatein-management/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/jboss-epp/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/jboss-epp/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<groupId>org.jboss.portal</groupId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/jboss-epp/portletbridge/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/portletbridge/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/jboss-epp/portletbridge/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/jboss-epp/serverAddon/gatein.ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/gatein.ear/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/jboss-epp/serverAddon/gatein.ear/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>gatein</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/jboss-epp/serverAddon/integration.war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/integration.war/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/jboss-epp/serverAddon/integration.war/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>integration</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/jboss-epp/serverAddon/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/jboss-epp/serverAddon/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/exo-core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-core/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/exo-core/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/exo-doc/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-doc/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/exo-doc/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/exo-jcr/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-jcr/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/exo-jcr/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/exo-junit/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-junit/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/exo-junit/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/exo-kernel/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-kernel/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/exo-kernel/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/exo-parent/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-parent/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/exo-parent/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/exo-ws/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-ws/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/exo-ws/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-common/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-common/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-common/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-dep/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-dep/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-dep/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-examples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-examples/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-examples/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-jon-plugin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-jon-plugin/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-jon-plugin/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-management/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-management/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-management/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-mop/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-mop/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-mop/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-parent/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-parent/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-parent/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-pc/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-pc/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-pc/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-portal/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-portal/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-shindig/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-shindig/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-shindig/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-simplecaptcha/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-simplecaptcha/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-simplecaptcha/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-sso/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-sso/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-sso/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-wci/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wci/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-wci/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-wsrp/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wsrp/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/gatein-wsrp/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/jboss-eppsp/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-eppsp/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/jboss-eppsp/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/jboss-picketlink-idm/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-picketlink-idm/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/jboss-picketlink-idm/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/jboss-portletbridge/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-portletbridge/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/jboss-portletbridge/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/mead.parent/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/mead.parent/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/mead.parent/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<artifactId>mead-tools</artifactId>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/mead-tools/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<groupId>org.exoplatform.portal.mead</groupId>
@@ -55,8 +55,7 @@
</build>
<properties>
- <gatein.tag>EPP_5.2.1.ER02-SNAPSHOT</gatein.tag>
- <!--<gatein-portal.svnpath>epp/portal/tags/${gatein.tag}</gatein-portal.svnpath>-->
+ <gatein.tag>EPP_5_2_1_ER02</gatein.tag>
<!-- Ant properties -->
<ant.build.file>build.xml</ant.build.file>
@@ -90,38 +89,9 @@
<!-- GateIn -->
<svn.gatein.repo>gatein</svn.gatein.repo>
- <!--<gatein-portal.svnpath>${project.scm.url}</gatein-portal.svnpath>-->
- <!-- <gatein-portal.svnpath>epp/portal/branches/EPP_5_2_Branch</gatein-portal.svnpath> -->
- <!--<gatein-parent.svnpath>maven/parent/tags/${org.gatein.parent.version}</gatein-parent.svnpath>-->
- <!--<gatein-dep.svnpath>maven/dep/tags/${org.gatein.dep.version}</gatein-dep.svnpath>-->
-
- <!--<gatein-common.svnpath>components/common/tags/${org.gatein.common.version}</gatein-common.svnpath>-->
- <!--<gatein-wci.svnpath>components/wci/tags/${org.gatein.wci.version}</gatein-wci.svnpath>-->
- <!--<gatein-pc.svnpath>components/pc/tags/${org.gatein.pc.version}</gatein-pc.svnpath>-->
- <!--<gatein-wsrp.svnpath>components/wsrp/tags/${org.gatein.wsrp.version}</gatein-wsrp.svnpath>-->
- <!--<gatein-mop.svnpath>components/mop/tags/${org.gatein.mop.version}</gatein-mop.svnpath>-->
- <!--<gatein-sso.svnpath>components/sso/tags/${sso.version}</gatein-sso.svnpath>-->
- <!--<gatein-simplecaptcha.svnpath>components/simplecaptcha/tags/${nl.captcha.simplecaptcha.version}</gatein-simplecaptcha.svnpath>-->
- <!--<gatein-shindig.svnpath>components/shindig/tags/${org.shindig.version}</gatein-shindig.svnpath>-->
-
- <!-- # JBoss components -->
- <!--<svn.jboss-picketlink-idm.repo>picketlink</svn.jboss-picketlink-idm.repo>-->
- <!--<jboss-picketlink-idm.svnpath>idm/tags/${org.picketlink.idm}</jboss-picketlink-idm.svnpath>-->
-
- <!--<svn.jboss-portletbridge.repo>portletbridge</svn.jboss-portletbridge.repo>-->
- <!--<jboss-portletbridge.svnpath>tags/${portletbridge.version}</jboss-portletbridge.svnpath>-->
-
<!-- # eXo components -->
<svn.exo.repo>exo-jcr</svn.exo.repo>
- <!--<exo-parent.svnpath>parent/tags/${org.exoplatform.parent.version}</exo-parent.svnpath>-->
- <!--<exo-doc.svnpath>docs-style/tags/${org.exoplatform.doc-style.version}</exo-doc.svnpath>-->
- <!--<exo-junit.svnpath>junit.framework/tags/${org.exoplatform.kernel.junit.version}</exo-junit.svnpath>-->
- <!--<exo-kernel.svnpath>kernel/tags/${org.exoplatform.kernel.version}</exo-kernel.svnpath>-->
- <!--<exo-core.svnpath>core/tags/${org.exoplatform.core.version}</exo-core.svnpath>-->
- <!--<exo-ws.svnpath>ws/tags/${org.exoplatform.ws.version}</exo-ws.svnpath>-->
- <!--<exo-jcr.svnpath>jcr/tags/${org.exoplatform.jcr.version}</exo-jcr.svnpath>-->
-
</properties>
<profiles>
Modified: epp/portal/tags/EPP_5_2_1_ER02/distribution/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/distribution/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>distribution.parent</artifactId>
@@ -29,7 +29,7 @@
<sso.directory>gatein-sso</sso.directory>
<!-- EPP Documentation main directory -->
- <epp.doc.directory>jboss-epp-doc-5.1</epp.doc.directory>
+ <epp.doc.directory>jboss-epp-doc-5.2</epp.doc.directory>
</properties>
Modified: epp/portal/tags/EPP_5_2_1_ER02/examples/extension/config/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/config/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/examples/extension/config/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/examples/extension/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/ear/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/examples/extension/ear/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</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.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.jar</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.api</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</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.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<type>war</type>
</dependency>
<dependency>
Modified: epp/portal/tags/EPP_5_2_1_ER02/examples/extension/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/jar/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/examples/extension/jar/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/examples/extension/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/examples/extension/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/examples/extension/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/war/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/examples/extension/war/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/examples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/examples/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>exo.portal.sample</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/examples/portal/config/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/config/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/examples/portal/config/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/examples/portal/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/ear/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/examples/portal/ear/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</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.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.jar</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.api</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</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.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.rest-war</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<type>war</type>
</dependency>
<dependency>
Modified: epp/portal/tags/EPP_5_2_1_ER02/examples/portal/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/jar/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/examples/portal/jar/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/examples/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/examples/portal/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/examples/portal/rest-war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/rest-war/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/examples/portal/rest-war/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/examples/portal/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/war/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/examples/portal/war/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/examples/portlets/api/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/api/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/examples/portlets/api/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>gatein-api</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/examples/portlets/jsfhellouser/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/jsfhellouser/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/examples/portlets/jsfhellouser/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>gatein-jsf-hellouser</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/examples/portlets/jsphellouser/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/jsphellouser/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/examples/portlets/jsphellouser/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>gatein-jsp-hellouser</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/examples/portlets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/examples/portlets/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/examples/portlets/simplesthelloworld/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/simplesthelloworld/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/examples/portlets/simplesthelloworld/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>gatein-simplest-helloworld</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/examples/portlets/struts-jpetstore/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/struts-jpetstore/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/examples/portlets/struts-jpetstore/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>struts-jpetstore</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/examples/skins/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/skins/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/examples/skins/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/examples/skins/simpleskin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/skins/simpleskin/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/examples/skins/simpleskin/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.portal.examples.skins</groupId>
<artifactId>skins-parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>gatein-sample-skin</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/gadgets/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/core/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/gadgets/core/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -14,7 +14,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>exo.portal.gadgets-core</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/gadgets/eXoGadgets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/eXoGadgets/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/gadgets/eXoGadgets/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/gadgets/gwtGadgets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/gwtGadgets/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/gadgets/gwtGadgets/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>exo.portal.gwtGadgets</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/gadgets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/gadgets/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>exo.portal.gadgets</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/gadgets/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/server/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/gadgets/server/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>exo.portal.gadgets-server</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -31,7 +31,7 @@
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<packaging>pom</packaging>
<name>EPP GateIn - Portal - ${project.version}</name>
@@ -75,9 +75,9 @@
</properties>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/epp/portal/tags/EPP_5.2.1.DR01</connection>
- <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/epp/portal/tags/EPP_5.2.1.DR01</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/epp/portal/tags/EPP_5.2.1.DR01</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/epp/portal/tags/EPP_5.2.1.ER02</connection>
+ <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/epp/portal/tags/EPP_5.2.1.ER02</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/epp/portal/tags/EPP_5.2.1.ER02</url>
</scm>
<modules>
@@ -464,79 +464,79 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.controller</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.security</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.server</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.api</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.resources</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.pc</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.initializer</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.application-registry</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
@@ -546,68 +546,68 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.scripting</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.management</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.framework</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portlet</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.core</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.dashboard</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets-core</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<type>test-jar</type>
</dependency>
<dependency>
@@ -624,7 +624,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss.plugin</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
<!-- Chromattic -->
Modified: epp/portal/tags/EPP_5_2_1_ER02/portlet/dashboard/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/dashboard/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/portlet/dashboard/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/portlet/exoadmin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/portlet/exoadmin/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/portlet/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/portlet/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>exo.portal.portlet</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/portlet/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/web/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/portlet/web/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/server/jboss/patch-ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/server/jboss/patch-ear/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/server/jboss/patch-ear/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/server/jboss/plugin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/server/jboss/plugin/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/server/jboss/plugin/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/server/jboss/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/server/jboss/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/server/jboss/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>exo.portal.server.jboss</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/server/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/server/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>exo.portal.server</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/starter/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/starter/ear/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/starter/ear/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</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.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<type>war</type>
</dependency>
</dependencies>
Modified: epp/portal/tags/EPP_5_2_1_ER02/starter/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/starter/jar/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/starter/jar/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_1_ER02/starter/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/starter/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/starter/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>exo.portal.starter.root</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/starter/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/starter/war/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/starter/war/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</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.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</dependency>
</dependencies>
</project>
Modified: epp/portal/tags/EPP_5_2_1_ER02/testsuite/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/testsuite/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/testsuite/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>exo.portal.testsuite</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/testsuite/selenium-snifftests/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/testsuite/selenium-snifftests/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/testsuite/selenium-snifftests/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>exo.portal.selenium.snifftests</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/testsuite/webuibasedsamples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/testsuite/webuibasedsamples/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/testsuite/webuibasedsamples/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>exo.webui.based.samples</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/web/eXoResources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/eXoResources/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/web/eXoResources/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/web/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>exo.portal.web</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/web/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/portal/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/web/portal/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/web/rest/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/rest/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/web/rest/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/webui/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/core/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/webui/core/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/webui/dashboard/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/dashboard/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/webui/dashboard/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/webui/eXo/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/eXo/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/webui/eXo/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/webui/framework/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/framework/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/webui/framework/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/webui/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/webui/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>exo.portal.webui</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/webui/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/portal/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/webui/portal/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/webui/portlet/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/portlet/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/webui/portlet/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/wsrp-integration/extension-component/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-component/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/wsrp-integration/extension-component/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -26,7 +26,7 @@
<parent>
<artifactId>gatein-wsrp-integration-parent</artifactId>
<groupId>org.gatein.integration</groupId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_1_ER02/wsrp-integration/extension-config/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-config/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/wsrp-integration/extension-config/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -26,7 +26,7 @@
<parent>
<artifactId>gatein-wsrp-integration-parent</artifactId>
<groupId>org.gatein.integration</groupId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>extension-config</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/wsrp-integration/extension-ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-ear/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/wsrp-integration/extension-ear/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -28,7 +28,7 @@
<parent>
<artifactId>gatein-wsrp-integration-parent</artifactId>
<groupId>org.gatein.integration</groupId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>extension-ear</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/wsrp-integration/extension-ear-as5/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-ear-as5/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/wsrp-integration/extension-ear-as5/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.gatein.integration</groupId>
<artifactId>gatein-wsrp-integration-parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>extension-ear-as5</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/wsrp-integration/extension-war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-war/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/wsrp-integration/extension-war/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -27,7 +27,7 @@
<parent>
<artifactId>gatein-wsrp-integration-parent</artifactId>
<groupId>org.gatein.integration</groupId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<artifactId>extension-war</artifactId>
Modified: epp/portal/tags/EPP_5_2_1_ER02/wsrp-integration/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
+++ epp/portal/tags/EPP_5_2_1_ER02/wsrp-integration/pom.xml 2012-03-15 15:34:17 UTC (rev 8611)
@@ -34,7 +34,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.1.ER02-SNAPSHOT</version>
+ <version>5.2.1.ER02</version>
</parent>
<description>GateIn WSRP Integration extension parent</description>
12 years, 9 months
gatein SVN: r8610 - epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-jon-plugin.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2012-03-15 10:02:58 -0400 (Thu, 15 Mar 2012)
New Revision: 8610
Modified:
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-jon-plugin/pom.xml
Log:
JON build script update
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-jon-plugin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-jon-plugin/pom.xml 2012-03-15 14:00:03 UTC (rev 8609)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-jon-plugin/pom.xml 2012-03-15 14:02:58 UTC (rev 8610)
@@ -23,7 +23,7 @@
<scm.base>${git.base}</scm.base>
<scm.repo>${git.repo}</scm.repo>
<scm.path>gatein-jon-plugin.git</scm.path>
- <scm.version>1.0.1-GA</scm.version>
+ <scm.version>1.0.1</scm.version>
<mead.build.profiles></mead.build.profiles>
<mead.build.properties></mead.build.properties>
12 years, 9 months
gatein SVN: r8608 - in epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools: gatein-jon-plugin and 1 other directory.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2012-03-15 09:17:14 -0400 (Thu, 15 Mar 2012)
New Revision: 8608
Added:
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-jon-plugin/
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-jon-plugin/pom.xml
Log:
JON plugin build script
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-jon-plugin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-jon-plugin/pom.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-jon-plugin/pom.xml 2012-03-15 13:17:14 UTC (rev 8608)
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.exoplatform.portal.mead</groupId>
+ <artifactId>mead.parent</artifactId>
+ <version>5.2.1.ER02-SNAPSHOT</version>
+ <relativePath>../mead.parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>mead-gatein-jon-plugin</artifactId>
+ <packaging>pom</packaging>
+ <name>jon-plugin</name>
+
+ <properties>
+ <doc.path>${project.name}-apidoc</doc.path>
+ <source.path>${project.name}</source.path>
+
+ <scm.type>git</scm.type>
+ <scm.base>${git.base}</scm.base>
+ <scm.repo>${git.repo}</scm.repo>
+ <scm.path>gatein-jon-plugin.git</scm.path>
+ <scm.version>1.0.1-GA</scm.version>
+
+ <mead.build.profiles></mead.build.profiles>
+ <mead.build.properties></mead.build.properties>
+ <mead.patch.path></mead.patch.path>
+
+ </properties>
+</project>
12 years, 9 months
gatein SVN: r8607 - in portal/trunk: webui/framework/src/main/java/org/exoplatform/webui/core and 1 other directories.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2012-03-15 09:12:34 -0400 (Thu, 15 Mar 2012)
New Revision: 8607
Modified:
portal/trunk/component/web/controller/src/main/java/org/exoplatform/web/application/AbstractApplicationMessage.java
portal/trunk/webui/framework/src/main/java/org/exoplatform/webui/core/UIApplication.java
portal/trunk/webui/framework/src/main/java/org/exoplatform/webui/core/UIPopupMessages.java
portal/trunk/webui/framework/src/main/java/org/exoplatform/webui/exception/MessageException.java
Log:
- Added methods for backward compatibility.
Modified: portal/trunk/component/web/controller/src/main/java/org/exoplatform/web/application/AbstractApplicationMessage.java
===================================================================
--- portal/trunk/component/web/controller/src/main/java/org/exoplatform/web/application/AbstractApplicationMessage.java 2012-03-15 12:55:09 UTC (rev 8606)
+++ portal/trunk/component/web/controller/src/main/java/org/exoplatform/web/application/AbstractApplicationMessage.java 2012-03-15 13:12:34 UTC (rev 8607)
@@ -99,4 +99,9 @@
}
return value;
}
+
+ public String getMessageKey()
+ {
+ throw new UnsupportedOperationException("Only non-compound ApplicationMessages have a message key.");
+ }
}
Modified: portal/trunk/webui/framework/src/main/java/org/exoplatform/webui/core/UIApplication.java
===================================================================
--- portal/trunk/webui/framework/src/main/java/org/exoplatform/webui/core/UIApplication.java 2012-03-15 12:55:09 UTC (rev 8606)
+++ portal/trunk/webui/framework/src/main/java/org/exoplatform/webui/core/UIApplication.java 2012-03-15 13:12:34 UTC (rev 8607)
@@ -19,12 +19,12 @@
package org.exoplatform.webui.core;
+import org.exoplatform.commons.serialization.api.annotations.Serialized;
import org.exoplatform.services.log.ExoLogger;
import org.exoplatform.services.log.Log;
import org.exoplatform.web.application.AbstractApplicationMessage;
import org.exoplatform.web.application.ApplicationMessage;
import org.exoplatform.webui.application.WebuiRequestContext;
-import org.exoplatform.commons.serialization.api.annotations.Serialized;
import org.exoplatform.webui.exception.MessageException;
import java.io.Writer;
@@ -88,6 +88,11 @@
getUIPopupMessages().addMessage(message);
}
+ public void addMessage(ApplicationMessage message)
+ {
+ addMessage((AbstractApplicationMessage)message);
+ }
+
public void clearMessages()
{
getUIPopupMessages().clearMessages();
Modified: portal/trunk/webui/framework/src/main/java/org/exoplatform/webui/core/UIPopupMessages.java
===================================================================
--- portal/trunk/webui/framework/src/main/java/org/exoplatform/webui/core/UIPopupMessages.java 2012-03-15 12:55:09 UTC (rev 8606)
+++ portal/trunk/webui/framework/src/main/java/org/exoplatform/webui/core/UIPopupMessages.java 2012-03-15 13:12:34 UTC (rev 8607)
@@ -19,11 +19,11 @@
package org.exoplatform.webui.core;
+import org.exoplatform.commons.serialization.api.annotations.Serialized;
import org.exoplatform.web.application.AbstractApplicationMessage;
import org.exoplatform.web.application.ApplicationMessage;
import org.exoplatform.web.application.RequestContext;
import org.exoplatform.webui.application.WebuiRequestContext;
-import org.exoplatform.commons.serialization.api.annotations.Serialized;
import org.exoplatform.webui.config.annotation.ComponentConfig;
import org.exoplatform.webui.config.annotation.EventConfig;
import org.exoplatform.webui.event.Event;
@@ -120,6 +120,11 @@
infos_.add(msg);
}
}
+
+ public void addMessage(ApplicationMessage msg)
+ {
+ addMessage((AbstractApplicationMessage)msg);
+ }
private ResourceBundle getResourceBundle()
{
Modified: portal/trunk/webui/framework/src/main/java/org/exoplatform/webui/exception/MessageException.java
===================================================================
--- portal/trunk/webui/framework/src/main/java/org/exoplatform/webui/exception/MessageException.java 2012-03-15 12:55:09 UTC (rev 8606)
+++ portal/trunk/webui/framework/src/main/java/org/exoplatform/webui/exception/MessageException.java 2012-03-15 13:12:34 UTC (rev 8607)
@@ -40,6 +40,11 @@
this.message = message;
}
+ public MessageException(ApplicationMessage message)
+ {
+ this((AbstractApplicationMessage)message);
+ }
+
public AbstractApplicationMessage getDetailMessage()
{
return message;
12 years, 9 months
gatein SVN: r8606 - epp/portal/branches/EPP_5_2_Branch/component/web/controller/src/main/java/org/exoplatform/web/application.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2012-03-15 08:55:09 -0400 (Thu, 15 Mar 2012)
New Revision: 8606
Modified:
epp/portal/branches/EPP_5_2_Branch/component/web/controller/src/main/java/org/exoplatform/web/application/AbstractApplicationMessage.java
Log:
- More backward compatibility.
Modified: epp/portal/branches/EPP_5_2_Branch/component/web/controller/src/main/java/org/exoplatform/web/application/AbstractApplicationMessage.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/controller/src/main/java/org/exoplatform/web/application/AbstractApplicationMessage.java 2012-03-15 12:52:23 UTC (rev 8605)
+++ epp/portal/branches/EPP_5_2_Branch/component/web/controller/src/main/java/org/exoplatform/web/application/AbstractApplicationMessage.java 2012-03-15 12:55:09 UTC (rev 8606)
@@ -99,4 +99,9 @@
}
return value;
}
+
+ public String getMessageKey()
+ {
+ throw new UnsupportedOperationException("Only non-compound ApplicationMessages have a message key.");
+ }
}
12 years, 9 months
gatein SVN: r8605 - in epp/portal/branches/EPP_5_2_Branch/webui/framework/src/main/java/org/exoplatform/webui: exception and 1 other directory.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2012-03-15 08:52:23 -0400 (Thu, 15 Mar 2012)
New Revision: 8605
Modified:
epp/portal/branches/EPP_5_2_Branch/webui/framework/src/main/java/org/exoplatform/webui/core/UIApplication.java
epp/portal/branches/EPP_5_2_Branch/webui/framework/src/main/java/org/exoplatform/webui/core/UIPopupMessages.java
epp/portal/branches/EPP_5_2_Branch/webui/framework/src/main/java/org/exoplatform/webui/exception/MessageException.java
Log:
- Adding methods to help backward compatibility.
Modified: epp/portal/branches/EPP_5_2_Branch/webui/framework/src/main/java/org/exoplatform/webui/core/UIApplication.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/framework/src/main/java/org/exoplatform/webui/core/UIApplication.java 2012-03-15 06:53:24 UTC (rev 8604)
+++ epp/portal/branches/EPP_5_2_Branch/webui/framework/src/main/java/org/exoplatform/webui/core/UIApplication.java 2012-03-15 12:52:23 UTC (rev 8605)
@@ -88,6 +88,11 @@
getUIPopupMessages().addMessage(message);
}
+ public void addMessage(ApplicationMessage message)
+ {
+ addMessage((AbstractApplicationMessage)message);
+ }
+
public void clearMessages()
{
getUIPopupMessages().clearMessages();
Modified: epp/portal/branches/EPP_5_2_Branch/webui/framework/src/main/java/org/exoplatform/webui/core/UIPopupMessages.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/framework/src/main/java/org/exoplatform/webui/core/UIPopupMessages.java 2012-03-15 06:53:24 UTC (rev 8604)
+++ epp/portal/branches/EPP_5_2_Branch/webui/framework/src/main/java/org/exoplatform/webui/core/UIPopupMessages.java 2012-03-15 12:52:23 UTC (rev 8605)
@@ -120,6 +120,11 @@
infos_.add(msg);
}
}
+
+ public void addMessage(ApplicationMessage msg)
+ {
+ addMessage((AbstractApplicationMessage)msg);
+ }
private ResourceBundle getResourceBundle()
{
Modified: epp/portal/branches/EPP_5_2_Branch/webui/framework/src/main/java/org/exoplatform/webui/exception/MessageException.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/framework/src/main/java/org/exoplatform/webui/exception/MessageException.java 2012-03-15 06:53:24 UTC (rev 8604)
+++ epp/portal/branches/EPP_5_2_Branch/webui/framework/src/main/java/org/exoplatform/webui/exception/MessageException.java 2012-03-15 12:52:23 UTC (rev 8605)
@@ -20,6 +20,7 @@
package org.exoplatform.webui.exception;
import org.exoplatform.web.application.AbstractApplicationMessage;
+import org.exoplatform.web.application.ApplicationMessage;
/**
* Created by The eXo Platform SARL
@@ -39,6 +40,11 @@
this.message = message;
}
+ public MessageException(ApplicationMessage message)
+ {
+ this((AbstractApplicationMessage)message);
+ }
+
public AbstractApplicationMessage getDetailMessage()
{
return message;
12 years, 9 months
gatein SVN: r8604 - epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-eppsp.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2012-03-15 02:53:24 -0400 (Thu, 15 Mar 2012)
New Revision: 8604
Modified:
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-eppsp/pom.xml
Log:
Bug 794453 - (JBEPP-1493) gatein-wcm-extension-5.2.0-exo-2.3.3-CP01.ear should not be signed.
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-eppsp/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-eppsp/pom.xml 2012-03-15 00:19:43 UTC (rev 8603)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-eppsp/pom.xml 2012-03-15 06:53:24 UTC (rev 8604)
@@ -32,7 +32,7 @@
<mead.build.profiles></mead.build.profiles>
<mead.build.properties></mead.build.properties>
<mead.patch.path></mead.patch.path>
- <mead.parameters>-p patch</mead.parameters>
+ <mead.parameters>-p patch -Dmavensign.sign.skip=*.war,*.ear</mead.parameters>
</properties>
</project>
12 years, 9 months