gatein SVN: r5473 - components/wsrp/trunk/producer.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2010-12-03 08:01:01 -0500 (Fri, 03 Dec 2010)
New Revision: 5473
Modified:
components/wsrp/trunk/producer/pom.xml
Log:
- Oops, forgot to add mockito dependency. Thanks, Martin!
Modified: components/wsrp/trunk/producer/pom.xml
===================================================================
--- components/wsrp/trunk/producer/pom.xml 2010-12-03 12:42:57 UTC (rev 5472)
+++ components/wsrp/trunk/producer/pom.xml 2010-12-03 13:01:01 UTC (rev 5473)
@@ -92,6 +92,12 @@
<artifactId>slf4j-jdk14</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.mockito</groupId>
+ <artifactId>mockito-core</artifactId>
+ <version>1.8.5</version>
+ <scope>test</scope>
+ </dependency>
</dependencies>
<build>
14 years
gatein SVN: r5472 - epp/examples/branches/EPP_5_1_Branch/portlets/jsfhellouser.
by do-not-reply@jboss.org
Author: thomas.heute(a)jboss.com
Date: 2010-12-03 07:42:57 -0500 (Fri, 03 Dec 2010)
New Revision: 5472
Added:
epp/examples/branches/EPP_5_1_Branch/portlets/jsfhellouser/README.txt
Modified:
epp/examples/branches/EPP_5_1_Branch/portlets/jsfhellouser/pom.xml
Log:
Using EPP binaries
Added: epp/examples/branches/EPP_5_1_Branch/portlets/jsfhellouser/README.txt
===================================================================
--- epp/examples/branches/EPP_5_1_Branch/portlets/jsfhellouser/README.txt (rev 0)
+++ epp/examples/branches/EPP_5_1_Branch/portlets/jsfhellouser/README.txt 2010-12-03 12:42:57 UTC (rev 5472)
@@ -0,0 +1,13 @@
+===========
+JSF example
+===========
+
+To compile and package the example use:
+mvn -DEPP_HOME=/full/path/to/EPP/installation clean install
+
+If you forget to set EPP_HOME the following error message will be shown by Maven:
+ [0] For dependency Dependency {groupId=org.jboss.portletbridge, artifactId=portletbridge-api, version=epp, type=jar}: system-scoped dependency must specify an absolute path systemPath.
+ [1] For dependency Dependency {groupId=org.jboss.portletbridge, artifactId=portletbridge-impl, version=epp, type=jar}: system-scoped dependency must specify an absolute path systemPath.
+
+
+
Modified: epp/examples/branches/EPP_5_1_Branch/portlets/jsfhellouser/pom.xml
===================================================================
--- epp/examples/branches/EPP_5_1_Branch/portlets/jsfhellouser/pom.xml 2010-12-03 12:17:45 UTC (rev 5471)
+++ epp/examples/branches/EPP_5_1_Branch/portlets/jsfhellouser/pom.xml 2010-12-03 12:42:57 UTC (rev 5472)
@@ -3,61 +3,17 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.gatein.portal.examples.portlets</groupId>
- <version>1.0.1-GA-SNAPSHOT</version>
- <artifactId>gatein-jsf-hellouser</artifactId>
+ <artifactId>reactor</artifactId>
+ <packaging>pom</packaging>
+ <version>1.0.0-GA-SNAPSHOT</version>
+ <name>EPP Portlets Examples</name>
- <packaging>war</packaging>
- <name>EPP Portlets Examples - JSF Hello User Portlet</name>
- <description />
+ <modules>
+ <module>idmhelloworld</module>
+ <module>jsfhellouser</module>
+ <module>jsphellouser</module>
+ <module>simplesthelloworld</module>
+ <module>prpapi</module>
+ </modules>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
- <dependencies>
- <dependency>
- <groupId>javax.portlet</groupId>
- <artifactId>portlet-api</artifactId>
- <scope>provided</scope>
- <version>2.0</version>
- </dependency>
-
- <!-- Portlet bridge -->
- <dependency>
- <groupId>org.jboss.portletbridge</groupId>
- <artifactId>portletbridge-api</artifactId>
- <version>2.0.0.FINAL</version>
- </dependency>
-
- <dependency>
- <groupId>org.jboss.portletbridge</groupId>
- <artifactId>portletbridge-impl</artifactId>
- <version>2.0.0.FINAL</version>
- </dependency>
-
- </dependencies>
-
- <repositories>
- <repository>
- <id>JBoss repository</id>
- <url>https://repository.jboss.org/nexus/content/repositories/public/</url>
- <releases>
- <enabled>true</enabled>
- </releases>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
-
- </repositories>
-
</project>
14 years
gatein SVN: r5471 - components/wsrp/trunk.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2010-12-03 07:17:45 -0500 (Fri, 03 Dec 2010)
New Revision: 5471
Modified:
components/wsrp/trunk/UpdateWSRPForGateIn.sh
Log:
- Improved documentation of GATEIN_EAR_HOME environment variable.
Modified: components/wsrp/trunk/UpdateWSRPForGateIn.sh
===================================================================
--- components/wsrp/trunk/UpdateWSRPForGateIn.sh 2010-12-03 11:30:24 UTC (rev 5470)
+++ components/wsrp/trunk/UpdateWSRPForGateIn.sh 2010-12-03 12:17:45 UTC (rev 5471)
@@ -28,7 +28,7 @@
if [ -z "$GATEIN_EAR_HOME" -o ! -d "$GATEIN_EAR_HOME" ]
then
- echo \=\=\> Please set GATEIN_EAR_HOME to point to the repository on your application server that contains gatein.ear
+ echo \=\=\> Please set GATEIN_EAR_HOME to point to the gatein.ear directory of your GateIn installation
exit
fi
echo Using GateIn home at: $GATEIN_EAR_HOME
14 years
gatein SVN: r5470 - in exo/portal/branches/standalone: webui/portal/src/main/java/org/exoplatform/portal/application and 1 other directories.
by do-not-reply@jboss.org
Author: phuong_vu
Date: 2010-12-03 06:30:24 -0500 (Fri, 03 Dec 2010)
New Revision: 5470
Modified:
exo/portal/branches/standalone/web/portal/src/main/webapp/groovy/portal/webui/application/UIGadget.gtmpl
exo/portal/branches/standalone/webui/portal/src/main/java/org/exoplatform/portal/application/StandaloneAppRequestContext.java
exo/portal/branches/standalone/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIGadget.java
exo/portal/branches/standalone/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIStandaloneAppContainer.java
Log:
Add getStandaloneURL() method to UIGadget and fix bug with title: always show the name of the first application
Modified: exo/portal/branches/standalone/web/portal/src/main/webapp/groovy/portal/webui/application/UIGadget.gtmpl
===================================================================
--- exo/portal/branches/standalone/web/portal/src/main/webapp/groovy/portal/webui/application/UIGadget.gtmpl 2010-12-02 19:06:00 UTC (rev 5469)
+++ exo/portal/branches/standalone/web/portal/src/main/webapp/groovy/portal/webui/application/UIGadget.gtmpl 2010-12-03 11:30:24 UTC (rev 5470)
@@ -1,16 +1,10 @@
<%
import org.exoplatform.web.application.JavascriptManager;
- import org.exoplatform.portal.webui.application.GadgetUtil;
- import org.exoplatform.portal.application.PortalRequestContext;
- import javax.servlet.http.HttpSession;
+ import org.exoplatform.portal.webui.application.GadgetUtil;
import org.exoplatform.portal.config.model.PersistentApplicationState;
import org.exoplatform.portal.pom.spi.gadget.Gadget;
- import javax.portlet.PortletRequest;
- import javax.portlet.PortletResponse;
def rcontext = _ctx.getRequestContext();
- def portalRC = rcontext.getParentAppRequestContext();
- HttpSession httpSession = portalRC.getRequest().getSession(true);
JavascriptManager jsmanager = rcontext.getJavascriptManager();
def hostName = GadgetUtil.getRelGadgetServerUrl();
def url = uicomponent.getUrl();
@@ -34,16 +28,8 @@
String unminiTitle = _ctx.appRes("UIGadget.tooltip.Unminimize");
String maxiTitle = _ctx.appRes("UIGadget.tooltip.Maximize");
String unmaxiTitle = _ctx.appRes("UIGadget.tooltip.Unmaximize");
-
- def portletRequest = rcontext.getRequest();
- def scheme = portletRequest.getScheme();
- def serverName = portletRequest.getServerName();
- def port = portletRequest.getServerPort();
- def standaloneURL = scheme + "://" + serverName + ":" + port + rcontext.getPortalContextPath();
- standaloneURL += "/standalone/" + uicomponent.getStorageId();
- def portletResponse = rcontext.getResponse();
- standaloneURL = portletResponse.encodeURL(standaloneURL);
+ def standaloneURL = uicomponent.getStandaloneURL();
%>
<div class="UIGadget" id="$id" style="left: $posX; top: $posY; z-Index: $zIndex; width: 100%" >
<a style="display:none" href="$standaloneURL"></a>
Modified: exo/portal/branches/standalone/webui/portal/src/main/java/org/exoplatform/portal/application/StandaloneAppRequestContext.java
===================================================================
--- exo/portal/branches/standalone/webui/portal/src/main/java/org/exoplatform/portal/application/StandaloneAppRequestContext.java 2010-12-02 19:06:00 UTC (rev 5469)
+++ exo/portal/branches/standalone/webui/portal/src/main/java/org/exoplatform/portal/application/StandaloneAppRequestContext.java 2010-12-03 11:30:24 UTC (rev 5470)
@@ -19,6 +19,7 @@
package org.exoplatform.portal.application;
+import org.exoplatform.portal.webui.application.UIStandaloneAppContainer;
import org.exoplatform.portal.webui.application.UIStandaloneGadget;
import org.exoplatform.portal.webui.workspace.UIStandaloneApplication;
import org.exoplatform.services.log.ExoLogger;
@@ -59,10 +60,10 @@
{
String title = null;
UIApplication uiApp = getUIApplication();
- UIStandaloneGadget aloneGadget = uiApp.findFirstComponentOfType(UIStandaloneGadget.class);
- if (aloneGadget != null)
+ UIStandaloneAppContainer container = uiApp.getChild(UIStandaloneAppContainer.class);
+ if (container != null)
{
- title = aloneGadget.getApplicationName();
+ title = container.getCurrAppName();
}
if (title == null)
Modified: exo/portal/branches/standalone/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIGadget.java
===================================================================
--- exo/portal/branches/standalone/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIGadget.java 2010-12-02 19:06:00 UTC (rev 5469)
+++ exo/portal/branches/standalone/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIGadget.java 2010-12-03 11:30:24 UTC (rev 5470)
@@ -23,6 +23,7 @@
import org.exoplatform.application.gadget.GadgetRegistryService;
import org.exoplatform.commons.utils.PropertyManager;
import org.exoplatform.container.ExoContainerContext;
+import org.exoplatform.portal.application.PortalRequestContext;
import org.exoplatform.portal.config.DataStorage;
import org.exoplatform.portal.config.model.ApplicationState;
import org.exoplatform.portal.config.model.ApplicationType;
@@ -46,6 +47,8 @@
import java.util.Random;
import java.util.UUID;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
/**
* Created by The eXo Platform SAS Author : dang.tung tungcnw(a)gmail.com May 06,
@@ -140,6 +143,18 @@
return storageName;
}
+ public String getStandaloneURL()
+ {
+ PortalRequestContext portalRC = Util.getPortalRequestContext();
+ HttpServletRequest request = portalRC.getRequest();
+ StringBuilder urlBuilder = new StringBuilder(request.getScheme());
+ urlBuilder.append("://").append(request.getServerName()).append(":").append(request.getServerPort());
+ urlBuilder.append(request.getContextPath()).append("/standalone/").append(storageId);
+
+ HttpServletResponse response = portalRC.getResponse();
+ return response.encodeURL(urlBuilder.toString());
+ }
+
public ApplicationState<org.exoplatform.portal.pom.spi.gadget.Gadget> getState()
{
return state;
Modified: exo/portal/branches/standalone/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIStandaloneAppContainer.java
===================================================================
--- exo/portal/branches/standalone/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIStandaloneAppContainer.java 2010-12-02 19:06:00 UTC (rev 5469)
+++ exo/portal/branches/standalone/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIStandaloneAppContainer.java 2010-12-03 11:30:24 UTC (rev 5470)
@@ -57,6 +57,15 @@
return null;
}
+ public String getCurrAppName()
+ {
+ if (currApp != null)
+ {
+ return currApp.getApplicationName();
+ }
+ return null;
+ }
+
public void setCurrStorageId(String storageId) throws Exception
{
//New app, so we reset the lossData status
14 years
gatein SVN: r5469 - in portal/trunk: web/portal/src/main/webapp/WEB-INF/conf/wsrp and 1 other directory.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2010-12-02 14:06:00 -0500 (Thu, 02 Dec 2010)
New Revision: 5469
Modified:
portal/trunk/component/wsrp/src/main/java/org/gatein/portal/wsrp/state/producer/registrations/mapping/RegistrationMapping.java
portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/wsrp/producer-registrations-nodetypes.xml
Log:
- GTNPORTAL-1716: Renamed for consistency.
Modified: portal/trunk/component/wsrp/src/main/java/org/gatein/portal/wsrp/state/producer/registrations/mapping/RegistrationMapping.java
===================================================================
--- portal/trunk/component/wsrp/src/main/java/org/gatein/portal/wsrp/state/producer/registrations/mapping/RegistrationMapping.java 2010-12-02 18:26:50 UTC (rev 5468)
+++ portal/trunk/component/wsrp/src/main/java/org/gatein/portal/wsrp/state/producer/registrations/mapping/RegistrationMapping.java 2010-12-02 19:06:00 UTC (rev 5469)
@@ -65,7 +65,7 @@
public abstract void setRegistrationHandle(String handle);
- @Property(name="portletHandles")
+ @Property(name="portlethandles")
public abstract List<String> getPortletHandles();
public abstract void setPortletHandles(List<String> portletHandles);
Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/wsrp/producer-registrations-nodetypes.xml
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/wsrp/producer-registrations-nodetypes.xml 2010-12-02 18:26:50 UTC (rev 5468)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/wsrp/producer-registrations-nodetypes.xml 2010-12-02 19:06:00 UTC (rev 5469)
@@ -111,7 +111,7 @@
onParentVersion="COPY" protected="false" multiple="false">
<valueConstraints/>
</propertyDefinition>
- <propertyDefinition name="portletHandles" requiredType="String" autoCreated="false" mandatory="false"
+ <propertyDefinition name="portlethandles" requiredType="String" autoCreated="false" mandatory="false"
onParentVersion="COPY" protected="false" multiple="true">
</propertyDefinition>
</propertyDefinitions>
14 years
gatein SVN: r5468 - in components/wsrp/trunk: producer/src/main/java/org/gatein/registration/impl and 4 other directories.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2010-12-02 13:26:50 -0500 (Thu, 02 Dec 2010)
New Revision: 5468
Added:
components/wsrp/trunk/producer/src/test/java/org/gatein/wsrp/producer/WSRPPortletInvokerTestCase.java
Modified:
components/wsrp/trunk/producer/src/main/java/org/gatein/registration/RegistrationManager.java
components/wsrp/trunk/producer/src/main/java/org/gatein/registration/RegistrationPolicy.java
components/wsrp/trunk/producer/src/main/java/org/gatein/registration/RegistrationPortletContextChangeListener.java
components/wsrp/trunk/producer/src/main/java/org/gatein/registration/impl/RegistrationManagerImpl.java
components/wsrp/trunk/producer/src/main/java/org/gatein/registration/policies/RegistrationPolicyWrapper.java
components/wsrp/trunk/producer/src/main/java/org/gatein/wsrp/producer/WSRPPortletInvoker.java
components/wsrp/trunk/producer/src/main/java/org/gatein/wsrp/producer/WSRPProducerImpl.java
components/wsrp/trunk/wsrp-producer-war/src/test/java/org/gatein/wsrp/protocol/v2/PortletManagementTestCase.java
Log:
- GTNWSRP-179: Deactivate WSRPPortletInvoker (and related code for GTNWSRP-72) as it currently doesn't properly manage state. Added associated test case that shows the problem associated with WSRPPortletInvoker when it is active.
- Improved error reporting in WSRPProducerImpl when the invoker cannot find the requested portlet.
Modified: components/wsrp/trunk/producer/src/main/java/org/gatein/registration/RegistrationManager.java
===================================================================
--- components/wsrp/trunk/producer/src/main/java/org/gatein/registration/RegistrationManager.java 2010-12-02 18:14:15 UTC (rev 5467)
+++ components/wsrp/trunk/producer/src/main/java/org/gatein/registration/RegistrationManager.java 2010-12-02 18:26:50 UTC (rev 5468)
@@ -36,7 +36,7 @@
* @version $Revision: 8966 $
* @since 2.6
*/
-public interface RegistrationManager extends RegistrationPropertyChangeListener, RegistrationPolicyChangeListener, RegistrationPortletContextChangeListener
+public interface RegistrationManager extends RegistrationPropertyChangeListener, RegistrationPolicyChangeListener /*, RegistrationPortletContextChangeListener GTNWSRP-72 */
{
RegistrationPolicy getPolicy();
Modified: components/wsrp/trunk/producer/src/main/java/org/gatein/registration/RegistrationPolicy.java
===================================================================
--- components/wsrp/trunk/producer/src/main/java/org/gatein/registration/RegistrationPolicy.java 2010-12-02 18:14:15 UTC (rev 5467)
+++ components/wsrp/trunk/producer/src/main/java/org/gatein/registration/RegistrationPolicy.java 2010-12-02 18:26:50 UTC (rev 5468)
@@ -26,8 +26,6 @@
import org.gatein.wsrp.registration.PropertyDescription;
import javax.xml.namespace.QName;
-
-import java.util.List;
import java.util.Map;
/**
@@ -122,48 +120,53 @@
* @throws RegistrationException if an exception occurred in the Registration service
*/
void validateConsumerGroupName(String groupName, RegistrationManager manager) throws IllegalArgumentException, RegistrationException;
-
+
/**
* Checks if a portlet handle belongs to a specific registration.
- *
+ * GTNWSRP-72
+ *
* @param registration The registration to check
* @param portletHandle The portlet handle to use
* @return True if the registration contains this portlet handle
*/
- boolean checkPortletHandle(Registration registration, String portletHandle);
-
+// boolean checkPortletHandle(Registration registration, String portletHandle);
+
/**
* Adds a Portlet Handle to a Registration
- *
+ * GTNWSRP-72
+ *
* @param registration The registration to use
* @param portletHandle The portletHandle to add
*/
- void addPortletHandle(Registration registration, String portletHandle);
-
+// void addPortletHandle(Registration registration, String portletHandle);
+
/**
* Removes a portlet handle from a specific registration
- *
+ * GTNWSRP-72
+ *
* @param registration The registration to use
* @param portletHandle The portlet handle to remove
*/
- void removePortletHandle(Registration registration, String portletHandle);
-
+// void removePortletHandle(Registration registration, String portletHandle);
+
/**
* Updates the list of currently available portlet handles.
- *
+ * GTNWSRP-72
+ *
* Note: this is not registration specific. This method deals with the situation where
* the producer has a change in the available portlets. The RegistrationPolicy needs to either handle
* the globally available portlets separately or update each registration when this type of change occurs.
- *
+ *
* @param portlets
*/
- void updatePortletHandles(List<String> portlets);
-
+// void updatePortletHandles(List<String> portlets);
+
/**
* Adds a PortletContextChangeListener to the RegistrationPolicy. The PortletContextChangeListener
* will be called whenever the portlet contexts within a registration changes.
- *
+ * GTNWSRP-72
+ *
* @param listener The listener to add
*/
- void addPortletContextChangeListener(RegistrationPortletContextChangeListener listener);
+// void addPortletContextChangeListener(RegistrationPortletContextChangeListener listener);
}
Modified: components/wsrp/trunk/producer/src/main/java/org/gatein/registration/RegistrationPortletContextChangeListener.java
===================================================================
--- components/wsrp/trunk/producer/src/main/java/org/gatein/registration/RegistrationPortletContextChangeListener.java 2010-12-02 18:14:15 UTC (rev 5467)
+++ components/wsrp/trunk/producer/src/main/java/org/gatein/registration/RegistrationPortletContextChangeListener.java 2010-12-02 18:26:50 UTC (rev 5468)
@@ -1,30 +1,30 @@
-/******************************************************************************
- * JBoss, a division of Red Hat *
- * Copyright 2008, Red Hat Middleware, LLC, and individual *
- * contributors as indicated by the @authors tag. See the *
- * copyright.txt in the distribution for a full listing of *
- * individual contributors. *
- * *
- * This is free software; you can redistribute it and/or modify it *
- * under the terms of the GNU Lesser General Public License as *
- * published by the Free Software Foundation; either version 2.1 of *
- * the License, or (at your option) any later version. *
- * *
- * This software is distributed in the hope that it will be useful, *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
- * Lesser General Public License for more details. *
- * *
- * You should have received a copy of the GNU Lesser General Public *
- * License along with this software; if not, write to the Free *
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA *
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org. *
- ******************************************************************************/
+/*
+ * JBoss, a division of Red Hat
+ * Copyright 2010, Red Hat Middleware, LLC, and individual
+ * contributors as indicated by the @authors tag. See the
+ * copyright.txt in the distribution for a full listing of
+ * individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.gatein.registration;
/**
- * Listeners for when the portlet contexts of a registration change.
- *
+ * Listeners for when the portlet contexts of a registration change. GTNWSRP-72
+ *
* @author <a href="mailto:mwringe@redhat.com">Matt Wringe</a>
* @version $Revision$
*/
Modified: components/wsrp/trunk/producer/src/main/java/org/gatein/registration/impl/RegistrationManagerImpl.java
===================================================================
--- components/wsrp/trunk/producer/src/main/java/org/gatein/registration/impl/RegistrationManagerImpl.java 2010-12-02 18:14:15 UTC (rev 5467)
+++ components/wsrp/trunk/producer/src/main/java/org/gatein/registration/impl/RegistrationManagerImpl.java 2010-12-02 18:26:50 UTC (rev 5468)
@@ -377,10 +377,11 @@
*/
public void policyUpdatedTo(RegistrationPolicy policy)
{
- policy.addPortletContextChangeListener(this);
+// policy.addPortletContextChangeListener(this); // GTNWSRP-72
setPolicy(policy);
}
+ // GTNWSRP-72
public void portletContextsHaveChanged(Registration registration)
{
persistenceManager.saveChangesTo(registration);
Modified: components/wsrp/trunk/producer/src/main/java/org/gatein/registration/policies/RegistrationPolicyWrapper.java
===================================================================
--- components/wsrp/trunk/producer/src/main/java/org/gatein/registration/policies/RegistrationPolicyWrapper.java 2010-12-02 18:14:15 UTC (rev 5467)
+++ components/wsrp/trunk/producer/src/main/java/org/gatein/registration/policies/RegistrationPolicyWrapper.java 2010-12-02 18:26:50 UTC (rev 5468)
@@ -25,16 +25,12 @@
import org.gatein.common.util.ParameterValidation;
import org.gatein.registration.InvalidConsumerDataException;
-import org.gatein.registration.Registration;
import org.gatein.registration.RegistrationException;
import org.gatein.registration.RegistrationManager;
import org.gatein.registration.RegistrationPolicy;
-import org.gatein.registration.RegistrationPortletContextChangeListener;
import org.gatein.wsrp.registration.PropertyDescription;
import javax.xml.namespace.QName;
-
-import java.util.List;
import java.util.Map;
/**
@@ -103,6 +99,7 @@
return consumerName;
}
+ /* GTNWSRP-72
public void addPortletHandle(Registration registration, String portletHandle)
{
delegate.addPortletHandle(registration, portletHandle);
@@ -126,5 +123,5 @@
public void addPortletContextChangeListener(RegistrationPortletContextChangeListener listener)
{
delegate.addPortletContextChangeListener(listener);
- }
+ }*/
}
Modified: components/wsrp/trunk/producer/src/main/java/org/gatein/wsrp/producer/WSRPPortletInvoker.java
===================================================================
--- components/wsrp/trunk/producer/src/main/java/org/gatein/wsrp/producer/WSRPPortletInvoker.java 2010-12-02 18:14:15 UTC (rev 5467)
+++ components/wsrp/trunk/producer/src/main/java/org/gatein/wsrp/producer/WSRPPortletInvoker.java 2010-12-02 18:26:50 UTC (rev 5468)
@@ -20,31 +20,15 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
+
package org.gatein.wsrp.producer;
-import org.gatein.pc.api.NoSuchPortletException;
-import org.gatein.pc.api.Portlet;
-import org.gatein.pc.api.PortletContext;
-import org.gatein.pc.api.PortletInvokerException;
-import org.gatein.pc.api.PortletStateType;
-import org.gatein.pc.api.invocation.PortletInvocation;
-import org.gatein.pc.api.invocation.response.PortletInvocationResponse;
-import org.gatein.pc.api.state.DestroyCloneFailure;
-import org.gatein.pc.api.state.PropertyChange;
-import org.gatein.pc.api.state.PropertyMap;
import org.gatein.pc.portlet.PortletInvokerInterceptor;
-import org.gatein.registration.Registration;
-import org.gatein.registration.RegistrationLocal;
import org.gatein.registration.RegistrationManager;
-import org.gatein.wsrp.WSRPUtils;
-import org.gatein.wsrp.producer.handlers.processors.WSRPInstanceContext;
-import java.util.ArrayList;
-import java.util.LinkedHashSet;
-import java.util.List;
-import java.util.Set;
-
/**
+ * GTNWSRP-72
+ *
* @author <a href="mailto:mwringe@redhat.com">Matt Wringe</a>
* @version $Revision$
*/
@@ -63,7 +47,7 @@
this.registrationManager = registrationManager;
}
- public Portlet getPortlet(PortletContext portletContext) throws IllegalArgumentException, PortletInvokerException
+ /*public Portlet getPortlet(PortletContext portletContext) throws IllegalArgumentException, PortletInvokerException
{
checkPortletContext(portletContext);
Portlet portlet = super.getPortlet(portletContext);
@@ -78,11 +62,11 @@
public Set<Portlet> getPortlets() throws PortletInvokerException
{
- /**
- * Note: due to the way the ProducerPortletInvoker work, when calling super.getPortlets() it will
- * return the portlets not for the ProducerPortletInvoker from its parent, which should only return
- * non-cloned Portlets.
- */
+ *//**
+ * Note: due to the way the ProducerPortletInvoker work, when calling super.getPortlets() it will
+ * return the portlets not for the ProducerPortletInvoker from its parent, which should only return
+ * non-cloned Portlets.
+ *//*
Registration registration = RegistrationLocal.getRegistration();
Set<Portlet> portlets = super.getPortlets();
@@ -235,6 +219,6 @@
Registration registration = RegistrationLocal.getRegistration();
String portletHandle = WSRPUtils.convertToWSRPPortletContext(portletContext).getPortletHandle();
this.getRegistrationManager().getPolicy().removePortletHandle(registration, portletHandle);
- }
+ }*/
}
Modified: components/wsrp/trunk/producer/src/main/java/org/gatein/wsrp/producer/WSRPProducerImpl.java
===================================================================
--- components/wsrp/trunk/producer/src/main/java/org/gatein/wsrp/producer/WSRPProducerImpl.java 2010-12-02 18:14:15 UTC (rev 5467)
+++ components/wsrp/trunk/producer/src/main/java/org/gatein/wsrp/producer/WSRPProducerImpl.java 2010-12-02 18:26:50 UTC (rev 5468)
@@ -402,7 +402,8 @@
registrationManager.setPolicy(registrationRequirements.getPolicy());
- registrationManager.getPolicy().addPortletContextChangeListener(registrationManager);
+ // GTNWSRP-72
+// registrationManager.getPolicy().addPortletContextChangeListener(registrationManager);
started = true;
}
@@ -452,7 +453,7 @@
}
catch (NoSuchPortletException e)
{
- throw WSRP2ExceptionFactory.throwWSException(InvalidHandle.class, "Couldn't find portlet with handle '" + portletContext.getId() + "'", null);
+ throw WSRP2ExceptionFactory.throwWSException(InvalidHandle.class, "Couldn't find portlet with handle '" + portletContext.getId() + "'", e);
}
finally
{
Added: components/wsrp/trunk/producer/src/test/java/org/gatein/wsrp/producer/WSRPPortletInvokerTestCase.java
===================================================================
--- components/wsrp/trunk/producer/src/test/java/org/gatein/wsrp/producer/WSRPPortletInvokerTestCase.java (rev 0)
+++ components/wsrp/trunk/producer/src/test/java/org/gatein/wsrp/producer/WSRPPortletInvokerTestCase.java 2010-12-02 18:26:50 UTC (rev 5468)
@@ -0,0 +1,58 @@
+/*
+ * JBoss, a division of Red Hat
+ * Copyright 2010, Red Hat Middleware, LLC, and individual
+ * contributors as indicated by the @authors tag. See the
+ * copyright.txt in the distribution for a full listing of
+ * individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.gatein.wsrp.producer;
+
+import junit.framework.TestCase;
+import org.gatein.pc.api.Portlet;
+import org.gatein.pc.api.PortletContext;
+import org.gatein.pc.api.PortletInvoker;
+import org.gatein.pc.api.PortletInvokerException;
+import org.gatein.registration.impl.RegistrationManagerImpl;
+import org.gatein.registration.policies.DefaultRegistrationPolicy;
+
+import static org.mockito.Mockito.mock;
+import static org.mockito.Mockito.when;
+
+/**
+ * @author <a href="mailto:chris.laprun@jboss.com">Chris Laprun</a>
+ * @version $Revision$
+ */
+public class WSRPPortletInvokerTestCase extends TestCase
+{
+ public void testGetPortletShouldWorkDirectly() throws PortletInvokerException
+ {
+ WSRPPortletInvoker invoker = new WSRPPortletInvoker();
+ RegistrationManagerImpl registrationManager = new RegistrationManagerImpl();
+ registrationManager.setPolicy(new DefaultRegistrationPolicy());
+ invoker.setRegistrationManager(registrationManager);
+
+ PortletInvoker next = mock(PortletInvoker.class);
+ PortletContext portletContext = PortletContext.createPortletContext("foo");
+ Portlet portlet = mock(Portlet.class);
+ when(next.getPortlet(portletContext)).thenReturn(portlet);
+
+ invoker.setNext(next);
+ assertEquals(portlet, invoker.getPortlet(portletContext));
+ }
+}
Modified: components/wsrp/trunk/wsrp-producer-war/src/test/java/org/gatein/wsrp/protocol/v2/PortletManagementTestCase.java
===================================================================
--- components/wsrp/trunk/wsrp-producer-war/src/test/java/org/gatein/wsrp/protocol/v2/PortletManagementTestCase.java 2010-12-02 18:14:15 UTC (rev 5467)
+++ components/wsrp/trunk/wsrp-producer-war/src/test/java/org/gatein/wsrp/protocol/v2/PortletManagementTestCase.java 2010-12-02 18:26:50 UTC (rev 5468)
@@ -20,6 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
+
package org.gatein.wsrp.protocol.v2;
import org.gatein.exports.ExportManager;
@@ -37,7 +38,6 @@
import org.gatein.wsrp.producer.WSRPProducerBaseTest;
import org.gatein.wsrp.servlet.ServletAccess;
import org.gatein.wsrp.support.TestMockExportPersistenceManager;
-import org.gatein.wsrp.test.ExtendedAssert;
import org.gatein.wsrp.test.support.MockHttpServletRequest;
import org.gatein.wsrp.test.support.MockHttpServletResponse;
import org.jboss.arquillian.api.Deployment;
@@ -62,7 +62,6 @@
import org.oasis.wsrp.v2.ImportPortlets;
import org.oasis.wsrp.v2.ImportPortletsResponse;
import org.oasis.wsrp.v2.ImportedPortlet;
-import org.oasis.wsrp.v2.InvalidHandle;
import org.oasis.wsrp.v2.InvalidRegistration;
import org.oasis.wsrp.v2.Lifetime;
import org.oasis.wsrp.v2.MarkupContext;
@@ -243,7 +242,7 @@
//arquillian can't handle non serializable exceptions, print error message to the server logs
System.out.println("An exception occured calling " + this.getClass() + " testExportRegistrationRequired");
e.printStackTrace();
- throw new Exception (e);
+ throw new Exception(e);
}
}
@@ -450,7 +449,7 @@
//arquillian can't handle non serializable exceptions, print error message to the server logs
System.out.println("An exception occured calling " + this.getClass() + " testImportRegistrationRequired");
e.printStackTrace();
- throw new Exception (e);
+ throw new Exception(e);
}
}
@@ -668,50 +667,50 @@
{
try
{
- undeploy(TEST_BASIC_PORTLET_WAR);
- String sessionPortletArchive = "test-portletstate-portlet.war";
- deploy(sessionPortletArchive);
+ undeploy(TEST_BASIC_PORTLET_WAR);
+ String sessionPortletArchive = "test-portletstate-portlet.war";
+ deploy(sessionPortletArchive);
- try
- {
- String originalHandle = getHandleForCurrentlyDeployedArchive();
+ try
+ {
+ String originalHandle = getHandleForCurrentlyDeployedArchive();
- //check the session portlet to make sure its at the inital state
- checkStatePortlet(originalHandle, "initial");
+ //check the session portlet to make sure its at the inital state
+ checkStatePortlet(originalHandle, "initial");
- PortletContext portletContext = performBlockingInteractionOnSessionPortlet(originalHandle, "new value", StateChange.CLONE_BEFORE_WRITE);
- //check that we have a new portlet context
- assertFalse(originalHandle.equals(portletContext.getPortletHandle()));
+ PortletContext portletContext = performBlockingInteractionOnSessionPortlet(originalHandle, "new value", StateChange.CLONE_BEFORE_WRITE);
+ //check that we have a new portlet context
+ assertFalse(originalHandle.equals(portletContext.getPortletHandle()));
- checkStatePortlet(portletContext.getPortletHandle(), "new value");
+ checkStatePortlet(portletContext.getPortletHandle(), "new value");
- List<PortletContext> portletContexts = createPortletContextList(portletContext.getPortletHandle());
- ExportPortlets exportPortlets = createSimpleExportPortlets(portletContexts);
- ExportPortletsResponse response = producer.exportPortlets(exportPortlets);
+ List<PortletContext> portletContexts = createPortletContextList(portletContext.getPortletHandle());
+ ExportPortlets exportPortlets = createSimpleExportPortlets(portletContexts);
+ ExportPortletsResponse response = producer.exportPortlets(exportPortlets);
- assertFalse(response.getExportedPortlet().isEmpty());
+ assertFalse(response.getExportedPortlet().isEmpty());
- List<PortletContext> portletContextsFromExport = getPortletContext(response);
+ List<PortletContext> portletContextsFromExport = getPortletContext(response);
- assertNotNull(portletContextsFromExport.isEmpty());
- assertEquals(1, portletContexts.size());
+ assertNotNull(portletContextsFromExport.isEmpty());
+ assertEquals(1, portletContexts.size());
- PortletContext portletContextFromExport = portletContextsFromExport.get(0);
- //we should be getting the handle of the stateless portlet
- assertEquals(originalHandle, portletContextFromExport.getPortletHandle());
- //assert that we have a portlet state returned
- assertNotNull(portletContextFromExport.getPortletState());
+ PortletContext portletContextFromExport = portletContextsFromExport.get(0);
+ //we should be getting the handle of the stateless portlet
+ assertEquals(originalHandle, portletContextFromExport.getPortletHandle());
+ //assert that we have a portlet state returned
+ assertNotNull(portletContextFromExport.getPortletState());
- //quick check that the imported portlet has the right state
- ImportPortletsResponse importResponse = createImportPortletsResponse("foo", portletContextFromExport);
- assertEquals(1, importResponse.getImportedPortlets().size());
- checkStatePortlet(importResponse.getImportedPortlets().get(0).getNewPortletContext().getPortletHandle(), "new value");
+ //quick check that the imported portlet has the right state
+ ImportPortletsResponse importResponse = createImportPortletsResponse("foo", portletContextFromExport);
+ assertEquals(1, importResponse.getImportedPortlets().size());
+ checkStatePortlet(importResponse.getImportedPortlets().get(0).getNewPortletContext().getPortletHandle(), "new value");
+ }
+ finally
+ {
+ undeploy(sessionPortletArchive);
+ }
}
- finally
- {
- undeploy(sessionPortletArchive);
- }
- }
catch (Exception e)
{
System.out.println("ERROR: an error occured " + this.getClass() + " testExportWithState");
@@ -784,7 +783,7 @@
PropertyMap property = new SimplePropertyMap(properties);
PortletState sstate = new PortletState(portletHandle, property);
-
+
StateConverter stateConverter = new StateConverterV0();
return stateConverter.marshall(PortletStateType.OPAQUE, sstate);
}
@@ -1058,10 +1057,8 @@
return WSRPTypeFactory.createImportPortlets(registrationContext, importContext, importPortletsList, userContext, lifetime);
}
-
- /**
- * Simpliest check to make sure copy portlets is working
- */
+
+ /** Simpliest check to make sure copy portlets is working */
@Test
public void testSimpleCopyPortletNullRegistrations() throws Exception
{
@@ -1072,21 +1069,21 @@
CopyPortletsResponse response = producer.copyPortlets(copyPortlets);
checkSimpleCopyPortletsResponse(response, createStringList(handle), createStringList());
-
+
//Check that the proper registration context can access it
checkDefaultMarkup(response.getCopiedPortlets().get(0).getNewPortletContext().getPortletHandle(), null);
}
/**
- * Check copyPortlet from a null registration context to a non null registration context
- * Note: if the toRegistrationContext is null, then it should use the fromRegistrationContext, which is this case
- * is also null. See also testSimpleCopyPortletToRegistrationNull()
+ * Check copyPortlet from a null registration context to a non null registration context Note: if the
+ * toRegistrationContext is null, then it should use the fromRegistrationContext, which is this case is also null.
+ * See also testSimpleCopyPortletToRegistrationNull()
*/
@Test
public void testSimpleCopyPortletFromRegistrationNull() throws Exception
{
try
- {
+ {
RegistrationData toRegistrationData = WSRPTypeFactory.createRegistrationData("CONSUMERB", "CONSUMERAGENTB.0.0", true);
RegistrationContext toRegistrationContext = producer.register(toRegistrationData);
@@ -1099,19 +1096,22 @@
CopyPortletsResponse response = producer.copyPortlets(copyPortlets);
checkSimpleCopyPortletsResponse(response, createStringList(handle), createStringList());
-
+
//Check that the proper registration context can access it
checkDefaultMarkup(response.getCopiedPortlets().get(0).getNewPortletContext().getPortletHandle(), toRegistrationContext);
+
+ /*
+ GTNWSRP-72
//Check that the null registration cannot access it
try
{
checkDefaultMarkup(response.getCopiedPortlets().get(0).getNewPortletContext().getPortletHandle(), null);
- ExtendedAssert.fail("The null registration context should not be able to access this portlet");
+ fail("The null registration context should not be able to access this portlet");
}
catch (InvalidHandle e)
{
//expected
- }
+ }*/
}
catch (Exception e)
{
@@ -1120,33 +1120,36 @@
throw new Exception(e);
}
}
-
+
/**
- * Check copyPortlets from a non-null registration context to a null registration context.
- * Note: this does _NOT_ mean the copy should be available from a non registered consumer, the spec states if
- * the toRegistration is null, it should be registered using the fromRegistrationContext
+ * Check copyPortlets from a non-null registration context to a null registration context. Note: this does _NOT_ mean
+ * the copy should be available from a non registered consumer, the spec states if the toRegistration is null, it
+ * should be registered using the fromRegistrationContext
*/
@Test
public void testSimpleCopyPortletToRegistrationNull() throws Exception
{
//producer.getConfigurationService().getConfiguration().getRegistrationRequirements().setRegistrationRequired(true);
-
+
RegistrationData fromRegistrationData = WSRPTypeFactory.createRegistrationData("CONSUMERA", "CONSUMERAGENAT.0.0", true);
RegistrationContext fromRegistrationContext = producer.register(fromRegistrationData);
-
+
String handle = getDefaultHandle();
List<PortletContext> portletContexts = createPortletContextList(handle);
CopyPortlets copyPortlets = createSimpleCopyPortlets(portletContexts);
//note: createSimpleCopyPortlets sets the toRegistrationContext to null
- copyPortlets.setFromRegistrationContext(fromRegistrationContext);
-
+ copyPortlets.setFromRegistrationContext(fromRegistrationContext);
+
CopyPortletsResponse response = producer.copyPortlets(copyPortlets);
checkSimpleCopyPortletsResponse(response, createStringList(handle), createStringList());
-
+
//Check that the proper registration context can access it
checkDefaultMarkup(response.getCopiedPortlets().get(0).getNewPortletContext().getPortletHandle(), fromRegistrationContext);
+
+ /*
+ GTNWSRP-72
//Check that the null registration cannot access it
try
{
@@ -1156,17 +1159,15 @@
catch (InvalidHandle e)
{
//expected
- }
+ }*/
}
-
- /**
- * Check that we can copy one portlet from one registration context to another
- */
+
+ /** Check that we can copy one portlet from one registration context to another */
@Test
public void testSimpleCopyPortletWithRegistrations() throws Exception
{
//producer.getConfigurationService().getConfiguration().getRegistrationRequirements().setRegistrationRequired(true);
-
+
RegistrationData fromRegistrationData = WSRPTypeFactory.createRegistrationData("CONSUMERA", "CONSUMERAGENTA.0.0", true);
RegistrationContext fromRegistrationContext = producer.register(fromRegistrationData);
RegistrationData toRegistrationData = WSRPTypeFactory.createRegistrationData("CONSUMERB", "CONSUMERAGENTB.0.0", true);
@@ -1178,18 +1179,21 @@
CopyPortlets copyPortlets = createSimpleCopyPortlets(portletContexts);
copyPortlets.setFromRegistrationContext(fromRegistrationContext);
copyPortlets.setToRegistrationContext(toRegistrationContext);
-
+
CopyPortletsResponse response = producer.copyPortlets(copyPortlets);
checkSimpleCopyPortletsResponse(response, createStringList(handle), createStringList());
-
+
//Check that the proper registration context can access it
checkDefaultMarkup(response.getCopiedPortlets().get(0).getNewPortletContext().getPortletHandle(), toRegistrationContext);
+
+ /*
+ GTNWSRP-72
//Check that the original registration cannot access it
try
{
checkDefaultMarkup(response.getCopiedPortlets().get(0).getNewPortletContext().getPortletHandle(), fromRegistrationContext);
- ExtendedAssert.fail("The null registration context should not be able to access this portlet");
+ ExtendedAssert.fail("The original registration context should not be able to access this portlet");
}
catch (InvalidHandle e)
{
@@ -1204,18 +1208,18 @@
catch (InvalidHandle e)
{
//expected
- }
+ }*/
}
-
+
@Test
public void testCopyPortletNullRegistrationWithRR() throws Exception
{
producer.getConfigurationService().getConfiguration().getRegistrationRequirements().setRegistrationRequired(true);
-
+
List<PortletContext> portletContexts = createPortletContextList(getDefaultHandle());
//creates a copyportlet with a null registration context
CopyPortlets copyPortlets = createSimpleCopyPortlets(portletContexts);
-
+
try
{
producer.copyPortlets(copyPortlets);
@@ -1226,16 +1230,16 @@
//expected
}
}
-
+
@Test
public void testCopyPortletNonRegisteredToRegistration() throws Exception
{
RegistrationContext invalidRegistrationContext = WSRPTypeFactory.createRegistrationContext("non_registered_handle");
-
+
List<PortletContext> portletContexts = createPortletContextList(getDefaultHandle());
CopyPortlets copyPortlets = createSimpleCopyPortlets(portletContexts);
copyPortlets.setToRegistrationContext(invalidRegistrationContext);
-
+
try
{
producer.copyPortlets(copyPortlets);
@@ -1246,16 +1250,16 @@
//expected
}
}
-
+
@Test
public void testCopyPortletNonRegisteredFromRegistration() throws Exception
{
RegistrationContext invalidRegistrationContext = WSRPTypeFactory.createRegistrationContext("non_registered_handle");
-
+
List<PortletContext> portletContexts = createPortletContextList(getDefaultHandle());
CopyPortlets copyPortlets = createSimpleCopyPortlets(portletContexts);
copyPortlets.setFromRegistrationContext(invalidRegistrationContext);
-
+
try
{
producer.copyPortlets(copyPortlets);
@@ -1266,13 +1270,13 @@
//expected
}
}
-
+
@Test
public void testCopyPortletNullPortletContexts() throws Exception
{
List<PortletContext> portletContexts = null;
CopyPortlets copyPortlets = new CopyPortlets();
-
+
try
{
producer.copyPortlets(copyPortlets);
@@ -1283,14 +1287,14 @@
//expected
}
}
-
+
@Test
public void testCopyPortletsEmptyPortletContexts() throws Exception
{
List<PortletContext> portletContexts = new ArrayList<PortletContext>();
CopyPortlets copyPortlets = new CopyPortlets();
copyPortlets.getFromPortletContexts().addAll(portletContexts);
-
+
try
{
producer.copyPortlets(copyPortlets);
@@ -1301,7 +1305,7 @@
//expected
}
}
-
+
@Test
public void testCopyPortletsInvalidPortletContexts() throws Exception
{
@@ -1309,36 +1313,36 @@
String fakePortletContext2 = "fakePortletContext2";
List<PortletContext> portletContexts = createPortletContextList(fakePortletContext1, fakePortletContext2);
CopyPortlets copyPortlets = createSimpleCopyPortlets(portletContexts);
-
+
CopyPortletsResponse response = producer.copyPortlets(copyPortlets);
-
+
assertEquals(0, response.getCopiedPortlets().size());
assertEquals(1, response.getFailedPortlets().size());
assertTrue(response.getFailedPortlets().get(0).getPortletHandles().contains(fakePortletContext1));
assertTrue(response.getFailedPortlets().get(0).getPortletHandles().contains(fakePortletContext2));
assertTrue(response.getFailedPortlets().get(0).getErrorCode().getLocalPart().contains("InvalidHandle"));
}
-
- @Test
+
+ @Test
public void testCopyPortletsMixedPortletContexts() throws Exception
{
String fakePortletContext1 = "fakePortletContext1";
String fakePortletContext2 = "fakePortletContext2";
List<PortletContext> portletContexts = createPortletContextList(fakePortletContext1, getDefaultHandle(), fakePortletContext2);
CopyPortlets copyPortlets = createSimpleCopyPortlets(portletContexts);
-
+
CopyPortletsResponse response = producer.copyPortlets(copyPortlets);
-
+
assertEquals(1, response.getFailedPortlets().size());
assertTrue(response.getFailedPortlets().get(0).getPortletHandles().contains(fakePortletContext1));
assertTrue(response.getFailedPortlets().get(0).getPortletHandles().contains(fakePortletContext2));
assertTrue(response.getFailedPortlets().get(0).getErrorCode().getLocalPart().contains("InvalidHandle"));
-
+
assertEquals(1, response.getCopiedPortlets().size());
assertEquals(getDefaultHandle(), response.getCopiedPortlets().get(0).getFromPortletHandle());
assertFalse(response.getCopiedPortlets().get(0).getNewPortletContext().getPortletHandle().equals(getDefaultHandle()));
}
-
+
protected CopyPortlets createSimpleCopyPortlets(List<PortletContext> portletContexts)
{
RegistrationContext toRegistrationContext = null;
@@ -1347,8 +1351,8 @@
UserContext fromUserContext = null;
return WSRPTypeFactory.createCopyPortlets(toRegistrationContext, toUserContext, fromRegistrationContext, fromUserContext, portletContexts);
}
-
- protected void checkSimpleCopyPortletsResponse(CopyPortletsResponse response, List<String> success,List<String> failure)
+
+ protected void checkSimpleCopyPortletsResponse(CopyPortletsResponse response, List<String> success, List<String> failure)
{
//check that we are getting the expected number of copied portlets
assertEquals(success.size(), response.getCopiedPortlets().size());
@@ -1356,14 +1360,14 @@
{
assertTrue(success.contains(copiedPortlet.getFromPortletHandle()));
}
-
+
//check that we are getting the expected number of failed portlets
assertEquals(failure.size(), response.getFailedPortlets().size());
for (FailedPortlets failedPortlet : response.getFailedPortlets())
{
assertTrue(failure.containsAll(failedPortlet.getPortletHandles()));
}
-
+
//Check that if we do get copiedPortlets back, that the new and old PortletHandle are not the same
for (CopiedPortlet copiedPortlet : response.getCopiedPortlets())
{
@@ -1371,21 +1375,21 @@
}
}
-
+
protected void checkDefaultMarkup(String portletHandle, RegistrationContext registrationContext) throws Exception
{
GetMarkup getMarkup = createDefaultGetMarkup(portletHandle);
getMarkup.setRegistrationContext(registrationContext);
MarkupResponse response = producer.getMarkup(getMarkup);
-
+
String defaultMarkup = "<p>symbol unset stock value: value unset</p>";
-
+
MarkupContext markupContext = response.getMarkupContext();
assertNotNull(markupContext);
assertEquals("text/html", markupContext.getMimeType());
assertTrue(markupContext.getItemString().contains(defaultMarkup));
}
-
+
protected List<String> createStringList(String... names)
{
List<String> list = new ArrayList<String>(names.length);
@@ -1395,79 +1399,81 @@
}
return list;
}
-
- @Test
+
+ @Test
public void testClonePortletAvailabilityRR() throws Exception
{
producer.getConfigurationService().getConfiguration().getRegistrationRequirements().setRegistrationRequired(true);
checkClonePortletAvailability();
}
-
- @Test
+
+ @Test
public void testClonePortletAvailabilityNRR() throws Exception
{
producer.getConfigurationService().getConfiguration().getRegistrationRequirements().setRegistrationRequired(false);
checkClonePortletAvailability();
}
-
+
public void checkClonePortletAvailability() throws Exception
{
RegistrationData registrationDataA = WSRPTypeFactory.createRegistrationData("CONSUMERA", "CONSUMERAGENTA.0.0", true);
RegistrationContext registrationContextA = producer.register(registrationDataA);
RegistrationData registrationDataB = WSRPTypeFactory.createRegistrationData("CONSUMERB", "CONSUMERAGENTB.0.0", true);
RegistrationContext registrationContextB = producer.register(registrationDataB);
-
+
checkClonePortletAvailability(registrationContextA, registrationContextB);
}
-
+
public void checkClonePortletAvailability(RegistrationContext registrationContextA, RegistrationContext registrationContextB) throws Exception
{
String handle = getDefaultHandle();
PortletContext portletContext = WSRPTypeFactory.createPortletContext(getDefaultHandle());
ClonePortlet clonePortlet = WSRPTypeFactory.createClonePortlet(registrationContextA, portletContext, null);
PortletContext clonedPortletContext = producer.clonePortlet(clonePortlet);
-
- ExtendedAssert.assertFalse(portletContext.getPortletHandle().equals(clonedPortletContext.getPortletHandle()));
-
+
+ assertFalse(portletContext.getPortletHandle().equals(clonedPortletContext.getPortletHandle()));
+
GetMarkup getMarkupA = createDefaultGetMarkup(clonedPortletContext.getPortletHandle());
getMarkupA.setRegistrationContext(registrationContextA);
producer.getMarkup(getMarkupA);
-
+
+ /*
+ GTNWSRP-72
try
{
GetMarkup getMarkupB = createDefaultGetMarkup(clonedPortletContext.getPortletHandle());
getMarkupB.setRegistrationContext(registrationContextB);
producer.getMarkup(getMarkupB);
- ExtendedAssert.fail("Should not be able to render a cloned portlet from a registration context which didn't create the clone.");
+ fail("Should not be able to render a cloned portlet from a registration context which didn't create the clone.");
}
catch (InvalidHandle e)
{
//expected
- }
+ }*/
}
-
+
@Test
public void testClonePortletAvailabilityNonRegisteredA() throws Exception
{
producer.getConfigurationService().getConfiguration().getRegistrationRequirements().setRegistrationRequired(false);
-
+
RegistrationData registrationDataA = WSRPTypeFactory.createRegistrationData("CONSUMERA", "CONSUMERAGENTA.0.0", true);
RegistrationContext registrationContextA = producer.register(registrationDataA);
-
+
checkClonePortletAvailability(registrationContextA, null);
}
-
+
@Test
public void testClonePortletAvailabilityNonRegisteredB() throws Exception
{
producer.getConfigurationService().getConfiguration().getRegistrationRequirements().setRegistrationRequired(false);
-
+
RegistrationData registrationDataB = WSRPTypeFactory.createRegistrationData("CONSUMERB", "CONSUMERAGENTB.0.0", true);
RegistrationContext registrationContextB = producer.register(registrationDataB);
-
+
checkClonePortletAvailability(null, registrationContextB);
}
-
+
@Test
public void testClonePortletAvailabilityNullRegistered() throws Exception
{
@@ -1477,19 +1483,19 @@
PortletContext portletContext = WSRPTypeFactory.createPortletContext(getDefaultHandle());
ClonePortlet clonePortlet = WSRPTypeFactory.createClonePortlet(registrationContextA, portletContext, null);
PortletContext clonedPortletContext = producer.clonePortlet(clonePortlet);
-
- ExtendedAssert.assertFalse(portletContext.getPortletHandle().equals(clonedPortletContext.getPortletHandle()));
-
+
+ assertFalse(portletContext.getPortletHandle().equals(clonedPortletContext.getPortletHandle()));
+
GetMarkup getMarkupA = createDefaultGetMarkup(clonedPortletContext.getPortletHandle());
getMarkupA.setRegistrationContext(registrationContextA);
producer.getMarkup(getMarkupA);
-
+
//Since both A and B are null, this should work
GetMarkup getMarkupB = createDefaultGetMarkup(clonedPortletContext.getPortletHandle());
getMarkupB.setRegistrationContext(registrationContextB);
producer.getMarkup(getMarkupB);
}
-
+
protected String getMostUsedPortletWARFileName()
{
return TEST_BASIC_PORTLET_WAR;
14 years
gatein SVN: r5467 - exo/portal/branches/3.1.x.
by do-not-reply@jboss.org
Author: dbaeli
Date: 2010-12-02 13:14:15 -0500 (Thu, 02 Dec 2010)
New Revision: 5467
Modified:
exo/portal/branches/3.1.x/pom.xml
Log:
EXOGTN-202 after 3.1.6-CR02-PLF release, back to JCR 1.12.6-GA-SNAPSHOT versions
Modified: exo/portal/branches/3.1.x/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
+++ exo/portal/branches/3.1.x/pom.xml 2010-12-02 18:14:15 UTC (rev 5467)
@@ -37,10 +37,10 @@
<name>GateIn - Portal</name>
<properties>
- <org.exoplatform.kernel.version>2.2.6-CR02</org.exoplatform.kernel.version>
- <org.exoplatform.core.version>2.3.6-CR02</org.exoplatform.core.version>
- <org.exoplatform.ws.version>2.1.6-CR02</org.exoplatform.ws.version>
- <org.exoplatform.jcr.version>1.12.6-CR02</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
gatein SVN: r5466 - in exo/portal/branches/3.1.x: component and 71 other directories.
by do-not-reply@jboss.org
Author: dbaeli
Date: 2010-12-02 13:08:32 -0500 (Thu, 02 Dec 2010)
New Revision: 5466
Modified:
exo/portal/branches/3.1.x/component/application-registry/pom.xml
exo/portal/branches/3.1.x/component/common/pom.xml
exo/portal/branches/3.1.x/component/dashboard/pom.xml
exo/portal/branches/3.1.x/component/identity/pom.xml
exo/portal/branches/3.1.x/component/management/pom.xml
exo/portal/branches/3.1.x/component/pc/pom.xml
exo/portal/branches/3.1.x/component/pom.xml
exo/portal/branches/3.1.x/component/portal/pom.xml
exo/portal/branches/3.1.x/component/resources/pom.xml
exo/portal/branches/3.1.x/component/scripting/pom.xml
exo/portal/branches/3.1.x/component/test/core/pom.xml
exo/portal/branches/3.1.x/component/test/jcr/pom.xml
exo/portal/branches/3.1.x/component/test/organization/pom.xml
exo/portal/branches/3.1.x/component/test/pom.xml
exo/portal/branches/3.1.x/component/web/pom.xml
exo/portal/branches/3.1.x/component/wsrp/pom.xml
exo/portal/branches/3.1.x/docs/pom.xml
exo/portal/branches/3.1.x/docs/reference-guide/pom.xml
exo/portal/branches/3.1.x/docs/user-guide/pom.xml
exo/portal/branches/3.1.x/examples/extension/config/pom.xml
exo/portal/branches/3.1.x/examples/extension/ear/pom.xml
exo/portal/branches/3.1.x/examples/extension/jar/pom.xml
exo/portal/branches/3.1.x/examples/extension/pom.xml
exo/portal/branches/3.1.x/examples/extension/war/pom.xml
exo/portal/branches/3.1.x/examples/pom.xml
exo/portal/branches/3.1.x/examples/portal/config/pom.xml
exo/portal/branches/3.1.x/examples/portal/ear/pom.xml
exo/portal/branches/3.1.x/examples/portal/jar/pom.xml
exo/portal/branches/3.1.x/examples/portal/pom.xml
exo/portal/branches/3.1.x/examples/portal/rest-war/pom.xml
exo/portal/branches/3.1.x/examples/portal/war/pom.xml
exo/portal/branches/3.1.x/examples/portlets/jsfhellouser/pom.xml
exo/portal/branches/3.1.x/examples/portlets/jsphellouser/pom.xml
exo/portal/branches/3.1.x/examples/portlets/pom.xml
exo/portal/branches/3.1.x/examples/portlets/simplesthelloworld/pom.xml
exo/portal/branches/3.1.x/examples/portlets/struts-jpetstore/pom.xml
exo/portal/branches/3.1.x/examples/skins/pom.xml
exo/portal/branches/3.1.x/examples/skins/simpleskin/pom.xml
exo/portal/branches/3.1.x/gadgets/core/pom.xml
exo/portal/branches/3.1.x/gadgets/eXoGadgets/pom.xml
exo/portal/branches/3.1.x/gadgets/pom.xml
exo/portal/branches/3.1.x/gadgets/server/pom.xml
exo/portal/branches/3.1.x/packaging/module/pom.xml
exo/portal/branches/3.1.x/packaging/pkg/pom.xml
exo/portal/branches/3.1.x/packaging/pom.xml
exo/portal/branches/3.1.x/packaging/product/pom.xml
exo/portal/branches/3.1.x/packaging/reports/pom.xml
exo/portal/branches/3.1.x/pom.xml
exo/portal/branches/3.1.x/portlet/dashboard/pom.xml
exo/portal/branches/3.1.x/portlet/exoadmin/pom.xml
exo/portal/branches/3.1.x/portlet/pom.xml
exo/portal/branches/3.1.x/portlet/web/pom.xml
exo/portal/branches/3.1.x/server/jboss/patch-ear/pom.xml
exo/portal/branches/3.1.x/server/jboss/plugin/pom.xml
exo/portal/branches/3.1.x/server/jboss/pom.xml
exo/portal/branches/3.1.x/server/pom.xml
exo/portal/branches/3.1.x/server/tomcat/patch/pom.xml
exo/portal/branches/3.1.x/server/tomcat/plugin/pom.xml
exo/portal/branches/3.1.x/server/tomcat/pom.xml
exo/portal/branches/3.1.x/starter/ear/pom.xml
exo/portal/branches/3.1.x/starter/pom.xml
exo/portal/branches/3.1.x/starter/war/pom.xml
exo/portal/branches/3.1.x/testsuite/pom.xml
exo/portal/branches/3.1.x/testsuite/selenium-snifftests/pom.xml
exo/portal/branches/3.1.x/testsuite/webuibasedsamples/pom.xml
exo/portal/branches/3.1.x/web/eXoResources/pom.xml
exo/portal/branches/3.1.x/web/pom.xml
exo/portal/branches/3.1.x/web/portal/pom.xml
exo/portal/branches/3.1.x/web/rest/pom.xml
exo/portal/branches/3.1.x/webui/core/pom.xml
exo/portal/branches/3.1.x/webui/eXo/pom.xml
exo/portal/branches/3.1.x/webui/pom.xml
exo/portal/branches/3.1.x/webui/portal/pom.xml
Log:
[maven-release-plugin] [EXOGTN-202]prepare for next development iteration
Modified: exo/portal/branches/3.1.x/component/application-registry/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/application-registry/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/component/application-registry/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/common/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/common/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/component/common/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.6-CR02-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.x/component/dashboard/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/dashboard/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/component/dashboard/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/identity/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/identity/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/component/identity/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/management/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/management/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/component/management/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/pc/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/pc/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/component/pc/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/component/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.component</artifactId>
Modified: exo/portal/branches/3.1.x/component/portal/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/portal/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/component/portal/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/resources/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/resources/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/component/resources/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/scripting/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/scripting/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/component/scripting/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/test/core/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/test/core/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/component/test/core/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/test/jcr/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/test/jcr/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/component/test/jcr/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/test/organization/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/test/organization/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/component/test/organization/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/test/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/test/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/component/test/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/web/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/web/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/component/web/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/wsrp/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/wsrp/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/component/wsrp/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/docs/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/docs/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/docs/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<groupId>org.gatein.doc</groupId>
Modified: exo/portal/branches/3.1.x/docs/reference-guide/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/docs/reference-guide/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/docs/reference-guide/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.doc</groupId>
<artifactId>docs-aggregator</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<groupId>org.gatein.doc</groupId>
Modified: exo/portal/branches/3.1.x/docs/user-guide/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/docs/user-guide/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/docs/user-guide/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.doc</groupId>
<artifactId>docs-aggregator</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>gatein-user-guide-en</artifactId>
Modified: exo/portal/branches/3.1.x/examples/extension/config/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/extension/config/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/examples/extension/config/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/extension/ear/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/extension/ear/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/examples/extension/ear/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-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.6-CR02-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.6-CR02-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.6-CR02-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.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
Modified: exo/portal/branches/3.1.x/examples/extension/jar/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/extension/jar/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/examples/extension/jar/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/extension/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/extension/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/examples/extension/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.sample.extension.root</artifactId>
Modified: exo/portal/branches/3.1.x/examples/extension/war/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/extension/war/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/examples/extension/war/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/examples/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.sample</artifactId>
Modified: exo/portal/branches/3.1.x/examples/portal/config/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portal/config/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/examples/portal/config/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/portal/ear/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portal/ear/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/examples/portal/ear/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-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.6-CR02-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.6-CR02-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.6-CR02-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.6-CR02-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.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
Modified: exo/portal/branches/3.1.x/examples/portal/jar/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portal/jar/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/examples/portal/jar/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/portal/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portal/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/examples/portal/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.sample.portal.root</artifactId>
Modified: exo/portal/branches/3.1.x/examples/portal/rest-war/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portal/rest-war/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/examples/portal/rest-war/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/portal/war/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portal/war/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/examples/portal/war/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/portlets/jsfhellouser/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portlets/jsfhellouser/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/examples/portlets/jsfhellouser/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>gatein-jsf-hellouser</artifactId>
Modified: exo/portal/branches/3.1.x/examples/portlets/jsphellouser/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portlets/jsphellouser/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/examples/portlets/jsphellouser/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>gatein-jsp-hellouser</artifactId>
Modified: exo/portal/branches/3.1.x/examples/portlets/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portlets/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/examples/portlets/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
Modified: exo/portal/branches/3.1.x/examples/portlets/simplesthelloworld/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portlets/simplesthelloworld/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/examples/portlets/simplesthelloworld/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>gatein-simplest-helloworld</artifactId>
Modified: exo/portal/branches/3.1.x/examples/portlets/struts-jpetstore/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portlets/struts-jpetstore/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/examples/portlets/struts-jpetstore/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>struts-jpetstore</artifactId>
Modified: exo/portal/branches/3.1.x/examples/skins/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/skins/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/examples/skins/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<groupId>org.gatein.portal.examples.skins</groupId>
Modified: exo/portal/branches/3.1.x/examples/skins/simpleskin/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/skins/simpleskin/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/examples/skins/simpleskin/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.portal.examples.skins</groupId>
<artifactId>parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>gatein-sample-skin</artifactId>
Modified: exo/portal/branches/3.1.x/gadgets/core/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/gadgets/core/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/gadgets/core/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -14,7 +14,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gadgets-core</artifactId>
Modified: exo/portal/branches/3.1.x/gadgets/eXoGadgets/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/gadgets/eXoGadgets/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/gadgets/eXoGadgets/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/gadgets/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/gadgets/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/gadgets/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gadgets</artifactId>
Modified: exo/portal/branches/3.1.x/gadgets/server/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/gadgets/server/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/gadgets/server/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gadgets-server</artifactId>
Modified: exo/portal/branches/3.1.x/packaging/module/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/packaging/module/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/packaging/module/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/packaging/pkg/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/packaging/pkg/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/packaging/pkg/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -72,19 +72,19 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.module</artifactId>
- <version>3.1.6-CR02-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.6-CR02-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.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</dependency>
<!-- Missing packaging dependencies -->
Modified: exo/portal/branches/3.1.x/packaging/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/packaging/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/packaging/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/packaging/product/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/packaging/product/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/packaging/product/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/packaging/reports/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/packaging/reports/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/packaging/reports/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -31,7 +31,7 @@
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-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.6-CR02-PLF</connection>
- <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/exo/portal/tags/3.1.6-CR02-PLF</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/exo/portal/tags/3.1.6-CR02-PLF</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/exo/portal/branches/3.1.x</connection>
+ <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/exo/portal/branches/3.1.x</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/exo/portal/branches/3.1.x</url>
</scm>
<modules>
@@ -341,43 +341,43 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.1.6-CR02-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.6-CR02-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.6-CR02-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.6-CR02-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.6-CR02-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.6-CR02-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.6-CR02-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.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
@@ -387,64 +387,64 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.scripting</artifactId>
- <version>3.1.6-CR02-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.6-CR02-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.6-CR02-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.6-CR02-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.6-CR02-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.6-CR02-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.6-CR02-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.6-CR02-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.6-CR02-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.6-CR02-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.6-CR02-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.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
<type>test-jar</type>
</dependency>
Modified: exo/portal/branches/3.1.x/portlet/dashboard/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/portlet/dashboard/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/portlet/dashboard/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/portlet/exoadmin/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/portlet/exoadmin/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/portlet/exoadmin/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/portlet/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/portlet/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/portlet/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.portlet</artifactId>
Modified: exo/portal/branches/3.1.x/portlet/web/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/portlet/web/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/portlet/web/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/server/jboss/patch-ear/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/jboss/patch-ear/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/server/jboss/patch-ear/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/server/jboss/plugin/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/jboss/plugin/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/server/jboss/plugin/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/server/jboss/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/jboss/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/server/jboss/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.server.jboss</artifactId>
Modified: exo/portal/branches/3.1.x/server/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/server/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.server</artifactId>
Modified: exo/portal/branches/3.1.x/server/tomcat/patch/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/tomcat/patch/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/server/tomcat/patch/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.tomcat</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/server/tomcat/plugin/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/tomcat/plugin/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/server/tomcat/plugin/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.tomcat</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/server/tomcat/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/tomcat/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/server/tomcat/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.server.tomcat</artifactId>
Modified: exo/portal/branches/3.1.x/starter/ear/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/starter/ear/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/starter/ear/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-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.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
Modified: exo/portal/branches/3.1.x/starter/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/starter/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/starter/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.starter.root</artifactId>
Modified: exo/portal/branches/3.1.x/starter/war/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/starter/war/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/starter/war/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/testsuite/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/testsuite/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/testsuite/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.testsuite</artifactId>
Modified: exo/portal/branches/3.1.x/testsuite/selenium-snifftests/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/testsuite/selenium-snifftests/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/testsuite/selenium-snifftests/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.selenium.snifftests</artifactId>
Modified: exo/portal/branches/3.1.x/testsuite/webuibasedsamples/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/testsuite/webuibasedsamples/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/testsuite/webuibasedsamples/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.webui.based.samples</artifactId>
Modified: exo/portal/branches/3.1.x/web/eXoResources/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/web/eXoResources/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/web/eXoResources/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/web/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/web/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/web/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.web</artifactId>
Modified: exo/portal/branches/3.1.x/web/portal/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/web/portal/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/web/portal/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/web/rest/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/web/rest/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/web/rest/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/webui/core/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/webui/core/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/webui/core/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/webui/eXo/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/webui/eXo/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/webui/eXo/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/webui/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/webui/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/webui/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.webui</artifactId>
Modified: exo/portal/branches/3.1.x/webui/portal/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/webui/portal/pom.xml 2010-12-02 18:06:26 UTC (rev 5465)
+++ exo/portal/branches/3.1.x/webui/portal/pom.xml 2010-12-02 18:08:32 UTC (rev 5466)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.1.6-CR02-PLF</version>
+ <version>3.1.6-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
14 years
gatein SVN: r5465 - exo/portal/tags.
by do-not-reply@jboss.org
Author: dbaeli
Date: 2010-12-02 13:06:26 -0500 (Thu, 02 Dec 2010)
New Revision: 5465
Added:
exo/portal/tags/3.1.6-CR02-PLF/
Log:
[maven-release-plugin] [EXOGTN-202] copy for tag 3.1.6-CR02-PLF
Copied: exo/portal/tags/3.1.6-CR02-PLF (from rev 5464, exo/portal/branches/3.1.x)
14 years
gatein SVN: r5464 - in exo/portal/branches/3.1.x: component and 71 other directories.
by do-not-reply@jboss.org
Author: dbaeli
Date: 2010-12-02 13:05:58 -0500 (Thu, 02 Dec 2010)
New Revision: 5464
Modified:
exo/portal/branches/3.1.x/component/application-registry/pom.xml
exo/portal/branches/3.1.x/component/common/pom.xml
exo/portal/branches/3.1.x/component/dashboard/pom.xml
exo/portal/branches/3.1.x/component/identity/pom.xml
exo/portal/branches/3.1.x/component/management/pom.xml
exo/portal/branches/3.1.x/component/pc/pom.xml
exo/portal/branches/3.1.x/component/pom.xml
exo/portal/branches/3.1.x/component/portal/pom.xml
exo/portal/branches/3.1.x/component/resources/pom.xml
exo/portal/branches/3.1.x/component/scripting/pom.xml
exo/portal/branches/3.1.x/component/test/core/pom.xml
exo/portal/branches/3.1.x/component/test/jcr/pom.xml
exo/portal/branches/3.1.x/component/test/organization/pom.xml
exo/portal/branches/3.1.x/component/test/pom.xml
exo/portal/branches/3.1.x/component/web/pom.xml
exo/portal/branches/3.1.x/component/wsrp/pom.xml
exo/portal/branches/3.1.x/docs/pom.xml
exo/portal/branches/3.1.x/docs/reference-guide/pom.xml
exo/portal/branches/3.1.x/docs/user-guide/pom.xml
exo/portal/branches/3.1.x/examples/extension/config/pom.xml
exo/portal/branches/3.1.x/examples/extension/ear/pom.xml
exo/portal/branches/3.1.x/examples/extension/jar/pom.xml
exo/portal/branches/3.1.x/examples/extension/pom.xml
exo/portal/branches/3.1.x/examples/extension/war/pom.xml
exo/portal/branches/3.1.x/examples/pom.xml
exo/portal/branches/3.1.x/examples/portal/config/pom.xml
exo/portal/branches/3.1.x/examples/portal/ear/pom.xml
exo/portal/branches/3.1.x/examples/portal/jar/pom.xml
exo/portal/branches/3.1.x/examples/portal/pom.xml
exo/portal/branches/3.1.x/examples/portal/rest-war/pom.xml
exo/portal/branches/3.1.x/examples/portal/war/pom.xml
exo/portal/branches/3.1.x/examples/portlets/jsfhellouser/pom.xml
exo/portal/branches/3.1.x/examples/portlets/jsphellouser/pom.xml
exo/portal/branches/3.1.x/examples/portlets/pom.xml
exo/portal/branches/3.1.x/examples/portlets/simplesthelloworld/pom.xml
exo/portal/branches/3.1.x/examples/portlets/struts-jpetstore/pom.xml
exo/portal/branches/3.1.x/examples/skins/pom.xml
exo/portal/branches/3.1.x/examples/skins/simpleskin/pom.xml
exo/portal/branches/3.1.x/gadgets/core/pom.xml
exo/portal/branches/3.1.x/gadgets/eXoGadgets/pom.xml
exo/portal/branches/3.1.x/gadgets/pom.xml
exo/portal/branches/3.1.x/gadgets/server/pom.xml
exo/portal/branches/3.1.x/packaging/module/pom.xml
exo/portal/branches/3.1.x/packaging/pkg/pom.xml
exo/portal/branches/3.1.x/packaging/pom.xml
exo/portal/branches/3.1.x/packaging/product/pom.xml
exo/portal/branches/3.1.x/packaging/reports/pom.xml
exo/portal/branches/3.1.x/pom.xml
exo/portal/branches/3.1.x/portlet/dashboard/pom.xml
exo/portal/branches/3.1.x/portlet/exoadmin/pom.xml
exo/portal/branches/3.1.x/portlet/pom.xml
exo/portal/branches/3.1.x/portlet/web/pom.xml
exo/portal/branches/3.1.x/server/jboss/patch-ear/pom.xml
exo/portal/branches/3.1.x/server/jboss/plugin/pom.xml
exo/portal/branches/3.1.x/server/jboss/pom.xml
exo/portal/branches/3.1.x/server/pom.xml
exo/portal/branches/3.1.x/server/tomcat/patch/pom.xml
exo/portal/branches/3.1.x/server/tomcat/plugin/pom.xml
exo/portal/branches/3.1.x/server/tomcat/pom.xml
exo/portal/branches/3.1.x/starter/ear/pom.xml
exo/portal/branches/3.1.x/starter/pom.xml
exo/portal/branches/3.1.x/starter/war/pom.xml
exo/portal/branches/3.1.x/testsuite/pom.xml
exo/portal/branches/3.1.x/testsuite/selenium-snifftests/pom.xml
exo/portal/branches/3.1.x/testsuite/webuibasedsamples/pom.xml
exo/portal/branches/3.1.x/web/eXoResources/pom.xml
exo/portal/branches/3.1.x/web/pom.xml
exo/portal/branches/3.1.x/web/portal/pom.xml
exo/portal/branches/3.1.x/web/rest/pom.xml
exo/portal/branches/3.1.x/webui/core/pom.xml
exo/portal/branches/3.1.x/webui/eXo/pom.xml
exo/portal/branches/3.1.x/webui/pom.xml
exo/portal/branches/3.1.x/webui/portal/pom.xml
Log:
[maven-release-plugin] [EXOGTN-202]prepare release 3.1.6-CR02-PLF
Modified: exo/portal/branches/3.1.x/component/application-registry/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/application-registry/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/component/application-registry/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/common/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/common/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/component/common/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.common</artifactId>
Modified: exo/portal/branches/3.1.x/component/dashboard/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/dashboard/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/component/dashboard/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/identity/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/identity/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/component/identity/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/management/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/management/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/component/management/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/pc/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/pc/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/component/pc/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/component/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<artifactId>exo.portal.component</artifactId>
Modified: exo/portal/branches/3.1.x/component/portal/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/portal/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/component/portal/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/resources/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/resources/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/component/resources/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/scripting/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/scripting/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/component/scripting/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/test/core/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/test/core/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/component/test/core/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/test/jcr/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/test/jcr/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/component/test/jcr/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/test/organization/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/test/organization/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/component/test/organization/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/test/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/test/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/component/test/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/web/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/web/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/component/web/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/wsrp/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/wsrp/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/component/wsrp/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/docs/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/docs/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/docs/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<groupId>org.gatein.doc</groupId>
Modified: exo/portal/branches/3.1.x/docs/reference-guide/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/docs/reference-guide/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/docs/reference-guide/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.doc</groupId>
<artifactId>docs-aggregator</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<groupId>org.gatein.doc</groupId>
Modified: exo/portal/branches/3.1.x/docs/user-guide/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/docs/user-guide/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/docs/user-guide/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.doc</groupId>
<artifactId>docs-aggregator</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<artifactId>gatein-user-guide-en</artifactId>
Modified: exo/portal/branches/3.1.x/examples/extension/config/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/extension/config/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/examples/extension/config/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/extension/ear/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/extension/ear/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/examples/extension/ear/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-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.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.jar</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.war</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
<type>war</type>
</dependency>
</dependencies>
Modified: exo/portal/branches/3.1.x/examples/extension/jar/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/extension/jar/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/examples/extension/jar/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/extension/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/extension/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/examples/extension/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<artifactId>exo.portal.sample.extension.root</artifactId>
Modified: exo/portal/branches/3.1.x/examples/extension/war/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/extension/war/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/examples/extension/war/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/examples/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<artifactId>exo.portal.sample</artifactId>
Modified: exo/portal/branches/3.1.x/examples/portal/config/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portal/config/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/examples/portal/config/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/portal/ear/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portal/ear/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/examples/portal/ear/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-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.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.jar</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.war</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.rest-war</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
<type>war</type>
</dependency>
</dependencies>
Modified: exo/portal/branches/3.1.x/examples/portal/jar/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portal/jar/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/examples/portal/jar/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/portal/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portal/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/examples/portal/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<artifactId>exo.portal.sample.portal.root</artifactId>
Modified: exo/portal/branches/3.1.x/examples/portal/rest-war/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portal/rest-war/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/examples/portal/rest-war/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/portal/war/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portal/war/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/examples/portal/war/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/portlets/jsfhellouser/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portlets/jsfhellouser/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/examples/portlets/jsfhellouser/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<artifactId>gatein-jsf-hellouser</artifactId>
Modified: exo/portal/branches/3.1.x/examples/portlets/jsphellouser/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portlets/jsphellouser/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/examples/portlets/jsphellouser/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<artifactId>gatein-jsp-hellouser</artifactId>
Modified: exo/portal/branches/3.1.x/examples/portlets/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portlets/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/examples/portlets/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
Modified: exo/portal/branches/3.1.x/examples/portlets/simplesthelloworld/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portlets/simplesthelloworld/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/examples/portlets/simplesthelloworld/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<artifactId>gatein-simplest-helloworld</artifactId>
Modified: exo/portal/branches/3.1.x/examples/portlets/struts-jpetstore/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portlets/struts-jpetstore/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/examples/portlets/struts-jpetstore/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<artifactId>struts-jpetstore</artifactId>
Modified: exo/portal/branches/3.1.x/examples/skins/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/skins/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/examples/skins/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<groupId>org.gatein.portal.examples.skins</groupId>
Modified: exo/portal/branches/3.1.x/examples/skins/simpleskin/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/skins/simpleskin/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/examples/skins/simpleskin/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.portal.examples.skins</groupId>
<artifactId>parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<artifactId>gatein-sample-skin</artifactId>
Modified: exo/portal/branches/3.1.x/gadgets/core/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/gadgets/core/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/gadgets/core/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -14,7 +14,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<artifactId>exo.portal.gadgets-core</artifactId>
Modified: exo/portal/branches/3.1.x/gadgets/eXoGadgets/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/gadgets/eXoGadgets/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/gadgets/eXoGadgets/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/gadgets/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/gadgets/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/gadgets/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<artifactId>exo.portal.gadgets</artifactId>
Modified: exo/portal/branches/3.1.x/gadgets/server/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/gadgets/server/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/gadgets/server/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<artifactId>exo.portal.gadgets-server</artifactId>
Modified: exo/portal/branches/3.1.x/packaging/module/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/packaging/module/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/packaging/module/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/packaging/pkg/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/packaging/pkg/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/packaging/pkg/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -72,19 +72,19 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.module</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
<type>js</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.product</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
<type>js</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss.patch-ear</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</dependency>
<!-- Missing packaging dependencies -->
Modified: exo/portal/branches/3.1.x/packaging/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/packaging/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/packaging/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/packaging/product/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/packaging/product/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/packaging/product/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/packaging/reports/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/packaging/reports/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/packaging/reports/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -31,7 +31,7 @@
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-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.x</connection>
- <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/exo/portal/branches/3.1.x</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/exo/portal/branches/3.1.x</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/exo/portal/tags/3.1.6-CR02-PLF</connection>
+ <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/exo/portal/tags/3.1.6-CR02-PLF</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/exo/portal/tags/3.1.6-CR02-PLF</url>
</scm>
<modules>
@@ -341,43 +341,43 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.pc</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.application-registry</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
@@ -387,64 +387,64 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.scripting</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.dashboard</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.core</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets-core</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
<type>test-jar</type>
</dependency>
Modified: exo/portal/branches/3.1.x/portlet/dashboard/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/portlet/dashboard/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/portlet/dashboard/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/portlet/exoadmin/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/portlet/exoadmin/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/portlet/exoadmin/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/portlet/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/portlet/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/portlet/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<artifactId>exo.portal.portlet</artifactId>
Modified: exo/portal/branches/3.1.x/portlet/web/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/portlet/web/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/portlet/web/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/server/jboss/patch-ear/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/jboss/patch-ear/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/server/jboss/patch-ear/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/server/jboss/plugin/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/jboss/plugin/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/server/jboss/plugin/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/server/jboss/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/jboss/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/server/jboss/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<artifactId>exo.portal.server.jboss</artifactId>
Modified: exo/portal/branches/3.1.x/server/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/server/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<artifactId>exo.portal.server</artifactId>
Modified: exo/portal/branches/3.1.x/server/tomcat/patch/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/tomcat/patch/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/server/tomcat/patch/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.tomcat</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/server/tomcat/plugin/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/tomcat/plugin/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/server/tomcat/plugin/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.tomcat</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/server/tomcat/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/tomcat/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/server/tomcat/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<artifactId>exo.portal.server.tomcat</artifactId>
Modified: exo/portal/branches/3.1.x/starter/ear/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/starter/ear/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/starter/ear/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-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.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
<type>war</type>
</dependency>
</dependencies>
Modified: exo/portal/branches/3.1.x/starter/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/starter/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/starter/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<artifactId>exo.portal.starter.root</artifactId>
Modified: exo/portal/branches/3.1.x/starter/war/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/starter/war/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/starter/war/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/testsuite/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/testsuite/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/testsuite/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<artifactId>exo.portal.testsuite</artifactId>
Modified: exo/portal/branches/3.1.x/testsuite/selenium-snifftests/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/testsuite/selenium-snifftests/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/testsuite/selenium-snifftests/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<artifactId>exo.portal.selenium.snifftests</artifactId>
Modified: exo/portal/branches/3.1.x/testsuite/webuibasedsamples/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/testsuite/webuibasedsamples/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/testsuite/webuibasedsamples/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<artifactId>exo.webui.based.samples</artifactId>
Modified: exo/portal/branches/3.1.x/web/eXoResources/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/web/eXoResources/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/web/eXoResources/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/web/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/web/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/web/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<artifactId>exo.portal.web</artifactId>
Modified: exo/portal/branches/3.1.x/web/portal/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/web/portal/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/web/portal/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/web/rest/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/web/rest/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/web/rest/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/webui/core/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/webui/core/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/webui/core/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/webui/eXo/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/webui/eXo/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/webui/eXo/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/webui/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/webui/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/webui/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<artifactId>exo.portal.webui</artifactId>
Modified: exo/portal/branches/3.1.x/webui/portal/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/webui/portal/pom.xml 2010-12-02 17:40:27 UTC (rev 5463)
+++ exo/portal/branches/3.1.x/webui/portal/pom.xml 2010-12-02 18:05:58 UTC (rev 5464)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.1.6-PLF-SNAPSHOT</version>
+ <version>3.1.6-CR02-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
14 years