gatein SVN: r4845 - components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2010-10-26 08:06:39 -0400 (Tue, 26 Oct 2010)
New Revision: 4845
Modified:
components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/ProducerInfo.java
Log:
- GTNWSRP-119: Properly log exceptions.
Modified: components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/ProducerInfo.java
===================================================================
--- components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/ProducerInfo.java 2010-10-26 11:51:21 UTC (rev 4844)
+++ components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/ProducerInfo.java 2010-10-26 12:06:39 UTC (rev 4845)
@@ -394,7 +394,7 @@
}
catch (InvokerUnavailableException e)
{
- log.debug("Couldn't refresh endpoint information, attempting a second time: " + e);
+ log.debug("Couldn't refresh endpoint information, attempting a second time: " + e, e);
// try again as refresh on a failed service factory will fail without attempting the refresh
didJustRefresh = persistentEndpointInfo.forceRefresh();
@@ -422,7 +422,7 @@
// if we have local registration info, the OperationFailedFault might indicate a need to call modifyRegistration
if (hasLocalRegistrationInfo())
{
- log.debug("OperationFailedFault occurred, might indicate a need to modify registration");
+ log.debug("OperationFailedFault occurred, might indicate a need to modify registration", operationFailedFault);
// attempt to get unregistered service description
serviceDescription = getServiceDescription(true);
@@ -454,7 +454,7 @@
}
catch (InvalidRegistration invalidRegistrationFault)
{
- log.debug("InvalidRegistrationFault occurred");
+ log.debug("InvalidRegistrationFault occurred", invalidRegistrationFault);
// attempt to get unregistered service description
serviceDescription = getServiceDescription(true);
14 years, 2 months
gatein SVN: r4844 - components/wsrp/trunk/admin-gui/src/main/java/org/gatein/wsrp/admin/ui.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2010-10-26 07:51:21 -0400 (Tue, 26 Oct 2010)
New Revision: 4844
Modified:
components/wsrp/trunk/admin-gui/src/main/java/org/gatein/wsrp/admin/ui/JSFBeanContext.java
Log:
- Use empty details String to avoid message repetition.
Modified: components/wsrp/trunk/admin-gui/src/main/java/org/gatein/wsrp/admin/ui/JSFBeanContext.java
===================================================================
--- components/wsrp/trunk/admin-gui/src/main/java/org/gatein/wsrp/admin/ui/JSFBeanContext.java 2010-10-26 11:48:52 UTC (rev 4843)
+++ components/wsrp/trunk/admin-gui/src/main/java/org/gatein/wsrp/admin/ui/JSFBeanContext.java 2010-10-26 11:51:21 UTC (rev 4844)
@@ -96,7 +96,7 @@
log.info("Couldn't resolve component target: " + target);
}
- String details = message;
+ String details = ""; // details is empty to avoid repetition of message...
// todo: this should be more generic
if (additionalParams != null && additionalParams.length > 0)
14 years, 2 months
gatein SVN: r4843 - in components/wsrp/trunk/admin-gui/src/main: webapp/jsf/consumers/exports and 1 other directory.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2010-10-26 07:48:52 -0400 (Tue, 26 Oct 2010)
New Revision: 4843
Modified:
components/wsrp/trunk/admin-gui/src/main/java/org/gatein/wsrp/admin/ui/ConsumerBean.java
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/import.xhtml
Log:
- GTNWSRP-117: Import button is now only enabled if we have enough information to perform an import.
Modified: components/wsrp/trunk/admin-gui/src/main/java/org/gatein/wsrp/admin/ui/ConsumerBean.java
===================================================================
--- components/wsrp/trunk/admin-gui/src/main/java/org/gatein/wsrp/admin/ui/ConsumerBean.java 2010-10-26 10:42:51 UTC (rev 4842)
+++ components/wsrp/trunk/admin-gui/src/main/java/org/gatein/wsrp/admin/ui/ConsumerBean.java 2010-10-26 11:48:52 UTC (rev 4843)
@@ -690,6 +690,11 @@
this.provider = provider;
}
+ public boolean isReadyForImport()
+ {
+ return selected && !ParameterValidation.isNullOrEmpty(window);
+ }
+
public String getHandle()
{
return handle;
@@ -733,6 +738,14 @@
FacesContext.getCurrentInstance().renderResponse();
}
+ public void selectCurrentWindow(ValueChangeEvent event)
+ {
+ window = (String)event.getNewValue();
+
+ // bypass the rest of the life cycle and re-display page
+ FacesContext.getCurrentInstance().renderResponse();
+ }
+
public List<SelectItem> getPages()
{
List<String> pageIdentifiers = provider.getPageIdentifiers();
@@ -835,6 +848,17 @@
{
return export;
}
+
+ public boolean isReadyForImport()
+ {
+ boolean ready = false;
+ for (SelectablePortletHandle portlet : exportedPortlets)
+ {
+ ready = ready || portlet.isReadyForImport();
+ }
+
+ return ready;
+ }
}
public static class FailedPortletsDisplay
Modified: components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/import.xhtml
===================================================================
--- components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/import.xhtml 2010-10-26 10:42:51 UTC (rev 4842)
+++ components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/import.xhtml 2010-10-26 11:48:52 UTC (rev 4843)
@@ -51,7 +51,10 @@
onclick="this.form.submit()">
<f:selectItems value="#{portlet.pages}"/>
</h:selectOneListbox>
- <h:selectOneListbox id="currentWindow" value="#{portlet.window}" rendered="#{! empty portlet.page}">
+ <h:selectOneListbox id="currentWindow" value="#{portlet.window}" rendered="#{! empty portlet.page}"
+ valueChangeListener="#{portlet.selectCurrentWindow}"
+ immediate="true"
+ onclick="this.form.submit()">
<f:selectItems value="#{portlet.windows}"/>
</h:selectOneListbox>
</h:column>
@@ -63,7 +66,7 @@
<div class="ButtonLeft">
<div class="ButtonRight">
<div class="ButtonMiddle">
- <h:commandButton id="import" action="#{consumer.importPortlets}"
+ <h:commandButton id="import" action="#{consumer.importPortlets}" disabled="#{!consumer.currentExport.readyForImport}"
value="#{i18n.import_import}"/>
</div>
</div>
14 years, 2 months
gatein SVN: r4842 - exo/portal/branches/3.1.5-PLF_REL.
by do-not-reply@jboss.org
Author: aheritier
Date: 2010-10-26 06:42:51 -0400 (Tue, 26 Oct 2010)
New Revision: 4842
Modified:
exo/portal/branches/3.1.5-PLF_REL/pom.xml
Log:
[SWF-580] Upgrade dependencies to next snapshots
Modified: exo/portal/branches/3.1.5-PLF_REL/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/pom.xml 2010-10-26 10:24:08 UTC (rev 4841)
+++ exo/portal/branches/3.1.5-PLF_REL/pom.xml 2010-10-26 10:42:51 UTC (rev 4842)
@@ -37,10 +37,10 @@
<name>GateIn - Portal</name>
<properties>
- <org.exoplatform.kernel.version>2.2.5-GA</org.exoplatform.kernel.version>
- <org.exoplatform.core.version>2.3.5-GA</org.exoplatform.core.version>
- <org.exoplatform.ws.version>2.1.5-GA</org.exoplatform.ws.version>
- <org.exoplatform.jcr.version>1.12.5-GA</org.exoplatform.jcr.version>
+ <org.exoplatform.kernel.version>2.2.6-GA-SNAPSHOT</org.exoplatform.kernel.version>
+ <org.exoplatform.core.version>2.3.6-GA-SNAPSHOT</org.exoplatform.core.version>
+ <org.exoplatform.ws.version>2.1.6-GA-SNAPSHOT</org.exoplatform.ws.version>
+ <org.exoplatform.jcr.version>1.12.6-GA-SNAPSHOT</org.exoplatform.jcr.version>
<org.jibx.version>1.2.1</org.jibx.version>
<org.shindig.version>1.0-r790473-Patch04</org.shindig.version>
<nl.captcha.simplecaptcha.version>1.1.1-GA-Patch01</nl.captcha.simplecaptcha.version>
14 years, 2 months
gatein SVN: r4841 - in components/wsrp/trunk/admin-gui/src/main/webapp: jsf/consumers/exports and 1 other directories.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2010-10-26 06:24:08 -0400 (Tue, 26 Oct 2010)
New Revision: 4841
Modified:
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/consumers.xhtml
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/exportDetail.xhtml
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/exports.xhtml
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/import.xhtml
components/wsrp/trunk/admin-gui/src/main/webapp/styles/style.css
Log:
- GTNWSRP-113: Improved size of columns.
Modified: components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/consumers.xhtml
===================================================================
--- components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/consumers.xhtml 2010-10-26 10:23:54 UTC (rev 4840)
+++ components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/consumers.xhtml 2010-10-26 10:24:08 UTC (rev 4841)
@@ -36,7 +36,7 @@
rendered="#{!consumersMgr.consumersEmpty}"
rowClasses="EvenRow,OddRow"
styleClass="UIGrid ConsumerGrid" width="100%">
- <h:column>
+ <h:column headerClass="consumerNameColumn">
<f:facet name="header">
#{i18n.consumers_table_column_consumer}
<div style="font-size: 90%; display:inline; font-weight: normal;">
Modified: components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/exportDetail.xhtml
===================================================================
--- components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/exportDetail.xhtml 2010-10-26 10:23:54 UTC (rev 4840)
+++ components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/exportDetail.xhtml 2010-10-26 10:24:08 UTC (rev 4841)
@@ -30,7 +30,7 @@
<table width="100%" class="portlet-table-body">
<tr>
- <th>#{i18n.export_detail_export_time}</th>
+ <th width="20%">#{i18n.export_detail_export_time}</th>
<td>#{consumer.currentExport.exportTime}</td>
</tr>
<ui:remove>
Modified: components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/exports.xhtml
===================================================================
--- components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/exports.xhtml 2010-10-26 10:23:54 UTC (rev 4840)
+++ components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/exports.xhtml 2010-10-26 10:24:08 UTC (rev 4841)
@@ -43,7 +43,7 @@
</h:column>
</ui:remove>
- <h:column>
+ <h:column headerClass="hasFailedColumn">
<f:facet name="header">#{i18n.export_detail_has_failed}</f:facet>
<h:selectBooleanCheckbox id="hasFailed" value="#{export.hasFailedPortlets}" disabled="true"/>
</h:column>
Modified: components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/import.xhtml
===================================================================
--- components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/import.xhtml 2010-10-26 10:23:54 UTC (rev 4840)
+++ components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/import.xhtml 2010-10-26 10:24:08 UTC (rev 4841)
@@ -31,7 +31,7 @@
<h:form id="import-form">
<h:dataTable id="portletsList" value="#{consumer.currentExport.exportedPortlets}" var="portlet"
rowClasses="EvenRow,OddRow" styleClass="UIGrid" width="100%">
- <h:column>
+ <h:column headerClass="importColumn">
<f:facet name="header">#{i18n.import_use}</f:facet>
<h:selectBooleanCheckbox id="selected" value="#{portlet.selected}"
valueChangeListener="#{portlet.select}"
Modified: components/wsrp/trunk/admin-gui/src/main/webapp/styles/style.css
===================================================================
--- components/wsrp/trunk/admin-gui/src/main/webapp/styles/style.css 2010-10-26 10:23:54 UTC (rev 4840)
+++ components/wsrp/trunk/admin-gui/src/main/webapp/styles/style.css 2010-10-26 10:24:08 UTC (rev 4841)
@@ -385,3 +385,16 @@
margin: 0 auto 0 auto;
width: 100%;
}
+
+.wsrp-consumers-ui .consumerNameColumn {
+ width: 37%;
+}
+
+.wsrp-consumers-ui .hasFailedColumn {
+ width: 15%;
+}
+
+.wsrp-consumers-ui .importColumn {
+ width: 7%;
+}
+
14 years, 2 months
gatein SVN: r4840 - in exo/portal/branches/3.1.5-PLF_REL: component and 72 other directories.
by do-not-reply@jboss.org
Author: aheritier
Date: 2010-10-26 06:23:54 -0400 (Tue, 26 Oct 2010)
New Revision: 4840
Modified:
exo/portal/branches/3.1.5-PLF_REL/component/application-registry/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/common/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/dashboard/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/identity/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/management/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/pc/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/portal/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/resources/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/scripting/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/test/core/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/test/jcr/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/test/organization/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/test/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/web/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/wsrp/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/xml-parser/pom.xml
exo/portal/branches/3.1.5-PLF_REL/docs/pom.xml
exo/portal/branches/3.1.5-PLF_REL/docs/reference-guide/pom.xml
exo/portal/branches/3.1.5-PLF_REL/docs/user-guide/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/extension/config/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/extension/ear/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/extension/jar/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/extension/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/extension/war/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/portal/config/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/portal/ear/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/portal/jar/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/portal/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/portal/rest-war/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/portal/war/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/portlets/jsfhellouser/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/portlets/jsphellouser/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/portlets/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/portlets/simplesthelloworld/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/portlets/struts-jpetstore/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/skins/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/skins/simpleskin/pom.xml
exo/portal/branches/3.1.5-PLF_REL/gadgets/core/pom.xml
exo/portal/branches/3.1.5-PLF_REL/gadgets/eXoGadgets/pom.xml
exo/portal/branches/3.1.5-PLF_REL/gadgets/pom.xml
exo/portal/branches/3.1.5-PLF_REL/gadgets/server/pom.xml
exo/portal/branches/3.1.5-PLF_REL/packaging/module/pom.xml
exo/portal/branches/3.1.5-PLF_REL/packaging/pkg/pom.xml
exo/portal/branches/3.1.5-PLF_REL/packaging/pom.xml
exo/portal/branches/3.1.5-PLF_REL/packaging/product/pom.xml
exo/portal/branches/3.1.5-PLF_REL/packaging/reports/pom.xml
exo/portal/branches/3.1.5-PLF_REL/pom.xml
exo/portal/branches/3.1.5-PLF_REL/portlet/dashboard/pom.xml
exo/portal/branches/3.1.5-PLF_REL/portlet/exoadmin/pom.xml
exo/portal/branches/3.1.5-PLF_REL/portlet/pom.xml
exo/portal/branches/3.1.5-PLF_REL/portlet/web/pom.xml
exo/portal/branches/3.1.5-PLF_REL/server/jboss/patch-ear/pom.xml
exo/portal/branches/3.1.5-PLF_REL/server/jboss/plugin/pom.xml
exo/portal/branches/3.1.5-PLF_REL/server/jboss/pom.xml
exo/portal/branches/3.1.5-PLF_REL/server/pom.xml
exo/portal/branches/3.1.5-PLF_REL/server/tomcat/patch/pom.xml
exo/portal/branches/3.1.5-PLF_REL/server/tomcat/plugin/pom.xml
exo/portal/branches/3.1.5-PLF_REL/server/tomcat/pom.xml
exo/portal/branches/3.1.5-PLF_REL/starter/ear/pom.xml
exo/portal/branches/3.1.5-PLF_REL/starter/pom.xml
exo/portal/branches/3.1.5-PLF_REL/starter/war/pom.xml
exo/portal/branches/3.1.5-PLF_REL/testsuite/pom.xml
exo/portal/branches/3.1.5-PLF_REL/testsuite/selenium-snifftests/pom.xml
exo/portal/branches/3.1.5-PLF_REL/testsuite/webuibasedsamples/pom.xml
exo/portal/branches/3.1.5-PLF_REL/web/eXoResources/pom.xml
exo/portal/branches/3.1.5-PLF_REL/web/pom.xml
exo/portal/branches/3.1.5-PLF_REL/web/portal/pom.xml
exo/portal/branches/3.1.5-PLF_REL/web/rest/pom.xml
exo/portal/branches/3.1.5-PLF_REL/webui/core/pom.xml
exo/portal/branches/3.1.5-PLF_REL/webui/eXo/pom.xml
exo/portal/branches/3.1.5-PLF_REL/webui/pom.xml
exo/portal/branches/3.1.5-PLF_REL/webui/portal/pom.xml
Log:
[maven-release-plugin] [SWF-580]prepare for next development iteration
Modified: exo/portal/branches/3.1.5-PLF_REL/component/application-registry/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/application-registry/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/component/application-registry/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/common/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/common/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/component/common/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.common</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/dashboard/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/dashboard/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/component/dashboard/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/identity/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/identity/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/component/identity/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/management/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/management/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/component/management/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/pc/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/pc/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/component/pc/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/component/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.component</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/portal/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/portal/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/component/portal/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/resources/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/resources/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/component/resources/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/scripting/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/scripting/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/component/scripting/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/test/core/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/test/core/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/component/test/core/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/test/jcr/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/test/jcr/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/component/test/jcr/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/test/organization/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/test/organization/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/component/test/organization/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/test/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/test/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/component/test/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/web/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/web/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/component/web/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/wsrp/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/wsrp/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/component/wsrp/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/xml-parser/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/xml-parser/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/component/xml-parser/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/docs/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/docs/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/docs/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<groupId>org.gatein.doc</groupId>
Modified: exo/portal/branches/3.1.5-PLF_REL/docs/reference-guide/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/docs/reference-guide/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/docs/reference-guide/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.doc</groupId>
<artifactId>docs-aggregator</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<groupId>org.gatein.doc</groupId>
Modified: exo/portal/branches/3.1.5-PLF_REL/docs/user-guide/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/docs/user-guide/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/docs/user-guide/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.doc</groupId>
<artifactId>docs-aggregator</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>gatein-user-guide-en</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/extension/config/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/extension/config/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/extension/config/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/extension/ear/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/extension/ear/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/extension/ear/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,23 +37,23 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.config</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.jar</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.war</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/extension/jar/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/extension/jar/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/extension/jar/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/extension/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/extension/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/extension/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.sample.extension.root</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/extension/war/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/extension/war/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/extension/war/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.sample</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/portal/config/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/portal/config/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/portal/config/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/portal/ear/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/portal/ear/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/portal/ear/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,29 +37,29 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.config</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.jar</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.war</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.rest-war</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/portal/jar/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/portal/jar/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/portal/jar/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/portal/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/portal/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/portal/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.sample.portal.root</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/portal/rest-war/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/portal/rest-war/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/portal/rest-war/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/portal/war/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/portal/war/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/portal/war/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/portlets/jsfhellouser/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/portlets/jsfhellouser/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/portlets/jsfhellouser/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>gatein-jsf-hellouser</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/portlets/jsphellouser/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/portlets/jsphellouser/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/portlets/jsphellouser/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>gatein-jsp-hellouser</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/portlets/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/portlets/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/portlets/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/portlets/simplesthelloworld/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/portlets/simplesthelloworld/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/portlets/simplesthelloworld/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>gatein-simplest-helloworld</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/portlets/struts-jpetstore/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/portlets/struts-jpetstore/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/portlets/struts-jpetstore/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>struts-jpetstore</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/skins/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/skins/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/skins/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<groupId>org.gatein.portal.examples.skins</groupId>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/skins/simpleskin/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/skins/simpleskin/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/skins/simpleskin/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.portal.examples.skins</groupId>
<artifactId>parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>gatein-sample-skin</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/gadgets/core/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/gadgets/core/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/gadgets/core/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -14,7 +14,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gadgets-core</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/gadgets/eXoGadgets/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/gadgets/eXoGadgets/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/gadgets/eXoGadgets/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/gadgets/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/gadgets/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/gadgets/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gadgets</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/gadgets/server/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/gadgets/server/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/gadgets/server/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gadgets-server</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/packaging/module/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/packaging/module/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/packaging/module/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/packaging/pkg/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/packaging/pkg/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/packaging/pkg/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -67,19 +67,19 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.module</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
<type>js</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.product</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
<type>js</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss.patch-ear</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</dependency>
<!-- Missing packaging dependencies -->
Modified: exo/portal/branches/3.1.5-PLF_REL/packaging/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/packaging/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/packaging/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/packaging/product/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/packaging/product/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/packaging/product/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/packaging/reports/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/packaging/reports/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/packaging/reports/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -31,7 +31,7 @@
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
<packaging>pom</packaging>
<name>GateIn - Portal</name>
@@ -101,9 +101,9 @@
</distributionManagement>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/exo/portal/tags/3.1.5-PLF</connection>
- <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/exo/portal/tags/3.1.5-PLF</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/exo/portal/tags/3.1.5-PLF</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/exo/portal/branches/3.1.5-P...</connection>
+ <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/exo/portal/branches/3.1.5-PLF_REL</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/exo/portal/branches/3.1.5-PLF_REL</url>
</scm>
<modules>
@@ -341,110 +341,110 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.pc</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.application-registry</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.xml-parser</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.scripting</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.dashboard</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.core</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets-core</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
<type>test-jar</type>
</dependency>
Modified: exo/portal/branches/3.1.5-PLF_REL/portlet/dashboard/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/portlet/dashboard/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/portlet/dashboard/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/portlet/exoadmin/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/portlet/exoadmin/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/portlet/exoadmin/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/portlet/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/portlet/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/portlet/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.portlet</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/portlet/web/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/portlet/web/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/portlet/web/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/server/jboss/patch-ear/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/server/jboss/patch-ear/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/server/jboss/patch-ear/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/server/jboss/plugin/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/server/jboss/plugin/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/server/jboss/plugin/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/server/jboss/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/server/jboss/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/server/jboss/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.server.jboss</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/server/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/server/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/server/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.server</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/server/tomcat/patch/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/server/tomcat/patch/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/server/tomcat/patch/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.tomcat</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/server/tomcat/plugin/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/server/tomcat/plugin/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/server/tomcat/plugin/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.tomcat</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/server/tomcat/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/server/tomcat/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/server/tomcat/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.server.tomcat</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/starter/ear/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/starter/ear/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/starter/ear/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.starter.war</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
Modified: exo/portal/branches/3.1.5-PLF_REL/starter/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/starter/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/starter/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.starter.root</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/starter/war/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/starter/war/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/starter/war/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/testsuite/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/testsuite/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/testsuite/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.testsuite</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/testsuite/selenium-snifftests/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/testsuite/selenium-snifftests/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/testsuite/selenium-snifftests/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.selenium.snifftests</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/testsuite/webuibasedsamples/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/testsuite/webuibasedsamples/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/testsuite/webuibasedsamples/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.webui.based.samples</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/web/eXoResources/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/web/eXoResources/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/web/eXoResources/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/web/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/web/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/web/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.web</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/web/portal/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/web/portal/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/web/portal/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/web/rest/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/web/rest/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/web/rest/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/webui/core/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/webui/core/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/webui/core/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/webui/eXo/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/webui/eXo/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/webui/eXo/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/webui/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/webui/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/webui/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.webui</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/webui/portal/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/webui/portal/pom.xml 2010-10-26 10:21:45 UTC (rev 4839)
+++ exo/portal/branches/3.1.5-PLF_REL/webui/portal/pom.xml 2010-10-26 10:23:54 UTC (rev 4840)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.1.5-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
14 years, 2 months
gatein SVN: r4839 - exo/portal/tags.
by do-not-reply@jboss.org
Author: aheritier
Date: 2010-10-26 06:21:45 -0400 (Tue, 26 Oct 2010)
New Revision: 4839
Added:
exo/portal/tags/3.1.5-PLF/
Log:
[maven-release-plugin] [SWF-580] copy for tag 3.1.5-PLF
Copied: exo/portal/tags/3.1.5-PLF (from rev 4838, exo/portal/branches/3.1.5-PLF_REL)
14 years, 2 months
gatein SVN: r4838 - in exo/portal/branches/3.1.5-PLF_REL: component and 72 other directories.
by do-not-reply@jboss.org
Author: aheritier
Date: 2010-10-26 06:21:24 -0400 (Tue, 26 Oct 2010)
New Revision: 4838
Modified:
exo/portal/branches/3.1.5-PLF_REL/component/application-registry/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/common/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/dashboard/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/identity/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/management/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/pc/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/portal/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/resources/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/scripting/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/test/core/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/test/jcr/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/test/organization/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/test/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/web/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/wsrp/pom.xml
exo/portal/branches/3.1.5-PLF_REL/component/xml-parser/pom.xml
exo/portal/branches/3.1.5-PLF_REL/docs/pom.xml
exo/portal/branches/3.1.5-PLF_REL/docs/reference-guide/pom.xml
exo/portal/branches/3.1.5-PLF_REL/docs/user-guide/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/extension/config/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/extension/ear/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/extension/jar/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/extension/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/extension/war/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/portal/config/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/portal/ear/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/portal/jar/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/portal/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/portal/rest-war/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/portal/war/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/portlets/jsfhellouser/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/portlets/jsphellouser/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/portlets/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/portlets/simplesthelloworld/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/portlets/struts-jpetstore/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/skins/pom.xml
exo/portal/branches/3.1.5-PLF_REL/examples/skins/simpleskin/pom.xml
exo/portal/branches/3.1.5-PLF_REL/gadgets/core/pom.xml
exo/portal/branches/3.1.5-PLF_REL/gadgets/eXoGadgets/pom.xml
exo/portal/branches/3.1.5-PLF_REL/gadgets/pom.xml
exo/portal/branches/3.1.5-PLF_REL/gadgets/server/pom.xml
exo/portal/branches/3.1.5-PLF_REL/packaging/module/pom.xml
exo/portal/branches/3.1.5-PLF_REL/packaging/pkg/pom.xml
exo/portal/branches/3.1.5-PLF_REL/packaging/pom.xml
exo/portal/branches/3.1.5-PLF_REL/packaging/product/pom.xml
exo/portal/branches/3.1.5-PLF_REL/packaging/reports/pom.xml
exo/portal/branches/3.1.5-PLF_REL/pom.xml
exo/portal/branches/3.1.5-PLF_REL/portlet/dashboard/pom.xml
exo/portal/branches/3.1.5-PLF_REL/portlet/exoadmin/pom.xml
exo/portal/branches/3.1.5-PLF_REL/portlet/pom.xml
exo/portal/branches/3.1.5-PLF_REL/portlet/web/pom.xml
exo/portal/branches/3.1.5-PLF_REL/server/jboss/patch-ear/pom.xml
exo/portal/branches/3.1.5-PLF_REL/server/jboss/plugin/pom.xml
exo/portal/branches/3.1.5-PLF_REL/server/jboss/pom.xml
exo/portal/branches/3.1.5-PLF_REL/server/pom.xml
exo/portal/branches/3.1.5-PLF_REL/server/tomcat/patch/pom.xml
exo/portal/branches/3.1.5-PLF_REL/server/tomcat/plugin/pom.xml
exo/portal/branches/3.1.5-PLF_REL/server/tomcat/pom.xml
exo/portal/branches/3.1.5-PLF_REL/starter/ear/pom.xml
exo/portal/branches/3.1.5-PLF_REL/starter/pom.xml
exo/portal/branches/3.1.5-PLF_REL/starter/war/pom.xml
exo/portal/branches/3.1.5-PLF_REL/testsuite/pom.xml
exo/portal/branches/3.1.5-PLF_REL/testsuite/selenium-snifftests/pom.xml
exo/portal/branches/3.1.5-PLF_REL/testsuite/webuibasedsamples/pom.xml
exo/portal/branches/3.1.5-PLF_REL/web/eXoResources/pom.xml
exo/portal/branches/3.1.5-PLF_REL/web/pom.xml
exo/portal/branches/3.1.5-PLF_REL/web/portal/pom.xml
exo/portal/branches/3.1.5-PLF_REL/web/rest/pom.xml
exo/portal/branches/3.1.5-PLF_REL/webui/core/pom.xml
exo/portal/branches/3.1.5-PLF_REL/webui/eXo/pom.xml
exo/portal/branches/3.1.5-PLF_REL/webui/pom.xml
exo/portal/branches/3.1.5-PLF_REL/webui/portal/pom.xml
Log:
[maven-release-plugin] [SWF-580]prepare release 3.1.5-PLF
Modified: exo/portal/branches/3.1.5-PLF_REL/component/application-registry/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/application-registry/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/component/application-registry/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/common/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/common/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/component/common/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.common</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/dashboard/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/dashboard/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/component/dashboard/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/identity/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/identity/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/component/identity/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/management/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/management/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/component/management/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/pc/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/pc/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/component/pc/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/component/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<artifactId>exo.portal.component</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/portal/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/portal/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/component/portal/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/resources/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/resources/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/component/resources/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/scripting/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/scripting/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/component/scripting/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/test/core/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/test/core/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/component/test/core/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/test/jcr/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/test/jcr/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/component/test/jcr/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/test/organization/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/test/organization/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/component/test/organization/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/test/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/test/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/component/test/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/web/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/web/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/component/web/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/wsrp/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/wsrp/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/component/wsrp/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/component/xml-parser/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/component/xml-parser/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/component/xml-parser/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/docs/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/docs/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/docs/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<groupId>org.gatein.doc</groupId>
Modified: exo/portal/branches/3.1.5-PLF_REL/docs/reference-guide/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/docs/reference-guide/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/docs/reference-guide/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.doc</groupId>
<artifactId>docs-aggregator</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<groupId>org.gatein.doc</groupId>
Modified: exo/portal/branches/3.1.5-PLF_REL/docs/user-guide/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/docs/user-guide/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/docs/user-guide/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.doc</groupId>
<artifactId>docs-aggregator</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<artifactId>gatein-user-guide-en</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/extension/config/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/extension/config/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/extension/config/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/extension/ear/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/extension/ear/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/extension/ear/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,23 +37,23 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.config</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.jar</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.war</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
<type>war</type>
</dependency>
</dependencies>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/extension/jar/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/extension/jar/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/extension/jar/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/extension/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/extension/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/extension/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<artifactId>exo.portal.sample.extension.root</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/extension/war/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/extension/war/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/extension/war/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<artifactId>exo.portal.sample</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/portal/config/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/portal/config/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/portal/config/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/portal/ear/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/portal/ear/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/portal/ear/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,29 +37,29 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.config</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.jar</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.war</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.rest-war</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
<type>war</type>
</dependency>
</dependencies>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/portal/jar/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/portal/jar/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/portal/jar/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/portal/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/portal/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/portal/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<artifactId>exo.portal.sample.portal.root</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/portal/rest-war/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/portal/rest-war/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/portal/rest-war/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/portal/war/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/portal/war/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/portal/war/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/portlets/jsfhellouser/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/portlets/jsfhellouser/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/portlets/jsfhellouser/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<artifactId>gatein-jsf-hellouser</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/portlets/jsphellouser/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/portlets/jsphellouser/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/portlets/jsphellouser/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<artifactId>gatein-jsp-hellouser</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/portlets/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/portlets/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/portlets/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/portlets/simplesthelloworld/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/portlets/simplesthelloworld/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/portlets/simplesthelloworld/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<artifactId>gatein-simplest-helloworld</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/portlets/struts-jpetstore/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/portlets/struts-jpetstore/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/portlets/struts-jpetstore/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<artifactId>struts-jpetstore</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/skins/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/skins/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/skins/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<groupId>org.gatein.portal.examples.skins</groupId>
Modified: exo/portal/branches/3.1.5-PLF_REL/examples/skins/simpleskin/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/examples/skins/simpleskin/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/examples/skins/simpleskin/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.portal.examples.skins</groupId>
<artifactId>parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<artifactId>gatein-sample-skin</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/gadgets/core/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/gadgets/core/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/gadgets/core/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -14,7 +14,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<artifactId>exo.portal.gadgets-core</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/gadgets/eXoGadgets/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/gadgets/eXoGadgets/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/gadgets/eXoGadgets/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/gadgets/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/gadgets/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/gadgets/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<artifactId>exo.portal.gadgets</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/gadgets/server/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/gadgets/server/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/gadgets/server/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<artifactId>exo.portal.gadgets-server</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/packaging/module/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/packaging/module/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/packaging/module/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/packaging/pkg/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/packaging/pkg/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/packaging/pkg/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -67,19 +67,19 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.module</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
<type>js</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.product</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
<type>js</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss.patch-ear</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</dependency>
<!-- Missing packaging dependencies -->
Modified: exo/portal/branches/3.1.5-PLF_REL/packaging/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/packaging/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/packaging/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/packaging/product/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/packaging/product/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/packaging/product/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/packaging/reports/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/packaging/reports/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/packaging/reports/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -31,7 +31,7 @@
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
<packaging>pom</packaging>
<name>GateIn - Portal</name>
@@ -101,9 +101,9 @@
</distributionManagement>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/exo/portal/branches/3.1.5-P...</connection>
- <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/exo/portal/branches/3.1.5-PLF_REL</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/exo/portal/branches/3.1.5-PLF_REL</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/exo/portal/tags/3.1.5-PLF</connection>
+ <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/exo/portal/tags/3.1.5-PLF</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/exo/portal/tags/3.1.5-PLF</url>
</scm>
<modules>
@@ -341,110 +341,110 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.pc</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.application-registry</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.xml-parser</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.scripting</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.dashboard</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.core</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets-core</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
<type>test-jar</type>
</dependency>
Modified: exo/portal/branches/3.1.5-PLF_REL/portlet/dashboard/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/portlet/dashboard/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/portlet/dashboard/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/portlet/exoadmin/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/portlet/exoadmin/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/portlet/exoadmin/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/portlet/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/portlet/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/portlet/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<artifactId>exo.portal.portlet</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/portlet/web/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/portlet/web/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/portlet/web/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/server/jboss/patch-ear/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/server/jboss/patch-ear/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/server/jboss/patch-ear/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/server/jboss/plugin/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/server/jboss/plugin/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/server/jboss/plugin/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/server/jboss/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/server/jboss/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/server/jboss/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<artifactId>exo.portal.server.jboss</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/server/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/server/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/server/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<artifactId>exo.portal.server</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/server/tomcat/patch/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/server/tomcat/patch/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/server/tomcat/patch/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.tomcat</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/server/tomcat/plugin/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/server/tomcat/plugin/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/server/tomcat/plugin/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.tomcat</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/server/tomcat/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/server/tomcat/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/server/tomcat/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<artifactId>exo.portal.server.tomcat</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/starter/ear/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/starter/ear/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/starter/ear/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.starter.war</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
<type>war</type>
</dependency>
</dependencies>
Modified: exo/portal/branches/3.1.5-PLF_REL/starter/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/starter/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/starter/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<artifactId>exo.portal.starter.root</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/starter/war/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/starter/war/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/starter/war/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/testsuite/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/testsuite/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/testsuite/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<artifactId>exo.portal.testsuite</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/testsuite/selenium-snifftests/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/testsuite/selenium-snifftests/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/testsuite/selenium-snifftests/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<artifactId>exo.portal.selenium.snifftests</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/testsuite/webuibasedsamples/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/testsuite/webuibasedsamples/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/testsuite/webuibasedsamples/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<artifactId>exo.webui.based.samples</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/web/eXoResources/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/web/eXoResources/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/web/eXoResources/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/web/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/web/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/web/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<artifactId>exo.portal.web</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/web/portal/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/web/portal/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/web/portal/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/web/rest/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/web/rest/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/web/rest/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/webui/core/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/webui/core/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/webui/core/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/webui/eXo/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/webui/eXo/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/webui/eXo/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.5-PLF_REL/webui/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/webui/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/webui/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<artifactId>exo.portal.webui</artifactId>
Modified: exo/portal/branches/3.1.5-PLF_REL/webui/portal/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/webui/portal/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
+++ exo/portal/branches/3.1.5-PLF_REL/webui/portal/pom.xml 2010-10-26 10:21:24 UTC (rev 4838)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.1.5-PLF-SNAPSHOT</version>
+ <version>3.1.5-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
14 years, 2 months
gatein SVN: r4837 - exo/portal/branches/3.1.5-PLF_REL.
by do-not-reply@jboss.org
Author: aheritier
Date: 2010-10-26 06:09:48 -0400 (Tue, 26 Oct 2010)
New Revision: 4837
Modified:
exo/portal/branches/3.1.5-PLF_REL/pom.xml
Log:
[SWF-580] Upgrade dependencies to latest releases
Modified: exo/portal/branches/3.1.5-PLF_REL/pom.xml
===================================================================
--- exo/portal/branches/3.1.5-PLF_REL/pom.xml 2010-10-26 07:21:09 UTC (rev 4836)
+++ exo/portal/branches/3.1.5-PLF_REL/pom.xml 2010-10-26 10:09:48 UTC (rev 4837)
@@ -37,10 +37,10 @@
<name>GateIn - Portal</name>
<properties>
- <org.exoplatform.kernel.version>2.2.5-GA-SNAPSHOT</org.exoplatform.kernel.version>
- <org.exoplatform.core.version>2.3.5-GA-SNAPSHOT</org.exoplatform.core.version>
- <org.exoplatform.ws.version>2.1.5-GA-SNAPSHOT</org.exoplatform.ws.version>
- <org.exoplatform.jcr.version>1.12.5-GA-SNAPSHOT</org.exoplatform.jcr.version>
+ <org.exoplatform.kernel.version>2.2.5-GA</org.exoplatform.kernel.version>
+ <org.exoplatform.core.version>2.3.5-GA</org.exoplatform.core.version>
+ <org.exoplatform.ws.version>2.1.5-GA</org.exoplatform.ws.version>
+ <org.exoplatform.jcr.version>1.12.5-GA</org.exoplatform.jcr.version>
<org.jibx.version>1.2.1</org.jibx.version>
<org.shindig.version>1.0-r790473-Patch04</org.shindig.version>
<nl.captcha.simplecaptcha.version>1.1.1-GA-Patch01</nl.captcha.simplecaptcha.version>
14 years, 2 months
gatein SVN: r4836 - epp/docs/branches/EPP_5_1_Branch/Release_Notes/en-US.
by do-not-reply@jboss.org
Author: smumford
Date: 2010-10-26 03:21:09 -0400 (Tue, 26 Oct 2010)
New Revision: 4836
Added:
epp/docs/branches/EPP_5_1_Branch/Release_Notes/en-US/5.1_Release_Notes.ent
epp/docs/branches/EPP_5_1_Branch/Release_Notes/en-US/5.1_Release_Notes.xml
Removed:
epp/docs/branches/EPP_5_1_Branch/Release_Notes/en-US/Release_Notes.ent
epp/docs/branches/EPP_5_1_Branch/Release_Notes/en-US/Release_Notes.xml
Log:
Minor changes and version updates. Began modifying Release Notes for 5.1
Added: epp/docs/branches/EPP_5_1_Branch/Release_Notes/en-US/5.1_Release_Notes.ent
===================================================================
--- epp/docs/branches/EPP_5_1_Branch/Release_Notes/en-US/5.1_Release_Notes.ent (rev 0)
+++ epp/docs/branches/EPP_5_1_Branch/Release_Notes/en-US/5.1_Release_Notes.ent 2010-10-26 07:21:09 UTC (rev 4836)
@@ -0,0 +1,4 @@
+<!ENTITY HOLDER "Red Hat, Inc">
+<!ENTITY YEAR "2010">
+<!ENTITY PRODUCT "JBoss Enterprise Portal Platform">
+<!ENTITY VERSION "5.1">
Added: epp/docs/branches/EPP_5_1_Branch/Release_Notes/en-US/5.1_Release_Notes.xml
===================================================================
--- epp/docs/branches/EPP_5_1_Branch/Release_Notes/en-US/5.1_Release_Notes.xml (rev 0)
+++ epp/docs/branches/EPP_5_1_Branch/Release_Notes/en-US/5.1_Release_Notes.xml 2010-10-26 07:21:09 UTC (rev 4836)
@@ -0,0 +1,365 @@
+<?xml version='1.0' encoding='utf-8' ?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
+]>
+<article id="JBEPP_5_0_Release_Notes">
+ <xi:include href="Book_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <section id="sect-Release_Notes-Introduction">
+ <title>Introduction</title>
+ <para>
+ &PRODUCT; offers an intuitive, easy to manage user interface and a proven core infrastructure to enable organizations to quickly build dynamic web sites in a highly reusable way. By bringing the principals of Open Choice to the presentation layer, &PRODUCT; &VERSION; maximizes existing skills and technology investments.
+ </para>
+ <para>
+ By integrating proven open source frameworks such as JBoss Seam, Hibernate, Tomcat and JBoss Cache &PRODUCT; takes advantage of innovations in the open source community. As well, &PRODUCT; version &VERSION; is fully tested and supported by Red Hat, and is certified to work on many leading enterprise hardware and software products.
+ </para>
+ </section>
+
+<!-- <section>
+ <title>New Features</title>
+ <variablelist>
+
+ </variablelist>
+ </section> -->
+
+ <section id="sect-Release_Notes-Architecture_of_PRODUCT_VERSION">
+ <title>Component Versions</title>
+ <para>
+ This section details the versions of the components which create the JBoss Enterprise Portal Platform 5.1.
+ </para>
+ <table>
+ <title>JBoss Enterprise Portal Platform Component Versions</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>
+ Component
+ </entry>
+ <entry>
+ Version
+ </entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>
+ JBoss Enterprise Application Platform
+ </entry>
+ <entry>
+ 5.0.1-GA
+ </entry>
+ </row>
+ <row>
+ <entry>
+ JBoss Cache
+ </entry>
+ <entry>
+ 3.2.4
+ </entry>
+ </row>
+ <row>
+ <entry>
+ GateIn Common
+ </entry>
+ <entry>
+ 2.0.3-GA
+ </entry>
+ </row>
+ <row>
+ <entry>
+ GateIn WCI
+ </entry>
+ <entry>
+ 2.0.2-GA
+ </entry>
+ </row>
+ <row>
+ <entry>
+ GateIn PC
+ </entry>
+ <entry>
+ 2.2.0-CR01
+ </entry>
+ </row>
+ <row>
+ <entry>
+ GateIn WSRP
+ </entry>
+ <entry>
+ 2.0.0-Beta05
+ </entry>
+ </row>
+ <row>
+ <entry>
+ GateIn MOP
+ </entry>
+ <entry>
+ 1.0.3-GA
+ </entry>
+ </row>
+ <row>
+ <entry>
+ GateIn SSO
+ </entry>
+ <entry>
+ 1.0.0-epp
+ </entry>
+ </row>
+ <row>
+ <entry>
+ PicketLink IDM
+ </entry>
+ <entry>
+ 1.1.6.GA
+ </entry>
+ </row>
+ <row>
+ <entry>
+ eXo JCR
+ </entry>
+ <entry>
+ 1.12.5-GA
+ </entry>
+ </row>
+ <row>
+ <entry>
+ eXo Kernel
+ </entry>
+ <entry>
+ 2.2.5-GA
+ </entry>
+ </row>
+ <row>
+ <entry>
+ Portlet Bridge
+ </entry>
+ <entry>
+ 2.1.0-CR01
+ </entry>
+ </row>
+ <row>
+ <entry>
+ Chromattic
+ </entry>
+ <entry>
+ 1.0.3
+ </entry>
+ </row>
+ <row>
+ <entry>
+ Apache Shindig
+ </entry>
+ <entry>
+ 1.0-r790473-Patch04
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ </section>
+
+ <section id="sect-Release_Notes-Certified_Environments">
+ <title>Installation</title>
+ <para>
+ The JBoss Enterprise Portal Platform Installation Guide contains details of software and hardware requirements as well as detailed installation instructions.
+ </para>
+ <para>
+ The Installation Guide can be found online at <ulink type="http" url="http://docs.redhat.com/docs/">http://docs.redhat.com/docs/</ulink>.
+ </para>
+ </section>
+
+ <section id="Issues-fixed-in-this-release">
+ <title>
+ Issues fixed in this release
+ </title>
+<!-- Commented out for current release. Retaining the text to be reused in future release drafts. -->
+ <warning>
+ <title>Draft</title>
+ <para>
+ These entries are drafts. They have been drawn from comments and associated JIRAs from the list at:
+ <ulink type="http" url="https://jira.jboss.org/secure/IssueNavigator.jspa?mode=hide&amp;reque..."></ulink>.
+ </para>
+ <para>
+ <emphasis role="bold">They are likely not technically correct at the moment</emphasis>, but they will serve as a basis and will be corrected in subsequent iterations after technical and QE reviews.
+ </para>
+ </warning>
+ <para>
+ Following is a list of issues fixed in this release:
+ </para>
+ <variablelist>
+ <varlistentry>
+ <term><ulink type="http" url="https://jira.jboss.org/browse/JBEPP-XYZ"></ulink></term>
+ <listitem>
+ <para>
+ JIRA description.
+ </para>
+ <para>
+ Refer to the source commit logs in the above JIRA for specific code changes in this fix.
+ </para>
+ </listitem>
+ </varlistentry>
+
+ </variablelist>
+ </section>
+
+ <section id="sect-Release_Notes-_Known_Issues_with_this_release_">
+ <title> Known Issues with this release </title>
+ <section id="sect-Release_Notes-_Known_Issues_with_this_release_-General_Known_Issues">
+ <title>General Known Issues</title>
+ <para>
+ A list of general issues in this release can be found at:
+ </para>
+ <para>
+ <ulink type="http" url="https://jira.jboss.org/secure/IssueNavigator.jspa?mode=hide&requestId..."></ulink>
+ </para>
+ </section>
+
+<!-- <section>
+ <title>Security Issues</title>
+ <variablelist>
+ <varlistentry>
+ <term>No issues</term>
+ <listitem>
+ <para>
+ Any security related JIRA issues that need to go in here? JIRA says no.
+ </para>
+ <para>
+ If there aren't any JIRAs that need to be documented here, I'll remove this section.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </section>-->
+
+ </section>
+
+ <section>
+ <title>Migration from Enterprise Portal Platform 4.3</title>
+ <para>
+ Enterprise Portal Platform 5 is based upon an entirely new core architecture and is not backwards compatible with Enterprise Portal Platform 4.3.
+ </para>
+ <para>
+ As a value added part of an enterprise subscription the JBoss Portal team is working to develop a set of migration utilities (which may take the form of documentation, guides and/or scripts) to assist customers in migration. We intend to release these utilities in a future revision of JBoss Enterprise Portal Platform 5.x.
+ </para>
+ <para>
+ For customers seeking to begin a migration prior to the availability of any Red Hat provided migration utilities, please contact Red Hat JBoss Support for migration advice. Red Hat JBoss support will be the main communication channel for migration knowledge as it is developed.
+ </para>
+ <para>
+ Red Hat JBoss Customer Support can be accessed <ulink type="http" url="https://www.redhat.com/apps/support/">here</ulink>.
+ </para>
+ </section>
+
+ <section>
+ <title>Site Publisher</title>
+ <para>
+ The &PRODUCT; 5.1 release includes an optional web content authoring system add-on called Site Publisher. This add-on is available for download from the <ulink type="http" url="https://support.redhat.com/jbossnetwork/restricted/softwareDetail.html?so...">Red Hat Customer Support Portal</ulink>.
+ </para>
+ <para>
+ Site Publisher provides many additional features for organizations looking to enable line of business resources to directly manage sites, pages and content within the context of the portal versus through integration with an external web content management system.
+ </para>
+ <para>
+ Information about this extension is available at <ulink type="http" url="http://docs.redhat.com/docs/en-US/JBoss_Site_Publisher/index.html"></ulink>
+ </para>
+ </section>
+ </section>
+
+ <section id="sect-Release_Notes-_Documentation_">
+ <title> Documentation </title>
+ <para>
+ Visit <ulink type="http" url="http://docs.redhat.com/docs/en-US/index.html">http://docs.redhat.com/docs/en-US/index.html</ulink> for further documentation regarding &PRODUCT;.
+ </para>
+ <para>
+ This documentation includes:
+ </para>
+ <para>
+ <variablelist>
+ <varlistentry>
+ <term>Installation Guide</term>
+ <listitem>
+ <para>
+ This document explains how to install and verify the installation of &PRODUCT; using different installation methods.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>User Guide</term>
+ <listitem>
+ <para>
+ This document provides an easy to follow guide to the functions and options available in &PRODUCT;. It is intended to be accessible and useful to both experienced and novice portal users.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>Reference Guide</term>
+ <listitem>
+ <para>
+ This is a high-level usage document. It deals with more advanced topics than the Installation and User guides, adding new content or taking concepts discussed in the earlier documents further. It aims to provide supporting documentation for advanced users of &PRODUCT;. Its primary focus is on advanced use of the product and it assumes an intermediate or advanced knowledge of the technology and terms.
+ </para>
+
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </para>
+ <para>
+ The online documentation will be updated as necessary so be sure to check the site regularly, especially when a new version of &PRODUCT; is released.
+ </para>
+ </section>
+
+ <section id="sect-Release_Notes-Product_Support_and_License_Website_Links">
+ <title> Product Support and License Website Links </title>
+ <formalpara>
+ <title>Red Hat JBoss Customer Support</title>
+ <para>
+ <ulink type="http" url="https://access.redhat.com/home "></ulink>
+ </para>
+ </formalpara>
+ <formalpara>
+ <title>JBoss Customer Suport Portal Downloads</title>
+ <para>
+ <ulink type="http" url="https://access.redhat.com/jbossnetwork/restricted/listSoftware.html?produ..."></ulink>
+ </para>
+ </formalpara>
+ <formalpara>
+ <title>Support Processes</title>
+ <para>
+ <ulink url="https://access.redhat.com/support/policy/support_process.html"></ulink>
+ </para>
+ </formalpara>
+ <formalpara>
+ <title> Production Support Scope of Coverage </title>
+ <para>
+ <ulink url="https://access.redhat.com/support/offerings/production/soc.html"></ulink>
+ </para>
+ </formalpara>
+ <formalpara>
+ <title> Production Support Service Level Agreement </title>
+ <para>
+ <ulink url="https://access.redhat.com/support/offerings/production/sla.html"></ulink>
+ </para>
+ </formalpara>
+ <formalpara>
+ <title> Developer Support Scope of Coverage</title>
+ <para>
+ <ulink url="https://access.redhat.com/support/offerings/developer/soc.html"></ulink>
+ </para>
+ </formalpara>
+ <formalpara>
+ <title> Developer Support Service Level Agreement</title>
+ <para>
+ <ulink url="https://access.redhat.com/support/offerings/developer/sla.html"></ulink>
+ </para>
+ </formalpara>
+ <formalpara>
+ <title> Product Update and Support Policy</title>
+ <para>
+ <ulink url="https://access.redhat.com/support/policy/updates/jboss_notes/"></ulink>
+ </para>
+ </formalpara>
+ <formalpara>
+ <title> JBoss End User License Agreement</title>
+ <para>
+ <ulink url="http://www.redhat.com/licenses/jboss_eula.html"></ulink>
+ </para>
+ </formalpara>
+ </section>
+
+ <xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+</article>
Deleted: epp/docs/branches/EPP_5_1_Branch/Release_Notes/en-US/Release_Notes.ent
===================================================================
--- epp/docs/branches/EPP_5_1_Branch/Release_Notes/en-US/Release_Notes.ent 2010-10-26 07:13:53 UTC (rev 4835)
+++ epp/docs/branches/EPP_5_1_Branch/Release_Notes/en-US/Release_Notes.ent 2010-10-26 07:21:09 UTC (rev 4836)
@@ -1,4 +0,0 @@
-<!ENTITY HOLDER "Red Hat, Inc">
-<!ENTITY YEAR "2010">
-<!ENTITY PRODUCT "JBoss Enterprise Portal Platform">
-<!ENTITY VERSION "5.1">
Deleted: epp/docs/branches/EPP_5_1_Branch/Release_Notes/en-US/Release_Notes.xml
===================================================================
--- epp/docs/branches/EPP_5_1_Branch/Release_Notes/en-US/Release_Notes.xml 2010-10-26 07:13:53 UTC (rev 4835)
+++ epp/docs/branches/EPP_5_1_Branch/Release_Notes/en-US/Release_Notes.xml 2010-10-26 07:21:09 UTC (rev 4836)
@@ -1,370 +0,0 @@
-<?xml version='1.0' encoding='utf-8' ?>
-<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
-]>
-<article id="JBEPP_5_0_Release_Notes">
- <xi:include href="Book_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <section id="sect-Release_Notes-Introduction">
- <title>Introduction</title>
- <para>
- &PRODUCT; offers an intuitive, easy to manage user interface and a proven core infrastructure to enable organizations to quickly build dynamic web sites in a highly reusable way. By bringing the principals of Open Choice to the presentation layer, &PRODUCT; &VERSION; maximizes existing skills and technology investments.
- </para>
- <para>
- By integrating proven open source frameworks such as JBoss Seam, Hibernate, Tomcat and JBoss Cache &PRODUCT; takes advantage of innovations in the open source community. As well, &PRODUCT; version &VERSION; is fully tested and supported by Red Hat, and is certified to work on many leading enterprise hardware and software products.
- </para>
- </section>
-
-<!-- <section>
- <title>New Features</title>
- <variablelist>
-
- </variablelist>
- </section> -->
-
- <section id="sect-Release_Notes-Architecture_of_PRODUCT_VERSION">
- <title>Component Versions</title>
- <para>
- This section details the versions of the components which create the JBoss Enterprise Portal Platform 5.1.
- </para>
- <table>
- <title>JBoss Enterprise Portal Platform Component Versions</title>
- <tgroup cols="2">
- <thead>
- <row>
- <entry>
- Component
- </entry>
- <entry>
- Version
- </entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry>
- JBoss Enterprise Application Platform
- </entry>
- <entry>
- 5.0.1-GA
- </entry>
- </row>
- <row>
- <entry>
- JBoss Cache
- </entry>
- <entry>
- 3.2.4
- </entry>
- </row>
- <row>
- <entry>
- GateIn Common
- </entry>
- <entry>
- 2.0.3-GA
- </entry>
- </row>
- <row>
- <entry>
- GateIn WCI
- </entry>
- <entry>
- 2.0.2-GA
- </entry>
- </row>
- <row>
- <entry>
- GateIn PC
- </entry>
- <entry>
- 2.2.0-CR01
- </entry>
- </row>
- <row>
- <entry>
- GateIn WSRP
- </entry>
- <entry>
- 2.0.0-Beta05
- </entry>
- </row>
- <row>
- <entry>
- GateIn MOP
- </entry>
- <entry>
- 1.0.3-GA
- </entry>
- </row>
- <row>
- <entry>
- GateIn SSO
- </entry>
- <entry>
- 1.0.0-epp
- </entry>
- </row>
- <row>
- <entry>
- PicketLink IDM
- </entry>
- <entry>
- 1.1.6.GA
- </entry>
- </row>
- <row>
- <entry>
- eXo JCR
- </entry>
- <entry>
- 1.12.5-GA
- </entry>
- </row>
- <row>
- <entry>
- eXo Kernel
- </entry>
- <entry>
- 2.2.5-GA
- </entry>
- </row>
- <row>
- <entry>
- Portlet Bridge
- </entry>
- <entry>
- 2.1.0-CR01
- </entry>
- </row>
- <row>
- <entry>
- Chromattic
- </entry>
- <entry>
- 1.0.3
- </entry>
- </row>
- <row>
- <entry>
- Apache Shindig
- </entry>
- <entry>
- 1.0-r790473-Patch04
- </entry>
- </row>
- </tbody>
- </tgroup>
- </table>
- </section>
-
- <section id="sect-Release_Notes-Certified_Environments">
- <title>Installation</title>
- <para>
- The JBoss Enterprise Portal Platform Installation Guide contains details of software and hardware requirements as well as detailed installation instructions.
- </para>
- <para>
- The Installation Guide can be found online at <ulink type="http" url="http://docs.redhat.com/docs/">http://docs.redhat.com/docs/</ulink>.
- </para>
- </section>
-
- <section id="Issues-fixed-in-this-release">
- <title>
- Issues fixed in this release
- </title>
-<!-- Commented out for current release. Retaining the text to be reused in future release drafts. -->
- <warning>
- <title>Draft</title>
- <para>
- These entries are drafts. They have been drawn from comments and associated JIRAs from the list at:
- <ulink type="http" url="https://jira.jboss.org/secure/IssueNavigator.jspa?mode=hide&amp;reque..."></ulink>.
- </para>
- <para>
- <emphasis role="bold">They are likely not technically correct at the moment</emphasis>, but they will serve as a basis and will be corrected in subsequent iterations after technical and QE reviews.
- </para>
- </warning>
- <para>
- Following is a list of issues fixed in this release:
- </para>
- <variablelist>
- <varlistentry>
- <term><ulink type="http" url="https://jira.jboss.org/browse/JBEPP-XYZ"></ulink></term>
- <listitem>
- <para>
- JIRA description.
- </para>
- <para>
- Refer to the source commit logs in the above JIRA for specific code changes in this fix.
- </para>
- </listitem>
- </varlistentry>
-
- </variablelist>
- </section>
-
- <section id="sect-Release_Notes-_Known_Issues_with_this_release_">
- <title> Known Issues with this release </title>
- <section id="sect-Release_Notes-_Known_Issues_with_this_release_-General_Known_Issues">
- <title>General Known Issues</title>
- <para>
- A list of general issues in this release can be found at:
- </para>
- <para>
- <ulink type="http" url="https://jira.jboss.org/secure/IssueNavigator.jspa?mode=hide&requestId..."></ulink>
- </para>
- </section>
-
-<!-- <section>
- <title>Security Issues</title>
- <variablelist>
- <varlistentry>
- <term>No issues</term>
- <listitem>
- <para>
- Any security related JIRA issues that need to go in here? JIRA says no.
- </para>
- <para>
- If there aren't any JIRAs that need to be documented here, I'll remove this section.
- </para>
- </listitem>
- </varlistentry>
- </variablelist>
- </section>-->
-
- </section>
-
- <section>
- <title>Migration from Enterprise Portal Platform 4.3</title>
- <para>
- Enterprise Portal Platform 5 is based upon an entirely new core architecture and is not backwards compatible with Enterprise Portal Platform 4.3.
- </para>
- <para>
- As a value added part of an enterprise subscription the JBoss Portal team is working to develop a set of migration utilities (which may take the form of documentation, guides and/or scripts) to assist customers in migration. We intend to release these utilities in a future revision of JBoss Enterprise Portal Platform 5.x.
- </para>
- <para>
- For customers seeking to begin a migration prior to the availability of any Red Hat provided migration utilities, please contact Red Hat JBoss Support for migration advice. Red Hat JBoss support will be the main communication channel for migration knowledge as it is developed.
- </para>
- <para>
- Red Hat JBoss Customer Support can be accessed <ulink type="http" url="https://www.redhat.com/apps/support/">here</ulink>.
- </para>
- </section>
-
- <section id="Tech-previews">
- <title>Technology Previews</title>
- <warning>
- <title>Support</title>
- <para>
- Technology Preview features are not fully supported under Red Hat subscription level agreements (SLAs), may not be functionally complete, and are not intended for production use. However, these features provide early access to upcoming product innovations, enabling customers to test functionality and provide feedback during the development process. As Red Hat considers making future iterations of Technology Preview features generally available, we will provide commercially reasonable efforts to resolve any reported issues that customers experience when using these features.
- </para>
- </warning>
- <section>
- <title>Site Publisher</title>
- <para>
- &PRODUCT; 5.1 will include an optional web content authoring system add-on called Site Publisher. A technical preview is available for download from the <ulink type="http" url="https://support.redhat.com/jbossnetwork/restricted/softwareDetail.html?so...">Red Hat Customer Support Portal</ulink>.
- </para>
- <para>
- Site Publisher provides many additional features for organizations looking to enable line of business resources to directly manage sites, pages and content within the context of the portal versus through integration with an external web content management system.
- </para>
- </section>
- </section>
-
- <section id="sect-Release_Notes-_Documentation_">
- <title> Documentation </title>
- <para>
- Visit <ulink type="http" url="http://docs.redhat.com/docs/en-US/index.html">http://docs.redhat.com/docs/en-US/index.html</ulink> for further documentation regarding &PRODUCT;.
- </para>
- <para>
- This documentation includes:
- </para>
- <para>
- <variablelist>
- <varlistentry>
- <term>Installation Guide</term>
- <listitem>
- <para>
- This document explains how to install and verify the installation of &PRODUCT; using different installation methods.
- </para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>User Guide</term>
- <listitem>
- <para>
- This document provides an easy to follow guide to the functions and options available in &PRODUCT;. It is intended to be accessible and useful to both experienced and novice portal users.
- </para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Reference Guide</term>
- <listitem>
- <para>
- This is a high-level usage document. It deals with more advanced topics than the Installation and User guides, adding new content or taking concepts discussed in the earlier documents further. It aims to provide supporting documentation for advanced users of &PRODUCT;. Its primary focus is on advanced use of the product and it assumes an intermediate or advanced knowledge of the technology and terms.
- </para>
-
- </listitem>
- </varlistentry>
- </variablelist>
- </para>
- <para>
- The online documentation will be updated as necessary so be sure to check the site regularly, especially when a new version of &PRODUCT; is released.
- </para>
- </section>
-
- <section id="sect-Release_Notes-Product_Support_and_License_Website_Links">
- <title> Product Support and License Website Links </title>
- <formalpara>
- <title>Red Hat JBoss Customer Support</title>
- <para>
- <ulink type="http" url="https://access.redhat.com/home "></ulink>
- </para>
- </formalpara>
- <formalpara>
- <title>JBoss Customer Suport Portal Downloads</title>
- <para>
- <ulink type="http" url="https://access.redhat.com/jbossnetwork/restricted/listSoftware.html?produ..."></ulink>
- </para>
- </formalpara>
- <formalpara>
- <title>Support Processes</title>
- <para>
- <ulink url="https://access.redhat.com/support/policy/support_process.html"></ulink>
- </para>
- </formalpara>
- <formalpara>
- <title> Production Support Scope of Coverage </title>
- <para>
- <ulink url="https://access.redhat.com/support/offerings/production/soc.html"></ulink>
- </para>
- </formalpara>
- <formalpara>
- <title> Production Support Service Level Agreement </title>
- <para>
- <ulink url="https://access.redhat.com/support/offerings/production/sla.html"></ulink>
- </para>
- </formalpara>
- <formalpara>
- <title> Developer Support Scope of Coverage</title>
- <para>
- <ulink url="https://access.redhat.com/support/offerings/developer/soc.html"></ulink>
- </para>
- </formalpara>
- <formalpara>
- <title> Developer Support Service Level Agreement</title>
- <para>
- <ulink url="https://access.redhat.com/support/offerings/developer/sla.html"></ulink>
- </para>
- </formalpara>
- <formalpara>
- <title> Product Update and Support Policy</title>
- <para>
- <ulink url="https://access.redhat.com/support/policy/updates/jboss_notes/"></ulink>
- </para>
- </formalpara>
- <formalpara>
- <title> JBoss End User License Agreement</title>
- <para>
- <ulink url="http://www.redhat.com/licenses/jboss_eula.html"></ulink>
- </para>
- </formalpara>
- </section>
-
- <xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</article>
14 years, 2 months