gatein SVN: r8828 - epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/src.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2012-08-30 04:05:39 -0400 (Thu, 30 Aug 2012)
New Revision: 8828
Modified:
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/src/build.xml
Log:
Bug 847030 - CVE-2011-2908 patch
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/src/build.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/src/build.xml 2012-08-30 08:03:57 UTC (rev 8827)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/src/build.xml 2012-08-30 08:05:39 UTC (rev 8828)
@@ -211,6 +211,12 @@
<copy overwrite="true" todir="${epp.path}/jboss-as/server/default/deploy/jmx-console.war">
<fileset dir="${basedir}/src/main/resources/eap/CVE-2011-2908/jmx-console.war"/>
</copy>
+ <copy overwrite="true" todir="${epp.path}/jboss-as/server/all/deploy/jmx-console.war">
+ <fileset dir="${basedir}/src/main/resources/eap/CVE-2011-2908/jmx-console.war"/>
+ </copy>
+ <copy overwrite="true" todir="${epp.path}/jboss-as/server/producton/deploy/jmx-console.war">
+ <fileset dir="${basedir}/src/main/resources/eap/CVE-2011-2908/jmx-console.war"/>
+ </copy>
</target>
</project>
\ No newline at end of file
12 years, 3 months
gatein SVN: r8827 - epp/portal/tags.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2012-08-30 04:03:57 -0400 (Thu, 30 Aug 2012)
New Revision: 8827
Removed:
epp/portal/tags/EPP_5_2_2_GA/
Log:
Removing release, adding security fix
12 years, 3 months
gatein SVN: r8826 - in epp/portal/branches/EPP_5_2_1_GA_BZ852550: portlet/exoadmin/src/main/java/org/exoplatform/account/webui/component and 4 other directories.
by do-not-reply@jboss.org
Author: ghjboss
Date: 2012-08-29 15:30:28 -0400 (Wed, 29 Aug 2012)
New Revision: 8826
Modified:
epp/portal/branches/EPP_5_2_1_GA_BZ852550/component/web/controller/src/main/java/org/exoplatform/web/application/ApplicationMessage.java
epp/portal/branches/EPP_5_2_1_GA_BZ852550/portlet/exoadmin/src/main/java/org/exoplatform/account/webui/component/UIRegisterForm.java
epp/portal/branches/EPP_5_2_1_GA_BZ852550/portlet/exoadmin/src/main/java/org/exoplatform/navigation/webui/component/UIPageNodeForm.java
epp/portal/branches/EPP_5_2_1_GA_BZ852550/webui/core/src/main/java/org/exoplatform/webui/core/lifecycle/UIFormLifecycle.java
epp/portal/branches/EPP_5_2_1_GA_BZ852550/webui/framework/src/main/java/org/exoplatform/webui/core/UIApplication.java
epp/portal/branches/EPP_5_2_1_GA_BZ852550/webui/framework/src/main/java/org/exoplatform/webui/exception/MessageException.java
Log:
commit the fix for BZ852550
Modified: epp/portal/branches/EPP_5_2_1_GA_BZ852550/component/web/controller/src/main/java/org/exoplatform/web/application/ApplicationMessage.java
===================================================================
--- epp/portal/branches/EPP_5_2_1_GA_BZ852550/component/web/controller/src/main/java/org/exoplatform/web/application/ApplicationMessage.java 2012-08-29 15:06:22 UTC (rev 8825)
+++ epp/portal/branches/EPP_5_2_1_GA_BZ852550/component/web/controller/src/main/java/org/exoplatform/web/application/ApplicationMessage.java 2012-08-29 19:30:28 UTC (rev 8826)
@@ -30,13 +30,22 @@
{
private final String messageKey_;
private final Object[] messageArgs_;
+ private String message;
public ApplicationMessage(String key, Object[] args)
{
this.messageKey_ = key;
this.messageArgs_ = args;
+ message = null;
}
+ public ApplicationMessage(String message)
+ {
+ messageKey_ = null;
+ messageArgs_ = null;
+ this.message = message;
+ }
+
@Override
public boolean equals(Object o)
{
@@ -85,24 +94,32 @@
public String getMessage()
{
- String msg = resolveMessage(messageKey_);
- if (msg != null && messageArgs_ != null)
+ if (message == null)
{
- for (int i = 0; i < messageArgs_.length; i++)
+ String msg = resolveMessage(messageKey_);
+ if (msg != null && messageArgs_ != null)
{
- final Object messageArg = messageArgs_[i];
- if (messageArg != null)
+ for (int i = 0; i < messageArgs_.length; i++)
{
- String arg = messageArg.toString();
- if (isArgsLocalized())
+ final Object messageArg = messageArgs_[i];
+ if (messageArg != null)
{
- arg = resolveMessage(arg);
+ String arg = messageArg.toString();
+ if (isArgsLocalized())
+ {
+ arg = resolveMessage(arg);
+ }
+ msg = msg.replace("{" + i + "}", arg);
}
- msg = msg.replace("{" + i + "}", arg);
}
}
+
+ message = msg;
+ return msg;
}
-
- return msg;
+ else
+ {
+ return message;
+ }
}
}
Modified: epp/portal/branches/EPP_5_2_1_GA_BZ852550/portlet/exoadmin/src/main/java/org/exoplatform/account/webui/component/UIRegisterForm.java
===================================================================
--- epp/portal/branches/EPP_5_2_1_GA_BZ852550/portlet/exoadmin/src/main/java/org/exoplatform/account/webui/component/UIRegisterForm.java 2012-08-29 15:06:22 UTC (rev 8825)
+++ epp/portal/branches/EPP_5_2_1_GA_BZ852550/portlet/exoadmin/src/main/java/org/exoplatform/account/webui/component/UIRegisterForm.java 2012-08-29 19:30:28 UTC (rev 8826)
@@ -154,7 +154,7 @@
}
catch (MessageException e)
{
- event.getRequestContext().getUIApplication().addMessage(e.getDetailMessage());
+ event.getRequestContext().getUIApplication().addMessage(e.getDetailedMessage());
return;
}
Modified: epp/portal/branches/EPP_5_2_1_GA_BZ852550/portlet/exoadmin/src/main/java/org/exoplatform/navigation/webui/component/UIPageNodeForm.java
===================================================================
--- epp/portal/branches/EPP_5_2_1_GA_BZ852550/portlet/exoadmin/src/main/java/org/exoplatform/navigation/webui/component/UIPageNodeForm.java 2012-08-29 15:06:22 UTC (rev 8825)
+++ epp/portal/branches/EPP_5_2_1_GA_BZ852550/portlet/exoadmin/src/main/java/org/exoplatform/navigation/webui/component/UIPageNodeForm.java 2012-08-29 19:30:28 UTC (rev 8826)
@@ -677,7 +677,7 @@
}
catch (MessageException ex)
{
- uiPortalApp.addMessage(ex.getDetailMessage());
+ uiPortalApp.addMessage(ex.getDetailedMessage());
return;
}
catch (Exception ex)
Modified: epp/portal/branches/EPP_5_2_1_GA_BZ852550/webui/core/src/main/java/org/exoplatform/webui/core/lifecycle/UIFormLifecycle.java
===================================================================
--- epp/portal/branches/EPP_5_2_1_GA_BZ852550/webui/core/src/main/java/org/exoplatform/webui/core/lifecycle/UIFormLifecycle.java 2012-08-29 15:06:22 UTC (rev 8825)
+++ epp/portal/branches/EPP_5_2_1_GA_BZ852550/webui/core/src/main/java/org/exoplatform/webui/core/lifecycle/UIFormLifecycle.java 2012-08-29 19:30:28 UTC (rev 8826)
@@ -195,7 +195,7 @@
}
catch (MessageException ex)
{
- uiApp.addMessage(ex.getDetailMessage());
+ uiApp.addMessage(ex.getDetailedMessage());
context.setProcessRender(true);
}
catch (Exception ex)
@@ -231,7 +231,7 @@
}
catch (MessageException ex)
{
- uiApp.addMessage(ex.getDetailMessage());
+ uiApp.addMessage(ex.getDetailedMessage());
context.setProcessRender(true);
}
}
@@ -261,7 +261,7 @@
}
catch (MessageException ex)
{
- uiApp.addMessage(ex.getDetailMessage());
+ uiApp.addMessage(ex.getDetailedMessage());
context.setProcessRender(true);
}
catch (Exception ex)
Modified: epp/portal/branches/EPP_5_2_1_GA_BZ852550/webui/framework/src/main/java/org/exoplatform/webui/core/UIApplication.java
===================================================================
--- epp/portal/branches/EPP_5_2_1_GA_BZ852550/webui/framework/src/main/java/org/exoplatform/webui/core/UIApplication.java 2012-08-29 15:06:22 UTC (rev 8825)
+++ epp/portal/branches/EPP_5_2_1_GA_BZ852550/webui/framework/src/main/java/org/exoplatform/webui/core/UIApplication.java 2012-08-29 19:30:28 UTC (rev 8826)
@@ -138,7 +138,7 @@
}
catch (MessageException ex)
{
- addMessage(ex.getDetailMessage());
+ addMessage(ex.getDetailedMessage());
}
catch (Throwable t)
{
Modified: epp/portal/branches/EPP_5_2_1_GA_BZ852550/webui/framework/src/main/java/org/exoplatform/webui/exception/MessageException.java
===================================================================
--- epp/portal/branches/EPP_5_2_1_GA_BZ852550/webui/framework/src/main/java/org/exoplatform/webui/exception/MessageException.java 2012-08-29 15:06:22 UTC (rev 8825)
+++ epp/portal/branches/EPP_5_2_1_GA_BZ852550/webui/framework/src/main/java/org/exoplatform/webui/exception/MessageException.java 2012-08-29 19:30:28 UTC (rev 8826)
@@ -45,9 +45,13 @@
this((AbstractApplicationMessage)message);
}
- public AbstractApplicationMessage getDetailMessage()
+ public AbstractApplicationMessage getDetailedMessage()
{
return message;
}
+ public ApplicationMessage getDetailMessage()
+ {
+ return new ApplicationMessage(message.getMessage());
+ }
}
12 years, 3 months
gatein SVN: r8825 - epp/portal/branches.
by do-not-reply@jboss.org
Author: mputz
Date: 2012-08-29 11:06:22 -0400 (Wed, 29 Aug 2012)
New Revision: 8825
Added:
epp/portal/branches/EPP_5_2_2_GA_BZ851985/
Log:
Create one-off patch branch for BZ 851985
12 years, 4 months
gatein SVN: r8824 - epp/portal/branches.
by do-not-reply@jboss.org
Author: ghjboss
Date: 2012-08-28 18:17:41 -0400 (Tue, 28 Aug 2012)
New Revision: 8824
Added:
epp/portal/branches/EPP_5_2_1_GA_BZ852550/
Log:
create branch for support patch BZ852550
12 years, 4 months
gatein SVN: r8823 - in epp/portal/tags: EPP_5_2_2_GA and 110 other directories.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2012-08-28 10:45:03 -0400 (Tue, 28 Aug 2012)
New Revision: 8823
Added:
epp/portal/tags/EPP_5_2_2_GA/
Modified:
epp/portal/tags/EPP_5_2_2_GA/component/application-registry/pom.xml
epp/portal/tags/EPP_5_2_2_GA/component/common/pom.xml
epp/portal/tags/EPP_5_2_2_GA/component/identity/pom.xml
epp/portal/tags/EPP_5_2_2_GA/component/initializer/pom.xml
epp/portal/tags/EPP_5_2_2_GA/component/management/pom.xml
epp/portal/tags/EPP_5_2_2_GA/component/pc/pom.xml
epp/portal/tags/EPP_5_2_2_GA/component/pom.xml
epp/portal/tags/EPP_5_2_2_GA/component/portal/pom.xml
epp/portal/tags/EPP_5_2_2_GA/component/resources/pom.xml
epp/portal/tags/EPP_5_2_2_GA/component/scripting/pom.xml
epp/portal/tags/EPP_5_2_2_GA/component/test/core/pom.xml
epp/portal/tags/EPP_5_2_2_GA/component/test/jcr/pom.xml
epp/portal/tags/EPP_5_2_2_GA/component/test/pom.xml
epp/portal/tags/EPP_5_2_2_GA/component/web/api/pom.xml
epp/portal/tags/EPP_5_2_2_GA/component/web/controller/pom.xml
epp/portal/tags/EPP_5_2_2_GA/component/web/pom.xml
epp/portal/tags/EPP_5_2_2_GA/component/web/resources/pom.xml
epp/portal/tags/EPP_5_2_2_GA/component/web/security/pom.xml
epp/portal/tags/EPP_5_2_2_GA/component/web/server/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/jboss-epp/examples/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/jboss-epp/gatein-management/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/jboss-epp/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/jboss-epp/portletbridge/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/jboss-epp/serverAddon/gatein.ear/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/jboss-epp/serverAddon/integration.war/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/jboss-epp/serverAddon/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/exo-core/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/exo-doc/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/exo-jcr/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/exo-junit/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/exo-kernel/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/exo-parent/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/exo-ws/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-common/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-dep/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-examples/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-jon-plugin/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-management/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-mop/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-parent/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-pc/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-portal/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-shindig/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-simplecaptcha/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-sso/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-wci/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-wsrp/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/jboss-eppsp/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/jboss-picketlink-idm/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/jboss-portletbridge/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/mead.parent/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/pom.xml
epp/portal/tags/EPP_5_2_2_GA/distribution/pom.xml
epp/portal/tags/EPP_5_2_2_GA/examples/extension/config/pom.xml
epp/portal/tags/EPP_5_2_2_GA/examples/extension/ear/pom.xml
epp/portal/tags/EPP_5_2_2_GA/examples/extension/jar/pom.xml
epp/portal/tags/EPP_5_2_2_GA/examples/extension/pom.xml
epp/portal/tags/EPP_5_2_2_GA/examples/extension/war/pom.xml
epp/portal/tags/EPP_5_2_2_GA/examples/pom.xml
epp/portal/tags/EPP_5_2_2_GA/examples/portal/config/pom.xml
epp/portal/tags/EPP_5_2_2_GA/examples/portal/ear/pom.xml
epp/portal/tags/EPP_5_2_2_GA/examples/portal/jar/pom.xml
epp/portal/tags/EPP_5_2_2_GA/examples/portal/pom.xml
epp/portal/tags/EPP_5_2_2_GA/examples/portal/rest-war/pom.xml
epp/portal/tags/EPP_5_2_2_GA/examples/portal/war/pom.xml
epp/portal/tags/EPP_5_2_2_GA/examples/portlets/api/pom.xml
epp/portal/tags/EPP_5_2_2_GA/examples/portlets/jsfhellouser/pom.xml
epp/portal/tags/EPP_5_2_2_GA/examples/portlets/jsphellouser/pom.xml
epp/portal/tags/EPP_5_2_2_GA/examples/portlets/pom.xml
epp/portal/tags/EPP_5_2_2_GA/examples/portlets/simplesthelloworld/pom.xml
epp/portal/tags/EPP_5_2_2_GA/examples/portlets/struts-jpetstore/pom.xml
epp/portal/tags/EPP_5_2_2_GA/examples/skins/pom.xml
epp/portal/tags/EPP_5_2_2_GA/examples/skins/simpleskin/pom.xml
epp/portal/tags/EPP_5_2_2_GA/gadgets/core/pom.xml
epp/portal/tags/EPP_5_2_2_GA/gadgets/eXoGadgets/pom.xml
epp/portal/tags/EPP_5_2_2_GA/gadgets/gwtGadgets/pom.xml
epp/portal/tags/EPP_5_2_2_GA/gadgets/pom.xml
epp/portal/tags/EPP_5_2_2_GA/gadgets/server/pom.xml
epp/portal/tags/EPP_5_2_2_GA/pom.xml
epp/portal/tags/EPP_5_2_2_GA/portlet/dashboard/pom.xml
epp/portal/tags/EPP_5_2_2_GA/portlet/exoadmin/pom.xml
epp/portal/tags/EPP_5_2_2_GA/portlet/pom.xml
epp/portal/tags/EPP_5_2_2_GA/portlet/web/pom.xml
epp/portal/tags/EPP_5_2_2_GA/server/jboss/patch-ear/pom.xml
epp/portal/tags/EPP_5_2_2_GA/server/jboss/plugin/pom.xml
epp/portal/tags/EPP_5_2_2_GA/server/jboss/pom.xml
epp/portal/tags/EPP_5_2_2_GA/server/pom.xml
epp/portal/tags/EPP_5_2_2_GA/starter/ear/pom.xml
epp/portal/tags/EPP_5_2_2_GA/starter/jar/pom.xml
epp/portal/tags/EPP_5_2_2_GA/starter/pom.xml
epp/portal/tags/EPP_5_2_2_GA/starter/war/pom.xml
epp/portal/tags/EPP_5_2_2_GA/testsuite/pom.xml
epp/portal/tags/EPP_5_2_2_GA/testsuite/selenium-snifftests/pom.xml
epp/portal/tags/EPP_5_2_2_GA/testsuite/webuibasedsamples/pom.xml
epp/portal/tags/EPP_5_2_2_GA/web/eXoResources/pom.xml
epp/portal/tags/EPP_5_2_2_GA/web/pom.xml
epp/portal/tags/EPP_5_2_2_GA/web/portal/pom.xml
epp/portal/tags/EPP_5_2_2_GA/web/rest/pom.xml
epp/portal/tags/EPP_5_2_2_GA/webui/core/pom.xml
epp/portal/tags/EPP_5_2_2_GA/webui/dashboard/pom.xml
epp/portal/tags/EPP_5_2_2_GA/webui/eXo/pom.xml
epp/portal/tags/EPP_5_2_2_GA/webui/framework/pom.xml
epp/portal/tags/EPP_5_2_2_GA/webui/pom.xml
epp/portal/tags/EPP_5_2_2_GA/webui/portal/pom.xml
epp/portal/tags/EPP_5_2_2_GA/webui/portlet/pom.xml
epp/portal/tags/EPP_5_2_2_GA/wsrp-integration/extension-component/pom.xml
epp/portal/tags/EPP_5_2_2_GA/wsrp-integration/extension-config/pom.xml
epp/portal/tags/EPP_5_2_2_GA/wsrp-integration/extension-ear-as5/pom.xml
epp/portal/tags/EPP_5_2_2_GA/wsrp-integration/extension-ear/pom.xml
epp/portal/tags/EPP_5_2_2_GA/wsrp-integration/extension-war/pom.xml
epp/portal/tags/EPP_5_2_2_GA/wsrp-integration/pom.xml
Log:
New release
Property changes on: epp/portal/tags/EPP_5_2_2_GA
___________________________________________________________________
Added: svn:ignore
+ *.iml
.idea
.settings
.classpath
.project
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_2_GA/component/application-registry/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/application-registry/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/component/application-registry/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/component/common/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/common/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/component/common/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.common</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/component/identity/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/identity/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/component/identity/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/component/initializer/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/initializer/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/component/initializer/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -3,7 +3,7 @@
<parent>
<artifactId>exo.portal.component</artifactId>
<groupId>org.exoplatform.portal</groupId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/component/management/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/management/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/component/management/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/component/pc/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/pc/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/component/pc/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/component/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/component/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>exo.portal.component</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/component/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/portal/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/component/portal/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/component/resources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/resources/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/component/resources/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/component/scripting/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/scripting/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/component/scripting/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/component/test/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/test/core/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/component/test/core/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/component/test/jcr/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/test/jcr/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/component/test/jcr/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/component/test/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/test/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/component/test/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/component/web/api/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/api/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/component/web/api/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/component/web/controller/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/controller/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/component/web/controller/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/component/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/component/web/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/component/web/resources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/resources/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/component/web/resources/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/component/web/security/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/security/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/component/web/security/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/component/web/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/server/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/component/web/server/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/jboss-epp/examples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/examples/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/jboss-epp/examples/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/jboss-epp/gatein-management/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/gatein-management/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/jboss-epp/gatein-management/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/jboss-epp/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/jboss-epp/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<groupId>org.jboss.portal</groupId>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/jboss-epp/portletbridge/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/portletbridge/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/jboss-epp/portletbridge/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/jboss-epp/serverAddon/gatein.ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/gatein.ear/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/jboss-epp/serverAddon/gatein.ear/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>gatein</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/jboss-epp/serverAddon/integration.war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/integration.war/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/jboss-epp/serverAddon/integration.war/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>integration</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/jboss-epp/serverAddon/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/jboss-epp/serverAddon/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/exo-core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-core/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/exo-core/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/exo-doc/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-doc/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/exo-doc/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/exo-jcr/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-jcr/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/exo-jcr/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/exo-junit/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-junit/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/exo-junit/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/exo-kernel/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-kernel/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/exo-kernel/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/exo-parent/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-parent/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/exo-parent/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/exo-ws/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-ws/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/exo-ws/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-common/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-common/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-common/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-dep/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-dep/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-dep/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-examples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-examples/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-examples/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-jon-plugin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-jon-plugin/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-jon-plugin/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-management/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-management/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-management/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-mop/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-mop/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-mop/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-parent/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-parent/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-parent/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-pc/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-pc/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-pc/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-portal/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-portal/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-shindig/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-shindig/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-shindig/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-simplecaptcha/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-simplecaptcha/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-simplecaptcha/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-sso/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-sso/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-sso/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-wci/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wci/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-wci/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-wsrp/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wsrp/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/gatein-wsrp/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/jboss-eppsp/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-eppsp/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/jboss-eppsp/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
@@ -26,7 +26,7 @@
<scm.base>${git.base}</scm.base>
<scm.repo>${git.repo}</scm.repo>
<scm.path>epp/jboss-eppsp.git</scm.path>
- <scm.version>5.2.2.CR01-SNAPSHOT-exo-2.3.8-CR01</scm.version>
+ <scm.version>5.2.2.GA-exo-2.3.8-CP01</scm.version>
<!--<scm.version>${org.jboss.eppsp.version}</scm.version>-->
<mead.build.profiles></mead.build.profiles>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/jboss-picketlink-idm/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-picketlink-idm/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/jboss-picketlink-idm/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/jboss-portletbridge/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-portletbridge/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/jboss-portletbridge/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
<artifactId>mead.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../mead.parent/pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/mead.parent/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/mead.parent/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/mead.parent/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.exoplatform.portal.mead</groupId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<artifactId>mead-tools</artifactId>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/mead-tools/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<groupId>org.exoplatform.portal.mead</groupId>
@@ -55,7 +55,7 @@
</build>
<properties>
- <gatein.tag>EPP_5_2_2_ER02</gatein.tag>
+ <gatein.tag>EPP_5_2_2_GA</gatein.tag>
<!-- Ant properties -->
<ant.build.file>build.xml</ant.build.file>
Modified: epp/portal/tags/EPP_5_2_2_GA/distribution/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/distribution/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>distribution.parent</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/examples/extension/config/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/config/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/examples/extension/config/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/examples/extension/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/ear/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/examples/extension/ear/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</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.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.jar</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.api</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</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.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<type>war</type>
</dependency>
<dependency>
Modified: epp/portal/tags/EPP_5_2_2_GA/examples/extension/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/jar/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/examples/extension/jar/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/examples/extension/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/examples/extension/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/examples/extension/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/war/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/examples/extension/war/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/examples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/examples/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>exo.portal.sample</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/examples/portal/config/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/config/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/examples/portal/config/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/examples/portal/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/ear/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/examples/portal/ear/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</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.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.jar</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.api</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</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.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.rest-war</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<type>war</type>
</dependency>
<dependency>
Modified: epp/portal/tags/EPP_5_2_2_GA/examples/portal/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/jar/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/examples/portal/jar/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/examples/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/examples/portal/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/examples/portal/rest-war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/rest-war/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/examples/portal/rest-war/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/examples/portal/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/war/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/examples/portal/war/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/examples/portlets/api/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/api/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/examples/portlets/api/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>gatein-api</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/examples/portlets/jsfhellouser/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/jsfhellouser/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/examples/portlets/jsfhellouser/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>gatein-jsf-hellouser</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/examples/portlets/jsphellouser/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/jsphellouser/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/examples/portlets/jsphellouser/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>gatein-jsp-hellouser</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/examples/portlets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/examples/portlets/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/examples/portlets/simplesthelloworld/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/simplesthelloworld/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/examples/portlets/simplesthelloworld/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>gatein-simplest-helloworld</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/examples/portlets/struts-jpetstore/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portlets/struts-jpetstore/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/examples/portlets/struts-jpetstore/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>struts-jpetstore</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/examples/skins/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/skins/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/examples/skins/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/examples/skins/simpleskin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/skins/simpleskin/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/examples/skins/simpleskin/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.portal.examples.skins</groupId>
<artifactId>skins-parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>gatein-sample-skin</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/gadgets/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/core/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/gadgets/core/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -14,7 +14,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>exo.portal.gadgets-core</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/gadgets/eXoGadgets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/eXoGadgets/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/gadgets/eXoGadgets/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/gadgets/gwtGadgets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/gwtGadgets/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/gadgets/gwtGadgets/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>exo.portal.gwtGadgets</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/gadgets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/gadgets/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>exo.portal.gadgets</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/gadgets/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/server/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/gadgets/server/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>exo.portal.gadgets-server</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -31,7 +31,7 @@
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<packaging>pom</packaging>
<name>EPP GateIn - Portal - ${project.version}</name>
@@ -80,9 +80,9 @@
</properties>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/epp/portal/tags/EPP_5_2_2_CR01</connection>
- <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/epp/portal/tags/EPP_5_2_2_CR01</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/epp/portal/tags/EPP_5_2_2_CR01</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/epp/portal/tags/EPP_5_2_2_GA</connection>
+ <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/epp/portal/tags/EPP_5_2_2_GA</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/epp/portal/tags/EPP_5_2_2_GA</url>
</scm>
<modules>
@@ -469,79 +469,79 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.controller</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.security</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.server</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.api</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.resources</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.pc</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.initializer</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.application-registry</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
@@ -551,68 +551,68 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.scripting</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.management</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.framework</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portlet</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.core</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.dashboard</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets-core</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<type>test-jar</type>
</dependency>
<dependency>
@@ -629,7 +629,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss.plugin</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
<!-- Chromattic -->
Modified: epp/portal/tags/EPP_5_2_2_GA/portlet/dashboard/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/dashboard/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/portlet/dashboard/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/portlet/exoadmin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/portlet/exoadmin/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/portlet/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/portlet/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>exo.portal.portlet</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/portlet/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/web/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/portlet/web/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/server/jboss/patch-ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/server/jboss/patch-ear/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/server/jboss/patch-ear/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/server/jboss/plugin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/server/jboss/plugin/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/server/jboss/plugin/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/server/jboss/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/server/jboss/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/server/jboss/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>exo.portal.server.jboss</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/server/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/server/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>exo.portal.server</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/starter/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/starter/ear/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/starter/ear/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</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.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<type>war</type>
</dependency>
</dependencies>
Modified: epp/portal/tags/EPP_5_2_2_GA/starter/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/starter/jar/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/starter/jar/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/tags/EPP_5_2_2_GA/starter/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/starter/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/starter/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>exo.portal.starter.root</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/starter/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/starter/war/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/starter/war/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</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.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</dependency>
</dependencies>
</project>
Modified: epp/portal/tags/EPP_5_2_2_GA/testsuite/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/testsuite/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/testsuite/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>exo.portal.testsuite</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/testsuite/selenium-snifftests/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/testsuite/selenium-snifftests/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/testsuite/selenium-snifftests/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>exo.portal.selenium.snifftests</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/testsuite/webuibasedsamples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/testsuite/webuibasedsamples/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/testsuite/webuibasedsamples/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>exo.webui.based.samples</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/web/eXoResources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/eXoResources/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/web/eXoResources/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/web/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>exo.portal.web</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/web/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/portal/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/web/portal/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/web/rest/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/rest/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/web/rest/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/webui/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/core/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/webui/core/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/webui/dashboard/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/dashboard/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/webui/dashboard/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/webui/eXo/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/eXo/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/webui/eXo/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/webui/framework/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/framework/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/webui/framework/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/webui/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/webui/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>exo.portal.webui</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/webui/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/portal/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/webui/portal/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/webui/portlet/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/portlet/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/webui/portlet/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/wsrp-integration/extension-component/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-component/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/wsrp-integration/extension-component/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -26,7 +26,7 @@
<parent>
<artifactId>gatein-wsrp-integration-parent</artifactId>
<groupId>org.gatein.integration</groupId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/tags/EPP_5_2_2_GA/wsrp-integration/extension-config/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-config/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/wsrp-integration/extension-config/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -26,7 +26,7 @@
<parent>
<artifactId>gatein-wsrp-integration-parent</artifactId>
<groupId>org.gatein.integration</groupId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>extension-config</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/wsrp-integration/extension-ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-ear/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/wsrp-integration/extension-ear/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -28,7 +28,7 @@
<parent>
<artifactId>gatein-wsrp-integration-parent</artifactId>
<groupId>org.gatein.integration</groupId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>extension-ear</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/wsrp-integration/extension-ear-as5/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-ear-as5/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/wsrp-integration/extension-ear-as5/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.gatein.integration</groupId>
<artifactId>gatein-wsrp-integration-parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>extension-ear-as5</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/wsrp-integration/extension-war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/extension-war/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/wsrp-integration/extension-war/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -27,7 +27,7 @@
<parent>
<artifactId>gatein-wsrp-integration-parent</artifactId>
<groupId>org.gatein.integration</groupId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<artifactId>extension-war</artifactId>
Modified: epp/portal/tags/EPP_5_2_2_GA/wsrp-integration/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/wsrp-integration/pom.xml 2012-08-10 08:29:02 UTC (rev 8815)
+++ epp/portal/tags/EPP_5_2_2_GA/wsrp-integration/pom.xml 2012-08-28 14:45:03 UTC (rev 8823)
@@ -34,7 +34,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.2.CR01-SNAPSHOT</version>
+ <version>5.2.2.GA</version>
</parent>
<description>GateIn WSRP Integration extension parent</description>
12 years, 4 months
gatein SVN: r8822 - epp/portal/branches.
by do-not-reply@jboss.org
Author: mputz
Date: 2012-08-27 04:51:34 -0400 (Mon, 27 Aug 2012)
New Revision: 8822
Added:
epp/portal/branches/EPP_5_2_1_GA_BZ851983/
Log:
Create one-off patch branch for BZ 851983
12 years, 4 months
gatein SVN: r8821 - epp/docs/branches/5.2/Draft_CSP_Maps.
by do-not-reply@jboss.org
Author: jaredmorgs
Date: 2012-08-27 01:51:01 -0400 (Mon, 27 Aug 2012)
New Revision: 8821
Modified:
epp/docs/branches/5.2/Draft_CSP_Maps/ReferenceGuide.contentspec
Log:
Updated map for Reference Guide. Up to JCR query use-cases
Modified: epp/docs/branches/5.2/Draft_CSP_Maps/ReferenceGuide.contentspec
===================================================================
--- epp/docs/branches/5.2/Draft_CSP_Maps/ReferenceGuide.contentspec 2012-08-27 03:35:46 UTC (rev 8820)
+++ epp/docs/branches/5.2/Draft_CSP_Maps/ReferenceGuide.contentspec 2012-08-27 05:51:01 UTC (rev 8821)
@@ -560,8 +560,66 @@
Configuring JCR to use external configuration [N, Task]
Chapter: JBoss Cache and JCR
+ Using single configuration files [N, Reference]
+ Using template-based configuration files [N, Reference]
+ JGroups multiplexer [N, Concept]
+ Configuring JGroups multiplexer [N, Task]
+ JBoss Cache instance sharing [N, Concept]
+ Configuring JBoss Cache instance [N, Task]
+ Template files for JBoss Cache [N, Reference]
+
+ Chapter: LockManager
+ LockManager [N, Concept]
+ CacheableLockManagerImpl class, and parameters [N, Reference]
+ jbosscache-lock-config.xml [N, Reference]
+ Data types used in different databases [N, Reference] #that table 31.1
+ Configure LockManager using a single configuration file reference [N, Task]
+ Configure LockManager using a common template for all instances [N, Task]
+ Lock migration [N, Concept]
+ Lock migration options [N, Reference]
+ Chapter: QueryHandler
+ Indexing in a clustered environment [N, Concept]
+# Insert the information contained in 32.2.1. Query-handler configuration overview into the <query-handler> directive
+ Improving query performance with postgreSQL and rdbms-reindexing [N, Task]
+ Improving query performance with DB2 and rdbms-reindexing [N, Task]
+ Implementing shared indexing for clustered environments [N, Task]
+ Local index recovery filters [N, Concept]
+ Configuring local index recovery filters using RecoveryFilters [N, Task]
+ Lucene recovery filters [N, Reference]
+ Configuring the JBoss Cache query handler template [N, Task]
+ Re-indexing [N, Concept]
+ On-startup indexing [N, Concept]
+ Hot asynchronous workplace re-indexing [N, Concept]
+ Hot asynchronous workplace re-indexing using JMX [N, Task]
+ Lucene index tuning [N, Reference]
+
+ Chapter: JBoss Transactions Service
+ JBossTransactionsService [N, Reference]
+ Configuring JBossTransactionsService [N, Task]
+
+ Chapter: JBoss Transactions Manager Lookup
+ TransactionManagerLookup [N, Reference]
+ Configuring TransactionManagerLookup [N, Task]
+
+ Chapter: RepositoryCreationService
+ RepositoryCreationService [N, Reference]
+ Configuring RepositoryCreationService [N, Task]
+
+ Chapter: JCR query use-cases
+ 36.1. Introduction
+36.2. Query Lifecycle
+36.2.1. Query Creation and Execution
+36.2.2. Query Result Processing
+36.2.3. Scoring
+36.3. Tips and tricks
+36.3.1. XPath queries containing node names starting with a number
+
+
+
+
+
12 years, 4 months
gatein SVN: r8820 - epp/docs/branches/5.2/Draft_CSP_Maps.
by do-not-reply@jboss.org
Author: jaredmorgs
Date: 2012-08-26 23:35:46 -0400 (Sun, 26 Aug 2012)
New Revision: 8820
Modified:
epp/docs/branches/5.2/Draft_CSP_Maps/ReferenceGuide.contentspec
Log:
Updates to CSP map for Reference Guide. Up to Chapter 30. Configuring JBoss Cache
Modified: epp/docs/branches/5.2/Draft_CSP_Maps/ReferenceGuide.contentspec
===================================================================
--- epp/docs/branches/5.2/Draft_CSP_Maps/ReferenceGuide.contentspec 2012-08-24 00:43:56 UTC (rev 8819)
+++ epp/docs/branches/5.2/Draft_CSP_Maps/ReferenceGuide.contentspec 2012-08-27 03:35:46 UTC (rev 8820)
@@ -28,7 +28,7 @@
Resource request filter [N, Task]
The default skin [N, Reference]
Process: Creating portal skins
- Portal skin [X1, Concept]
+ Portal skin [N, Concept]
Configuring a portal skin [N, Task]
Configuring a portal skin preview icon [N, Task]
Window style [N, Concept]
@@ -351,61 +351,218 @@
Part: Advanced Development Foundations
-19. Foundations
-19.1. The eXo Kernel
-19.1.1. Kernel configuration namespace
-19.2. Configuration Retrieval
-19.3. Advanced concepts for the PortalContainers
-19.3.1. Add new configuration files from a WAR file
-19.3.2. Creating your PortalContainers from a WAR file
-19.3.3. Defining a PortalContainer with its dependencies and its settings
-19.3.4. PortalContainer settings
-19.3.5. Adding dynamically settings and/or dependencies to a PortalContainer
-19.3.6. Disable dynamically a portal container
-19.4. Runtime configuration profiles
-19.4.1. Profiles activation
-19.4.2. Profiles configuration
-19.5. Component request life cycle
-19.5.1. Component request life cycle contract
-19.5.2. Request life cycle
-19.6. Configuring Services
-19.6.1. Configuration syntax
-19.7. Specific Services
-19.7.1. ListenerService
-19.7.2. Understanding the ListenerService
-19.7.3. Job Schedule
-19.7.4. The data source provider
-19.8. Configuring a portal container
-19.9. System property configuration
-19.9.1. Properties <init-param>
-19.9.2. Properties URL <init-param>
-19.9.3. System Property configuration of the properties URL
-19.9.4. Variable Syntaxes
-19.10. The Extension Mechanism and Portal Extensions
-19.10.1. Running Multiple Portals
-19.11. Manageability
-19.11.1. Introduction
-19.11.2. Managed framework API
-19.11.3. JMX Management View
-19.11.4. Example
+ Chapter: The eXo Kernel
+ eXo kernel [N, Concept]
+ Inversion of control [N, Concept]
+ Dependency injection overview [N, Concept]
+ Kernel configuration namespace [N, Concept]
+ Chapter: Configuration Retrieval
+ Configuration retrieval targets [N, Reference]
+ How configuration retrieval works [N, Concept]
+
+ Chapter: PortalContainers
+ Adding new configuration files from a WAR file [N, Task]
+ Creating PortalContainers from a WAR file [N, Reference]
+ Section: Defining a PortalContainer with its dependencies and its settings
+ Defining a PortalContainerDefinition [N, Task]
+ Using a PortalContainerDefinition to define a new portal container [N, Task]
+ PortalContainerConfig Configuration Directives [N, Reference]
+# add PortalContainer settings [N, Task] and PortalContainer settings into PortalContainerConfig Configuration Directives
+
+ Section: Dynamically add settings and dependencies to a PortalContainer
+ PortalContainerDefinitionChangePlugin [N, Reference]
+ PortalContainerDefinitionChangePlugin Configuration Directives [N, Reference]
+ PortalContainerDefinitionChangePlugin Implementations [N, Reference]
+ AddDependencies [N, Reference]
+ AddDependenciesBefore [N, Reference]
+ AddDependenciesAfter [N, Reference]
+ AddSettings [N, Reference]
+ Section: Dynamically disable a portal container
+ PortalContainerDefinitionDisablePlugin [N, Reference]
+ Preventing access to disabled portal container [N, Task]
+
+ Chapter: Runtime configuration profiles
+ Section: Configuring profiles
+ Profile activation logic [N, Reference]
+ Profile-capable configuration directives [N, Reference]
+ Activating a runtime configuration profile [N, Task]
+ Chapter: Component request life cycle
+ 19.5.1. Component request life cycle contract [N, Reference]
+ 19.5.2. RequestLifeCycle class overview [N, Reference]
+ Chapter: Configuring Services
+ Overview [N, Concept]
+ Section: configuration.xml
+ Components [N, Reference]
+ RootContainer [N, Reference]
+ PortalContainer [N, Reference]
+ External Plug-ins [N, Reference]
+ Service instantiation [N, Reference]
+ Service access [N, Reference]
+ Includes, and special URLs [N, Reference]
+ Special variables [N, Reference]
+ Section: <init-params> directive
+ <init-params> overview [N, Reference]
+ <value-param> [N, Reference]
+ <value-params> [N, Reference]
+ <properties-param> [N, Reference]
+ <object-param> [N, Reference]
+ <collection> [N, Reference]
+ Component plug-in priority [N, Reference]
+ Configuration logging [N, Reference]
+ <import> directive [N, Reference]
+ System properties [N, Reference]
+
+ Section: ListenerService
+ ListenerService [N, Concept]
+ Configuring a ListenerService [N, Task]
+ Registering a ListenerService [N, Task]
+ Triggering a ListenerService event [N, Reference]
+ ListenerService Example [N, Reference]
+ Section: JobSchedulerService
+ JobSchedulerService [N, Concept]
+ Using JobSchedulerService in the eXo Kernel [N, Task]
+ Process: JobSchedulerService Tutorial
+ Goal [N, Concept]
+ Build example [N, Task]
+ Define the job [N, Task]
+ Configure the job [N, Task]
+ Run the project [N, Task]
+ Section: DataSourceProvider service
+ DataSourceProvider [N, Concept]
+ Configuring DataSourceProvider [N, Reference]
+
+ Chapter: Configuring a portal container
+ Portal container attributes [N, Reference]
+ Portal container instance [N, Reference]
+
+ Chapter: System property configuration
+ # merge this into the other init-params 19.9.1. Properties <init-param>
+ # merge this into the other init-params 19.9.2. Properties URL <init-param>
+ System property configuration of the properties URL [N, Reference]
+ Variable syntaxes [N, Reference]
+ Chapter: The extension mechanism and portal extensions
+ Overview [N, Concept]
+ Creating a basic portal extension [N, Task]
+ Process: Running multiple portals using portal extension
+ Overview [N, Concept]
+ Configuring multiple portals [N, Reference]
+Part: The Java Content Repository (JCR)
+
+ Chapter: JCR Concepts and Overview
+ Java Content Repository (JCR) [N, Concept]
+ Repository [N, Concept]
+ Workspace [N, Concept]
+ Items [N, Concept]
+ The data model [N, Concept]
+ Data abstraction [N, Concept]
+ eXo repository service components [N, Reference]
+ Workspace data model [N, Reference]
+ Chapter: JCR configuration file overview
+ JCR DTD [N, Reference]
+ jcr-configuration.xml [N, Reference]
+ repository-configuration.xml [N, Reference]
+ <repository-service> directive [N, Reference]
+ <workspace> directive [N, Reference]
+ <workspace-data> directive [N, Reference]
+# Add the CAS Properties from 26.3. Content Addressable Value storage (CAS) support to the following directive
+ <value-storage> directive [N, Reference]
+ <initializer> directive [N, Reference]
+ <cache> directive [N, Reference]
+# Add the query-handler directive value pairs in "Configuring Search" to the next topic for completeness
+ <query-handler> directive [N, Reference]
+ <lock-manager> directive [N, Reference]
+ Chapter: Multi-language JCR support
+ Overview [N, Reference]
+ Oracle multi-language JCR support [N, Reference]
+ DB2 multi-language JCR support [N, Reference]
+ MySQL multi-language JCR support [N, Reference]
+ PostgreSQL multi-language JCR support [N, Reference]
+ Chapter: JCR search functionality
+# Add the introductory info in this section to the <query-handler> directive topic in the chapter above.
+ Section: Global search index [N, Reference]
+ Lucene analyzer [N, Reference]
+ Customized search indexes and analyzers [N, Reference]
+ Create a new filter, analyzer, and search index [N, Task]
+ Section: Indexing configuration
+ indexingConfiguration parameter [N, Concept]
+ Limiting the node scope of node types [N, Task]
+ Increasing the boost value relevance for an entire node [N, Task]
+ Increasing the boost value relevance for properties of a node [N, Task]
+ Conditional index rules examples [N, Reference]
+ Node scope index [N, Concept]
+ Excluding properties from a node scope index [N, Task]
+ Index aggregates [N, Concept]
+ Index aggregates configuration examples [N, Reference]
+ Property-level analyzer [N, Concept]
+ Property-level configuration examples [N, Reference]
+ Node scope search characteristics [N, Concept]
+ Section: Advanced search functionality
+ Get a text excerpt with highlighted words that matches a query [N, Task]
+ Search a term and its synonyms [N, Task]
+ Search similar nodes [N, Task]
+ Check spelling of a full text query statement [N, Task]
+ Define index aggregates and rules [N, Task]
+ Chapter: JDBC and JCR
+ Overview [N, Concept]
+ Database dialect parameters [N, Concept]
+ Single-database metadata SQL-script files [N, Reference]
+ Multi-database metadata SQL-script files [N, Reference]
+ Configuring a single-database database container [N, Task]
+ Configuring a multi-database database container [N, Task]
+ Configuring a database container without binding DataSource [N, Task]
+ Creating workspaces dynamically [N, Task]
+ Simple JDBC queries [N, Reference]
+ Complex JDBC queries [N, Reference]
+ Force query hints [N, Concept]
+ Configuring force query hits for Oracle dialect [N, Task]
+ Preventing "Address already in use" exceptions for Microsoft Windows client machines [N, Task]
+ Chapter: External value storage
+ External value storage [N, Concept]
+ Tree file value storage [N, Concept]
+ TreeFileValueStorage class, and parameters [N, Reference]
+ Configuring value storage with different locations for large files [N, Task]
+ Content Addressable Value Storage (CAS) [N, Concept]
+ CAS in portal [N, Concept]
+ Configuring CAS for JCR [N, Task]
+ Disabling CAS for JCR [N, Task]
+
+ Chapter: Workspace data container
+ Workspace data container [N, Concept]
+ JDBCWorkspaceDataContainer class, and parameters [N, Reference]
+ ValueStoragePlugin class, and parameters [N, Reference]
+ Chapter: REST services on Groovy
+ REST resource container [N, Concept]
+ GroovyScript2RestLoader component example [N, Reference]
+ Chapter: JCR on a cluster
+ JCR cluster environment requirements [N, Reference]
+ JCR cluster <value-storage> requirements [N, Reference]
+ JCR cluster <cache> requirements [N, Reference]
+ JCR cluster <query-handler> (indexer) requirements [N, Reference]
+ JCR cluster <lock-manager> requirements [N, Reference]
+ Deploying eXo JCR to JBoss Enterprise Application Server [N, Task]
+ Configuring JCR to use external configuration [N, Task]
+ Chapter: JBoss Cache and JCR
+
+
+
@@ -427,3 +584,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
12 years, 4 months
gatein SVN: r8819 - epp/docs/branches/5.2/Draft_CSP_Maps.
by do-not-reply@jboss.org
Author: jaredmorgs
Date: 2012-08-23 20:43:56 -0400 (Thu, 23 Aug 2012)
New Revision: 8819
Modified:
epp/docs/branches/5.2/Draft_CSP_Maps/ReferenceGuide.contentspec
Log:
Cumulative Updates
Modified: epp/docs/branches/5.2/Draft_CSP_Maps/ReferenceGuide.contentspec
===================================================================
--- epp/docs/branches/5.2/Draft_CSP_Maps/ReferenceGuide.contentspec 2012-08-23 04:42:06 UTC (rev 8818)
+++ epp/docs/branches/5.2/Draft_CSP_Maps/ReferenceGuide.contentspec 2012-08-24 00:43:56 UTC (rev 8819)
@@ -26,7 +26,7 @@
The skin service [N, Concept]
Skin configuration [N, Task]
Resource request filter [N, Task]
- Section: The default skin [N, Reference]
+ The default skin [N, Reference]
Process: Creating portal skins
Portal skin [X1, Concept]
Configuring a portal skin [N, Task]
@@ -285,7 +285,7 @@
LDAP configuration example [N, Reference]
Read-only groupTypeMappings example [N, Reference]
Default groupTypeMappings example [N, Reference]
- Section: Create Users and Groups without Organization API
+ Section: Create users and groups without Organization API
CoreOrganizationInitializer [N, Concept]
17.10.1. Enable CoreOrganizationInitializer [N, Task]
17.10.2. Operations [N, Reference]
@@ -294,7 +294,7 @@
Disabling launchAll Job Scheduler [N, Task]
Altering the way JCR objects are created on-demand, at user login. [N, Task]
Triggering operations through the JMX console [N, Task]
- REST Interface Example Commands [N, Reference]
+ REST interface example commands [N, Reference]
Chapter: Authorization
Authorization overview [N, Reference]
@@ -302,28 +302,128 @@
Portal level authorization [N, Reference]
Part: Web Services for Remote Portlets (WSRP)
-18.1. Introduction
-18.2. Level of support in JBoss Enterprise Portal Platform
-18.3. Deploying JBoss Enterprise Portal Platform's WSRP services
-18.3.1. Considerations to use WSRP when running JBoss Enterprise Portal Platform on a non-default port or hostname
-18.4. Securing WSRP
-18.4.1. Considerations to use WSRP with SSL
-18.4.2. WSRP and WS-Security
-18.5. Making a portlet remotable
-18.6. Consuming WSRP portlets from a remote Consumer
-18.7. Consuming remote WSRP portlets in JBoss Enterprise Portal Platform
-18.7.1. Overview
-18.7.2. Configuring a remote producer using the configuration portlet
-18.7.3. Configuring access to remote producers via XML
-18.7.4. Adding remote portlets to categories
-18.7.5. Adding remote portlets to pages
-18.8. Consumers maintenance
-18.8.1. Modifying a currently held registration
-18.8.2. Consumer operations
-18.8.3. Importing and exporting portlets
-18.8.4. Erasing local registration data
-18.9. Configuring JBoss Enterprise Portal Platform's WSRP Producer
-18.9.1. Overview
-18.9.2. Default configuration
-18.9.3. Registration configuration
-18.9.4. WSRP validation mode
+ Chapter: WSRP Overview
+ Specification [N, Concept]
+ Level of support in JBoss Enterprise Portal Platform [N, Reference]
+ Deploying JBoss Enterprise Portal Platform's WSRP services [N, Reference]
+
+ Chapter: Securing WSRP
+ Considerations to use WSRP with SSL [N, Reference]
+ WSRP and WS-Security [N, Reference]
+ WS-Security configuration [N, Reference]
+ WS-Security producer and consumer configuration [N, Task]
+
+ Chapter: Making a portlet remotable
+ Single Portlet Remotable Example [N, Reference]
+ Multiple Portlets Remotable Example [N, Reference]
+ Consuming WSRP portlets from a remote Consumer
+
+ Chapter: Consuming remote WSRP portlets from a remote consumer
+ Overview [N, Concept]
+ Process: Consuming remote WSRP portlets in JBoss Enterprise Portal Platform
+ Configuring a remote producer using the configuration portlet [N, Task]
+ Adding remote portlets to categories [N, Task]
+ Process: Configuring access to remote producers via XML
+ Required configuration information [N, Task]
+ Optional configuration [N, Task]
+ Default configuration example [N, Reference]
+ Registration Data and Cache Expiry Example [N, Reference]
+ Adding remote portlets to categories [N, Task]
+ Process: Adding remote portlets to pages
+ Overview [N, Reference]
+ Adding a remote portlet to a page [N, Task]
+ Remote portlet example [N, Reference]
+
+ Chapter: Consumers maintenance
+ Consumer operations [N, Reference]
+ Registration modification for service upgrade [N, Task]
+ Registration modification on producer error [N, Task]
+ Importing and exporting portlets [N, Task]
+ Erasing local registration data [N, Task]
+
+ Chapter: Configuring JBoss Enterprise Portal Platform's WSRP Producer
+ Overview [N, Reference]
+ Default configuration [N, Reference]
+ Registration configuration [N, Task]
+ Customization of registration handling behavior [N, Task]
+ Registration configuration [N, Task]
+ WSRP validation mode [N, Reference]
+
+Part: Advanced Development Foundations
+
+19. Foundations
+19.1. The eXo Kernel
+19.1.1. Kernel configuration namespace
+19.2. Configuration Retrieval
+19.3. Advanced concepts for the PortalContainers
+19.3.1. Add new configuration files from a WAR file
+19.3.2. Creating your PortalContainers from a WAR file
+19.3.3. Defining a PortalContainer with its dependencies and its settings
+19.3.4. PortalContainer settings
+19.3.5. Adding dynamically settings and/or dependencies to a PortalContainer
+19.3.6. Disable dynamically a portal container
+19.4. Runtime configuration profiles
+19.4.1. Profiles activation
+19.4.2. Profiles configuration
+19.5. Component request life cycle
+19.5.1. Component request life cycle contract
+19.5.2. Request life cycle
+19.6. Configuring Services
+19.6.1. Configuration syntax
+19.7. Specific Services
+19.7.1. ListenerService
+19.7.2. Understanding the ListenerService
+19.7.3. Job Schedule
+19.7.4. The data source provider
+19.8. Configuring a portal container
+19.9. System property configuration
+19.9.1. Properties <init-param>
+19.9.2. Properties URL <init-param>
+19.9.3. System Property configuration of the properties URL
+19.9.4. Variable Syntaxes
+19.10. The Extension Mechanism and Portal Extensions
+19.10.1. Running Multiple Portals
+19.11. Manageability
+19.11.1. Introduction
+19.11.2. Managed framework API
+19.11.3. JMX Management View
+19.11.4. Example
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
12 years, 4 months