gatein SVN: r1542 - portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/navigation.
by do-not-reply@jboss.org
Author: hoang_to
Date: 2010-02-07 22:35:02 -0500 (Sun, 07 Feb 2010)
New Revision: 1542
Modified:
portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/navigation/UINavigationManagement.java
Log:
GTNPORTAL-584: Moving up/down node could not be saved
Modified: portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/navigation/UINavigationManagement.java
===================================================================
--- portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/navigation/UINavigationManagement.java 2010-02-08 03:28:46 UTC (rev 1541)
+++ portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/navigation/UINavigationManagement.java 2010-02-08 03:35:02 UTC (rev 1542)
@@ -100,9 +100,12 @@
UINavigationNodeSelector uiNodeSelector = uiManagement.getChild(UINavigationNodeSelector.class);
UserPortalConfigService portalConfigService =
uiManagement.getApplicationComponent(UserPortalConfigService.class);
+
PageNavigation navigation = uiNodeSelector.getSelectedNavigation();
+ String editedOwnerType = navigation.getOwnerType();
+ String editedOwnerId = navigation.getOwnerId();
// Check existed
- PageNavigation persistNavigation = portalConfigService.getPageNavigation(navigation.getOwnerType(), navigation.getOwnerId());
+ PageNavigation persistNavigation = portalConfigService.getPageNavigation(editedOwnerType, editedOwnerId);
if (persistNavigation == null) {
UIApplication uiApp = Util.getPortalRequestContext().getUIApplication();
uiApp.addMessage(new ApplicationMessage("UINavigationManagement.msg.NavigationNotExistAnymore", null));
@@ -137,11 +140,19 @@
{
portalConfigService.update(navigation);
}
- UIPortal uiPortal = Util.getUIPortal();
- setNavigation(uiPortal.getNavigations(), navigation);
+
+ UIPortalApplication uiPortalApp = Util.getUIPortalApplication();
+ setNavigation(uiPortalApp.getNavigations(), navigation);
+
+ //Update UIPortal corredponding to edited navigation
+ UIPortal targetedUIPortal = uiPortalApp.getCachedUIPortal(editedOwnerType, editedOwnerId);
+ if(targetedUIPortal != null)
+ {
+ targetedUIPortal.setNavigation(navigation);
+ }
+
UIPopupWindow uiPopup = uiManagement.getParent();
uiPopup.setShow(false);
- UIPortalApplication uiPortalApp = Util.getUIPortalApplication();
UIWorkingWorkspace uiWorkingWS = uiPortalApp.getChildById(UIPortalApplication.UI_WORKING_WS_ID);
prContext.addUIComponentToUpdateByAjax(uiWorkingWS);
prContext.setFullRender(true);
14 years, 11 months
gatein SVN: r1541 - in portal/trunk: component/portal/src/main/java/org/exoplatform/portal/config/model and 1 other directories.
by do-not-reply@jboss.org
Author: liem_nguyen
Date: 2010-02-07 22:28:46 -0500 (Sun, 07 Feb 2010)
New Revision: 1541
Modified:
portal/trunk/component/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/UIDashboardContainer.java
portal/trunk/component/portal/src/main/java/org/exoplatform/portal/config/model/PageNavigation.java
portal/trunk/portlet/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/UITabPaneDashboard.java
Log:
GTNPORTAL-443 NPE when delete tab in special case
Modified: portal/trunk/component/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/UIDashboardContainer.java
===================================================================
--- portal/trunk/component/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/UIDashboardContainer.java 2010-02-08 02:15:15 UTC (rev 1540)
+++ portal/trunk/component/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/UIDashboardContainer.java 2010-02-08 03:28:46 UTC (rev 1541)
@@ -123,12 +123,13 @@
UIPortlet currentUIPortlet = UIPortlet.getCurrentUIPortlet();
// Get dashboard for merging
- Container dashboard;
+ Container dashboard = null;
if (currentUIPortlet.getStorageId() != null)
{
dashboard = service.loadDashboard(currentUIPortlet.getStorageId());
}
- else
+
+ if (dashboard == null)
{
dashboard = createContainer(COLUMN_CONTAINER, null);
}
Modified: portal/trunk/component/portal/src/main/java/org/exoplatform/portal/config/model/PageNavigation.java
===================================================================
--- portal/trunk/component/portal/src/main/java/org/exoplatform/portal/config/model/PageNavigation.java 2010-02-08 02:15:15 UTC (rev 1540)
+++ portal/trunk/component/portal/src/main/java/org/exoplatform/portal/config/model/PageNavigation.java 2010-02-08 03:28:46 UTC (rev 1541)
@@ -21,7 +21,6 @@
import org.exoplatform.portal.pom.data.NavigationData;
import org.exoplatform.portal.pom.data.NavigationNodeData;
-import org.gatein.mop.core.api.workspace.NavigationContainer;
import java.util.ArrayList;
import java.util.LinkedHashMap;
Modified: portal/trunk/portlet/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/UITabPaneDashboard.java
===================================================================
--- portal/trunk/portlet/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/UITabPaneDashboard.java 2010-02-08 02:15:15 UTC (rev 1540)
+++ portal/trunk/portlet/dashboard/src/main/java/org/exoplatform/dashboard/webui/component/UITabPaneDashboard.java 2010-02-08 03:28:46 UTC (rev 1541)
@@ -105,7 +105,7 @@
}
*/
-
+
public int getCurrentNumberOfTabs() throws Exception
{
@@ -162,51 +162,56 @@
List<PageNode> nodes = pageNavigation.getNodes();
PageNode tobeRemoved = nodes.get(nodeIndex);
PageNode selectedNode = uiPortal.getSelectedNode();
-
- // Refresh Node List to prevent session conflict
- nodes.clear();
- PageNavigation updateNav = configService.getPageNavigation(pageNavigation.getOwnerType(), pageNavigation.getOwnerId());
- int count = 0;
+
+ boolean isRemoved = true; // To check
+ PageNavigation updateNav =
+ configService.getPageNavigation(pageNavigation.getOwnerType(), pageNavigation.getOwnerId());
for (PageNode pageNode : updateNav.getNodes())
{
- nodes.add(pageNode);
- if (pageNode.getUri().equals(tobeRemoved.getUri())) {
- nodeIndex = count;
- tobeRemoved = pageNode;
+ if (pageNode.getUri().equals(tobeRemoved.getUri()))
+ {
+ isRemoved = false;
+ break;
}
- if (pageNode.getUri().equals(selectedNode.getUri())) {
- selectedNode = pageNode;
- }
- count ++;
}
-
- if (tobeRemoved.getUri().equals(selectedNode.getUri()))
+
+ if (nodes.size() >= 2)
{
- selectedNode = nodes.get(Math.max(0, nodeIndex - 1));
-
- } else if (!nodes.contains(selectedNode)) {
- selectedNode = nodes.get(0);
- }
-
- if (nodes.size() >= 2)
- {
+ // Remove node
nodes.remove(tobeRemoved);
- String pageRef = tobeRemoved.getPageReference();
- if (pageRef != null && pageRef.length() > 0)
+
+ // Choose selected Node
+ if (tobeRemoved.getUri().equals(selectedNode.getUri()))
{
- Page page = configService.getPage(pageRef);
- if (page != null)
- configService.remove(page);
+ selectedNode = nodes.get(Math.max(0, nodeIndex - 1));
+
}
-
- uiPortal.setSelectedNode(selectedNode);
- configService.update(pageNavigation);
- } else {
+ else if (!nodes.contains(selectedNode))
+ {
+ selectedNode = nodes.get(0);
+ }
+
+ // Update
+ if (!isRemoved)
+ {
+ String pageRef = tobeRemoved.getPageReference();
+ if (pageRef != null && pageRef.length() > 0)
+ {
+ Page page = configService.getPage(pageRef);
+ if (page != null)
+ configService.remove(page);
+ }
+ uiPortal.setSelectedNode(selectedNode);
+ configService.update(pageNavigation);
+ }
+ }
+ else
+ {
getAncestorOfType(UIApplication.class).addMessage(
new ApplicationMessage("UITabPaneDashboard.msg.cannotDeleteLastTab", null));
return null;
}
-
+
return selectedNode;
}
catch (Exception ex)
@@ -385,20 +390,21 @@
public void execute(Event<UITabPaneDashboard> event) throws Exception
{
UITabPaneDashboard source = event.getSource();
- WebuiRequestContext context = event.getRequestContext();
+ WebuiRequestContext context = event.getRequestContext();
int removedNodeIndex = Integer.parseInt(context.getRequestParameter(UIComponent.OBJECTID));
PageNode selectedNode = source.removePageNode(removedNodeIndex);
//If the node is removed successfully, then redirect to the node specified by tab on the left
if (selectedNode != null)
{
- // set maximizedUIComponent of UIPageBody is null if it is maximized portlet of removed page
- UIPortal uiPortal = Util.getUIPortal();
- UIPageBody uiPageBody = uiPortal.findFirstComponentOfType(UIPageBody.class);
- if(uiPageBody != null && uiPageBody.getMaximizedUIComponent() != null){
- uiPageBody.setMaximizedUIComponent(null);
- }
-
+ // set maximizedUIComponent of UIPageBody is null if it is maximized portlet of removed page
+ UIPortal uiPortal = Util.getUIPortal();
+ UIPageBody uiPageBody = uiPortal.findFirstComponentOfType(UIPageBody.class);
+ if (uiPageBody != null && uiPageBody.getMaximizedUIComponent() != null)
+ {
+ uiPageBody.setMaximizedUIComponent(null);
+ }
+
PortalRequestContext prContext = Util.getPortalRequestContext();
prContext.setResponseComplete(true);
prContext.getResponse().sendRedirect(prContext.getPortalURI() + selectedNode.getUri());
14 years, 11 months
gatein SVN: r1540 - portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/web.
by do-not-reply@jboss.org
Author: tuancn
Date: 2010-02-07 21:15:15 -0500 (Sun, 07 Feb 2010)
New Revision: 1540
Modified:
portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/web/GroovyPortlet_vi.properties
Log:
GTNPORTAL-481: Translate GateIn in Vietnamese
Modified: portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/web/GroovyPortlet_vi.properties
===================================================================
--- portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/web/GroovyPortlet_vi.properties 2010-02-08 02:13:55 UTC (rev 1539)
+++ portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/web/GroovyPortlet_vi.properties 2010-02-08 02:15:15 UTC (rev 1540)
@@ -37,7 +37,7 @@
UIHomePagePortlet.Label.Intro=The new version comes with a revolutionary user interface<br/>Classic and WebOS Desktop Layouts<br/> Drag and Drop Features. Create Page Wizard<br/>And many more...
UIHomePagePortlet.Label.Slogan=The Best of eXo and JBoss Portal<div>GateIn 3.0 Beta 5</div>
UIHomePagePortlet.Label.GuideText=Để biết thêm thông tin xin hãy liên lạc với chúng tôi.
-UIHomePagePortlet.Label.IntroText=GateIn là công thông tin thế hệ mới kết hợp giữa Red Hat và eXo Platform, tập trung những chuyên gia về cổng thông tin và cộng đồng tốt nhất, mang lại cho các hệ thống thông tin những tính năng đầy đủ nhất.
+UIHomePagePortlet.Label.IntroText=GateIn là cổng thông tin thế hệ mới kết hợp giữa Red Hat và eXo Platform, tập trung những chuyên gia về cổng thông tin và cộng đồng tốt nhất, mang lại cho các hệ thống thông tin những tính năng đầy đủ nhất.
UIHomePagePortlet.Label.Administrator=Quản trị
UIHomePagePortlet.Label.Manager=Quản lý
UIHomePagePortlet.Label.User=Người dùng
14 years, 11 months
gatein SVN: r1539 - portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/portal.
by do-not-reply@jboss.org
Author: tuancn
Date: 2010-02-07 21:13:55 -0500 (Sun, 07 Feb 2010)
New Revision: 1539
Modified:
portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/portal/classic_vi.xml
Log:
GTNPORTAL-481: Translate GateIn in Vietnamese
Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/portal/classic_vi.xml
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/portal/classic_vi.xml 2010-02-06 12:20:23 UTC (rev 1538)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/portal/classic_vi.xml 2010-02-08 02:13:55 UTC (rev 1539)
@@ -25,7 +25,7 @@
<portal>
<classic>
<home>Trang chủ</home>
- <sitemap>SiteMap</sitemap>
+ <sitemap>Sơ đồ</sitemap>
<webexplorer>Trình duyệt</webexplorer>
<groupnavigation>Group Navigation</groupnavigation>
<portalnavigation>Portal Navigation</portalnavigation>
14 years, 11 months
gatein SVN: r1538 - in components/mop/trunk: api/src/main/java/org/gatein/mop/api/workspace and 7 other directories.
by do-not-reply@jboss.org
Author: julien_viet
Date: 2010-02-06 07:20:23 -0500 (Sat, 06 Feb 2010)
New Revision: 1538
Added:
components/mop/trunk/api/src/main/java/org/gatein/mop/api/Adaptable.java
components/mop/trunk/core/src/test/java/org/gatein/mop/core/api/workspace/AdapterTestCase.java
components/mop/trunk/core/src/test/java/org/gatein/mop/core/api/workspace/Secured.java
components/mop/trunk/core/src/test/java/org/gatein/mop/core/api/workspace/SecuredImpl.java
components/mop/trunk/core/src/test/resources/conf/test-nodetypes.xml
Removed:
components/mop/trunk/core/src/test/resources/conf/content-nodetypes.xml
Modified:
components/mop/trunk/api/src/main/java/org/gatein/mop/api/workspace/WorkspaceObject.java
components/mop/trunk/core/pom.xml
components/mop/trunk/core/src/main/java/org/gatein/mop/core/api/MOPService.java
components/mop/trunk/core/src/main/java/org/gatein/mop/core/api/ModelImpl.java
components/mop/trunk/core/src/main/java/org/gatein/mop/core/api/workspace/WorkspaceObjectImpl.java
components/mop/trunk/core/src/test/java/org/gatein/mop/core/api/AbstractPOMTestCase.java
components/mop/trunk/core/src/test/java/org/gatein/mop/core/support/TestMOPService.java
components/mop/trunk/core/src/test/resources/conf/configuration.xml
Log:
GTNMOP-16 : Adapter pattern for workspace object
GTNMOP-15 : Update to Chromattic 1.0.0-beta17
Added: components/mop/trunk/api/src/main/java/org/gatein/mop/api/Adaptable.java
===================================================================
--- components/mop/trunk/api/src/main/java/org/gatein/mop/api/Adaptable.java (rev 0)
+++ components/mop/trunk/api/src/main/java/org/gatein/mop/api/Adaptable.java 2010-02-06 12:20:23 UTC (rev 1538)
@@ -0,0 +1,47 @@
+/*
+ * Copyright (C) 2010 eXo Platform SAS.
+ *
+ * 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.mop.api;
+
+/**
+ * The adapter pattern for the MOP.
+ *
+ * @author <a href="mailto:julien.viet@exoplatform.com">Julien Viet</a>
+ * @version $Revision$
+ */
+public interface Adaptable
+{
+
+ /**
+ * Returns an adapter for the specified type.
+ *
+ * @param adaptedType the adapted type class
+ * @param <A> the adapted type
+ * @return the adapter or null
+ */
+ <A> A adapt(Class<A> adaptedType);
+
+ /**
+ * Returns true if the workspace object is adapted to the specified type.
+ *
+ * @param adaptedType the adapted type
+ * @return the adaptability of the current object
+ */
+ boolean isAdapted(Class<?> adaptedType);
+}
Modified: components/mop/trunk/api/src/main/java/org/gatein/mop/api/workspace/WorkspaceObject.java
===================================================================
--- components/mop/trunk/api/src/main/java/org/gatein/mop/api/workspace/WorkspaceObject.java 2010-02-05 08:15:36 UTC (rev 1537)
+++ components/mop/trunk/api/src/main/java/org/gatein/mop/api/workspace/WorkspaceObject.java 2010-02-06 12:20:23 UTC (rev 1538)
@@ -18,6 +18,7 @@
*/
package org.gatein.mop.api.workspace;
+import org.gatein.mop.api.Adaptable;
import org.gatein.mop.api.Attributes;
/**
@@ -26,7 +27,7 @@
* @author <a href="mailto:julien.viet@exoplatform.com">Julien Viet</a>
* @version $Revision$
*/
-public interface WorkspaceObject
+public interface WorkspaceObject extends Adaptable
{
/**
Modified: components/mop/trunk/core/pom.xml
===================================================================
--- components/mop/trunk/core/pom.xml 2010-02-05 08:15:36 UTC (rev 1537)
+++ components/mop/trunk/core/pom.xml 2010-02-06 12:20:23 UTC (rev 1538)
@@ -38,7 +38,7 @@
<description>Model Object for Portal Core</description>
<properties>
- <org.chromattic.version>1.0.0-beta15</org.chromattic.version>
+ <org.chromattic.version>1.0.0-beta17</org.chromattic.version>
</properties>
<dependencies>
@@ -66,6 +66,12 @@
<dependency>
<groupId>org.chromattic</groupId>
+ <version>${org.chromattic.version}</version>
+ <artifactId>chromattic.ext</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.chromattic</groupId>
<artifactId>chromattic.apt</artifactId>
<version>${org.chromattic.version}</version>
<scope>compile</scope>
Modified: components/mop/trunk/core/src/main/java/org/gatein/mop/core/api/MOPService.java
===================================================================
--- components/mop/trunk/core/src/main/java/org/gatein/mop/core/api/MOPService.java 2010-02-05 08:15:36 UTC (rev 1537)
+++ components/mop/trunk/core/src/main/java/org/gatein/mop/core/api/MOPService.java 2010-02-06 12:20:23 UTC (rev 1538)
@@ -32,10 +32,10 @@
{
/** . */
- private ContentManagerRegistry contentManagerRegistry;
+ ContentManagerRegistry contentManagerRegistry;
/** . */
- private CustomizationContextProviderRegistry customizationContextResolvers;
+ CustomizationContextProviderRegistry customizationContextResolvers;
public MOPService()
{
@@ -78,6 +78,10 @@
//
}
+ protected <A> Class<? extends A> getConcreteAdapterType(Class<A> adapterType) {
+ return null;
+ }
+
protected abstract Chromattic getChromattic();
public void start() throws Exception
@@ -103,8 +107,7 @@
Chromattic chromattic = getChromattic();
ChromatticSession chromeSession = chromattic.openSession();
return new ModelImpl(
- chromeSession,
- contentManagerRegistry,
- customizationContextResolvers);
+ this, chromeSession
+ );
}
}
Modified: components/mop/trunk/core/src/main/java/org/gatein/mop/core/api/ModelImpl.java
===================================================================
--- components/mop/trunk/core/src/main/java/org/gatein/mop/core/api/ModelImpl.java 2010-02-05 08:15:36 UTC (rev 1537)
+++ components/mop/trunk/core/src/main/java/org/gatein/mop/core/api/ModelImpl.java 2010-02-06 12:20:23 UTC (rev 1538)
@@ -18,8 +18,6 @@
*/
package org.gatein.mop.core.api;
-import org.gatein.mop.core.api.content.ContentManagerRegistry;
-import org.gatein.mop.core.api.content.CustomizationContextProviderRegistry;
import org.gatein.mop.core.api.content.CustomizationContextResolver;
import org.gatein.mop.core.api.workspace.WorkspaceImpl;
import org.gatein.mop.core.api.workspace.SiteImpl;
@@ -85,15 +83,12 @@
private final ChromatticSession session;
/** . */
- private final ContentManagerRegistry contentManagers;
+ private WorkspaceImpl workspace;
/** . */
- private final CustomizationContextProviderRegistry customizationContextResolvers;
+ private final MOPService mop;
/** . */
- private WorkspaceImpl workspace;
-
- /** . */
private final CustomizationContextResolver customizationContextResolver = new CustomizationContextResolver()
{
public CustomizationContext resolve(String contextType, String contextId)
@@ -104,18 +99,15 @@
}
else
{
- return customizationContextResolvers.resolve(contextType, contextId);
+ return mop.customizationContextResolvers.resolve(contextType, contextId);
}
}
};
- public ModelImpl(ChromatticSession session, ContentManagerRegistry contentManagers, CustomizationContextProviderRegistry customizationContextResolvers)
+ public ModelImpl(MOPService mop, ChromatticSession session)
{
-
- //
this.session = session;
- this.contentManagers = contentManagers;
- this.customizationContextResolvers = customizationContextResolvers;
+ this.mop = mop;
//
session.addEventListener(contextualizer);
@@ -131,6 +123,24 @@
return getWorkspaceImpl();
}
+ public <A> A getAdapter(Object o, Class<A> adaptedType, boolean adapt)
+ {
+ Class<? extends A> adapterType = mop.getConcreteAdapterType(adaptedType);
+ if (adapterType == null) {
+ adapterType = adaptedType;
+ }
+ return _getAdapter(o, adapterType, adapt);
+ }
+
+ private <A> A _getAdapter(Object o, Class<A> type, boolean adapt) {
+ A a = session.getEmbedded(o, type);
+ if (a == null && adapt) {
+ a = session.create(type);
+ session.setEmbedded(o, type, a);
+ }
+ return a;
+ }
+
private WorkspaceImpl getWorkspaceImpl()
{
if (workspace == null)
@@ -183,8 +193,8 @@
public <O extends WorkspaceObject> Iterator<O> findObject(ObjectType<O> type, String statement)
{
- Class<? extends WorkspaceObjectImpl> impl = typeToClassImpl.get(type);
- return session.createQueryBuilder().from(impl).<O>where(statement).get().objects();
+ Class<O> impl = (Class<O>)typeToClassImpl.get(type);
+ return session.createQueryBuilder(impl).where(statement).get().objects();
}
public String pathOf(WorkspaceObject o)
@@ -203,12 +213,16 @@
if (o instanceof AbstractCustomization)
{
((AbstractCustomization)o).session = session;
- ((AbstractCustomization)o).registry = contentManagers;
+ ((AbstractCustomization)o).registry = mop.contentManagerRegistry;
}
- if (o instanceof ContextSpecialization)
+ else if (o instanceof ContextSpecialization)
{
((ContextSpecialization)o).setCustomizationContextResolver(customizationContextResolver);
}
+ else if (o instanceof WorkspaceObjectImpl)
+ {
+ ((WorkspaceObjectImpl)o).model = this;
+ }
}
public <O extends WorkspaceObject> O findObjectById(ObjectType<O> type, String id)
Modified: components/mop/trunk/core/src/main/java/org/gatein/mop/core/api/workspace/WorkspaceObjectImpl.java
===================================================================
--- components/mop/trunk/core/src/main/java/org/gatein/mop/core/api/workspace/WorkspaceObjectImpl.java 2010-02-05 08:15:36 UTC (rev 1537)
+++ components/mop/trunk/core/src/main/java/org/gatein/mop/core/api/workspace/WorkspaceObjectImpl.java 2010-02-06 12:20:23 UTC (rev 1538)
@@ -19,16 +19,17 @@
package org.gatein.mop.core.api.workspace;
import org.chromattic.api.annotations.FormattedBy;
+import org.chromattic.common.collection.AbstractFilterIterator;
import org.gatein.mop.api.workspace.WorkspaceObject;
import org.gatein.mop.api.workspace.ObjectType;
import org.gatein.mop.api.Attributes;
import org.gatein.mop.api.content.CustomizationContext;
import org.gatein.mop.core.api.MOPFormatter;
+import org.gatein.mop.core.api.ModelImpl;
import org.gatein.mop.core.util.AbstractAttributes;
import org.chromattic.api.annotations.Id;
import org.chromattic.api.annotations.Name;
import org.chromattic.api.annotations.Properties;
-import org.chromattic.common.AbstractFilterIterator;
import java.util.Map;
import java.util.Set;
@@ -44,6 +45,9 @@
{
/** . */
+ public ModelImpl model;
+
+ /** . */
private final Set<String> keys = new AbstractSet<String>()
{
@Override
@@ -120,6 +124,16 @@
@Properties
public abstract Map<String, Object> getProperties();
+ public <A> A adapt(Class<A> adaptedType)
+ {
+ return model.getAdapter(this, adaptedType, true);
+ }
+
+ public boolean isAdapted(Class<?> adaptedType)
+ {
+ return model.getAdapter(this, adaptedType, false) != null;
+ }
+
@Override
public String toString()
{
Modified: components/mop/trunk/core/src/test/java/org/gatein/mop/core/api/AbstractPOMTestCase.java
===================================================================
--- components/mop/trunk/core/src/test/java/org/gatein/mop/core/api/AbstractPOMTestCase.java 2010-02-05 08:15:36 UTC (rev 1537)
+++ components/mop/trunk/core/src/test/java/org/gatein/mop/core/api/AbstractPOMTestCase.java 2010-02-06 12:20:23 UTC (rev 1538)
@@ -20,12 +20,7 @@
import junit.framework.TestCase;
-import java.util.Collections;
-
import org.gatein.mop.core.support.TestMOPService;
-import org.gatein.mop.core.support.content.portlet.Preference;
-import org.gatein.mop.core.support.content.portlet.Preferences;
-import org.gatein.mop.core.support.content.portlet.PortletContentProvider;
/**
* @author <a href="mailto:julien.viet@exoplatform.com">Julien Viet</a>
@@ -35,24 +30,16 @@
{
/** . */
- protected MOPService pomService;
+ protected TestMOPService pomService;
@Override
protected void setUp() throws Exception
{
- Preferences weatherPreferences = new Preferences(Collections.<String, Preference>singletonMap(
- "zip", new Preference("zip", Collections.singletonList("marseille"), false)));
- PortletContentProvider portletContentProvider = new PortletContentProvider();
+ TestMOPService pomService = new TestMOPService();
//
- MOPService pomService = new TestMOPService();
-
- //
pomService.start();
- // Not needed for now
- // pomService.getContentManagerRegistry().register(Preferences.CONTENT_TYPE, portletContentProvider);
-
//
this.pomService = pomService;
}
Added: components/mop/trunk/core/src/test/java/org/gatein/mop/core/api/workspace/AdapterTestCase.java
===================================================================
--- components/mop/trunk/core/src/test/java/org/gatein/mop/core/api/workspace/AdapterTestCase.java (rev 0)
+++ components/mop/trunk/core/src/test/java/org/gatein/mop/core/api/workspace/AdapterTestCase.java 2010-02-06 12:20:23 UTC (rev 1538)
@@ -0,0 +1,49 @@
+/*
+ * Copyright (C) 2010 eXo Platform SAS.
+ *
+ * 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.mop.core.api.workspace;
+
+import org.gatein.mop.api.workspace.ObjectType;
+import org.gatein.mop.api.workspace.Site;
+import org.gatein.mop.api.workspace.Workspace;
+import org.gatein.mop.core.api.AbstractPOMTestCase;
+import org.gatein.mop.core.api.ModelImpl;
+
+/**
+ * @author <a href="mailto:julien.viet@exoplatform.com">Julien Viet</a>
+ * @version $Revision$
+ */
+public class AdapterTestCase extends AbstractPOMTestCase
+{
+
+ public void testSecured() throws Exception
+ {
+ pomService.addAdapter(Secured.class, SecuredImpl.class);
+ ModelImpl model = pomService.getModel();
+ Workspace workspace = model.getWorkspace();
+ Site site = workspace.addSite(ObjectType.PORTAL_SITE, "adaptablefoo");
+ assertFalse(site.isAdapted(Secured.class));
+ Secured secured = site.adapt(Secured.class);
+ assertNotNull(secured);
+ assertTrue(site.isAdapted(Secured.class));
+ assertTrue(secured.getPermissions().isEmpty());
+ secured.getPermissions().add("FOO");
+ model.save();
+ }
+}
Added: components/mop/trunk/core/src/test/java/org/gatein/mop/core/api/workspace/Secured.java
===================================================================
--- components/mop/trunk/core/src/test/java/org/gatein/mop/core/api/workspace/Secured.java (rev 0)
+++ components/mop/trunk/core/src/test/java/org/gatein/mop/core/api/workspace/Secured.java 2010-02-06 12:20:23 UTC (rev 1538)
@@ -0,0 +1,33 @@
+/*
+ * Copyright (C) 2010 eXo Platform SAS.
+ *
+ * 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.mop.core.api.workspace;
+
+import java.util.List;
+
+/**
+ * @author <a href="mailto:julien.viet@exoplatform.com">Julien Viet</a>
+ * @version $Revision$
+ */
+public interface Secured
+{
+
+ List<String> getPermissions();
+
+}
Added: components/mop/trunk/core/src/test/java/org/gatein/mop/core/api/workspace/SecuredImpl.java
===================================================================
--- components/mop/trunk/core/src/test/java/org/gatein/mop/core/api/workspace/SecuredImpl.java (rev 0)
+++ components/mop/trunk/core/src/test/java/org/gatein/mop/core/api/workspace/SecuredImpl.java 2010-02-06 12:20:23 UTC (rev 1538)
@@ -0,0 +1,38 @@
+/*
+ * Copyright (C) 2010 eXo Platform SAS.
+ *
+ * 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.mop.core.api.workspace;
+
+import org.chromattic.api.annotations.MixinType;
+import org.chromattic.api.annotations.Property;
+
+import java.util.List;
+
+/**
+ * @author <a href="mailto:julien.viet@exoplatform.com">Julien Viet</a>
+ * @version $Revision$
+ */
+@MixinType(name = "mop:secured")
+public abstract class SecuredImpl implements Secured
+{
+
+ @Property(name = "mop:permissions")
+ public abstract List<String> getPermissions();
+
+}
Modified: components/mop/trunk/core/src/test/java/org/gatein/mop/core/support/TestMOPService.java
===================================================================
--- components/mop/trunk/core/src/test/java/org/gatein/mop/core/support/TestMOPService.java 2010-02-05 08:15:36 UTC (rev 1537)
+++ components/mop/trunk/core/src/test/java/org/gatein/mop/core/support/TestMOPService.java 2010-02-06 12:20:23 UTC (rev 1538)
@@ -31,6 +31,7 @@
import org.gatein.mop.core.api.workspace.PageLinkImpl;
import org.gatein.mop.core.api.workspace.PortalSite;
import org.gatein.mop.core.api.workspace.PortalSiteContainer;
+import org.gatein.mop.core.api.workspace.SecuredImpl;
import org.gatein.mop.core.api.workspace.UIBodyImpl;
import org.gatein.mop.core.api.workspace.UIContainerImpl;
import org.gatein.mop.core.api.workspace.UIWindowImpl;
@@ -52,6 +53,9 @@
import org.gatein.mop.core.support.content.portlet.PortletPreferencesState;
import org.gatein.mop.core.support.content.portlet.Preferences;
+import java.util.HashMap;
+import java.util.Map;
+
/**
* @author <a href="mailto:julien.viet@exoplatform.com">Julien Viet</a>
* @version $Revision$
@@ -62,12 +66,15 @@
/** . */
private final Chromattic chromattic;
+ /** . */
+ private final Map<Class<?>, Class<?>> adapterMap;
+
public TestMOPService() throws Exception
{
ChromatticBuilder builder = ChromatticBuilder.create();
//
- builder.setOption(ChromatticBuilder.INSTRUMENTOR_CLASSNAME, "org.chromattic.apt.InstrumentorImpl");
+ builder.setOptionValue(ChromatticBuilder.INSTRUMENTOR_CLASSNAME, "org.chromattic.apt.InstrumentorImpl");
//
builder.add(WorkspaceImpl.class);
@@ -103,10 +110,24 @@
builder.add(GadgetState.class);
//
+ builder.add(SecuredImpl.class);
+
+ //
this.chromattic = builder.build();
+ this.adapterMap = new HashMap<Class<?>, Class<?>>();
}
+ public <A> void addAdapter(Class<A> adaptedType, Class<? extends A> adapterType) {
+ adapterMap.put(adaptedType, adapterType);
+ }
+
@Override
+ protected <A> Class<? extends A> getConcreteAdapterType(Class<A> adapterType)
+ {
+ return (Class<A>)adapterMap.get(adapterType);
+ }
+
+ @Override
protected Chromattic getChromattic()
{
return chromattic;
Modified: components/mop/trunk/core/src/test/resources/conf/configuration.xml
===================================================================
--- components/mop/trunk/core/src/test/resources/conf/configuration.xml 2010-02-05 08:15:36 UTC (rev 1537)
+++ components/mop/trunk/core/src/test/resources/conf/configuration.xml 2010-02-06 12:20:23 UTC (rev 1538)
@@ -57,7 +57,7 @@
<values-param>
<name>autoCreatedInNewRepository</name>
<description>Node types configuration file</description>
- <value>jar:/conf/content-nodetypes.xml</value>
+ <value>jar:/conf/test-nodetypes.xml</value>
</values-param>
</init-params>
</component-plugin>
Deleted: components/mop/trunk/core/src/test/resources/conf/content-nodetypes.xml
===================================================================
--- components/mop/trunk/core/src/test/resources/conf/content-nodetypes.xml 2010-02-05 08:15:36 UTC (rev 1537)
+++ components/mop/trunk/core/src/test/resources/conf/content-nodetypes.xml 2010-02-06 12:20:23 UTC (rev 1538)
@@ -1,63 +0,0 @@
-<!--
-
- Copyright (C) 2009 eXo Platform SAS.
-
- 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.
-
--->
-<nodeTypes xmlns:nt="http://www.jcp.org/jcr/nt/1.0" xmlns:mix="http://www.jcp.org/jcr/mix/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0">
-
- <nodeType name="mop:portletpreferences" isMixin="false" hasOrderableChildNodes="false" primaryItemName="">
- <supertypes>
- <supertype>mop:customizationstate</supertype>
- </supertypes>
- <childNodeDefinitions>
- <childNodeDefinition name="*" defaultPrimaryType="mop:portletpreference" autoCreated="false" mandatory="false"
- onParentVersion="COPY" protected="false" sameNameSiblings="false">
- <requiredPrimaryTypes>
- <requiredPrimaryType>mop:portletpreference</requiredPrimaryType>
- </requiredPrimaryTypes>
- </childNodeDefinition>
- </childNodeDefinitions>
- </nodeType>
-
- <nodeType name="mop:portletpreference" isMixin="false" hasOrderableChildNodes="false" primaryItemName="">
- <supertypes>
- <supertype>nt:base</supertype>
- <supertype>mix:referenceable</supertype>
- </supertypes>
- <propertyDefinitions>
- <propertyDefinition name="mop:value" requiredType="String" autoCreated="false" mandatory="false" onParentVersion="COPY" protected="false" multiple="true">
- <valueConstraints/>
- </propertyDefinition>
- <propertyDefinition name="mop:readonly" requiredType="Boolean" autoCreated="false" mandatory="false" onParentVersion="COPY" protected="false" multiple="false">
- <valueConstraints/>
- </propertyDefinition>
- </propertyDefinitions>
- </nodeType>
-
- <nodeType name="mop:gadget" isMixin="false" hasOrderableChildNodes="false" primaryItemName="">
- <supertypes>
- <supertype>mop:customizationstate</supertype>
- </supertypes>
- <propertyDefinitions>
- <propertyDefinition name="mop:prefs" requiredType="String" autoCreated="false" mandatory="false" onParentVersion="COPY" protected="false" multiple="false">
- <valueConstraints/>
- </propertyDefinition>
- </propertyDefinitions>
- </nodeType>
-
-</nodeTypes>
Copied: components/mop/trunk/core/src/test/resources/conf/test-nodetypes.xml (from rev 1174, components/mop/trunk/core/src/test/resources/conf/content-nodetypes.xml)
===================================================================
--- components/mop/trunk/core/src/test/resources/conf/test-nodetypes.xml (rev 0)
+++ components/mop/trunk/core/src/test/resources/conf/test-nodetypes.xml 2010-02-06 12:20:23 UTC (rev 1538)
@@ -0,0 +1,71 @@
+<!--
+
+ Copyright (C) 2009 eXo Platform SAS.
+
+ 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.
+
+-->
+<nodeTypes xmlns:nt="http://www.jcp.org/jcr/nt/1.0" xmlns:mix="http://www.jcp.org/jcr/mix/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0">
+
+ <nodeType name="mop:portletpreferences" isMixin="false" hasOrderableChildNodes="false" primaryItemName="">
+ <supertypes>
+ <supertype>mop:customizationstate</supertype>
+ </supertypes>
+ <childNodeDefinitions>
+ <childNodeDefinition name="*" defaultPrimaryType="mop:portletpreference" autoCreated="false" mandatory="false"
+ onParentVersion="COPY" protected="false" sameNameSiblings="false">
+ <requiredPrimaryTypes>
+ <requiredPrimaryType>mop:portletpreference</requiredPrimaryType>
+ </requiredPrimaryTypes>
+ </childNodeDefinition>
+ </childNodeDefinitions>
+ </nodeType>
+
+ <nodeType name="mop:portletpreference" isMixin="false" hasOrderableChildNodes="false" primaryItemName="">
+ <supertypes>
+ <supertype>nt:base</supertype>
+ <supertype>mix:referenceable</supertype>
+ </supertypes>
+ <propertyDefinitions>
+ <propertyDefinition name="mop:value" requiredType="String" autoCreated="false" mandatory="false" onParentVersion="COPY" protected="false" multiple="true">
+ <valueConstraints/>
+ </propertyDefinition>
+ <propertyDefinition name="mop:readonly" requiredType="Boolean" autoCreated="false" mandatory="false" onParentVersion="COPY" protected="false" multiple="false">
+ <valueConstraints/>
+ </propertyDefinition>
+ </propertyDefinitions>
+ </nodeType>
+
+ <nodeType name="mop:gadget" isMixin="false" hasOrderableChildNodes="false" primaryItemName="">
+ <supertypes>
+ <supertype>mop:customizationstate</supertype>
+ </supertypes>
+ <propertyDefinitions>
+ <propertyDefinition name="mop:prefs" requiredType="String" autoCreated="false" mandatory="false" onParentVersion="COPY" protected="false" multiple="false">
+ <valueConstraints/>
+ </propertyDefinition>
+ </propertyDefinitions>
+ </nodeType>
+
+ <nodeType name="mop:secured" isMixin="true" hasOrderableChildNodes="false" primaryItemName="">
+ <propertyDefinitions>
+ <propertyDefinition name="mop:permissions" requiredType="String" autoCreated="false" mandatory="false" onParentVersion="COPY" protected="false" multiple="true">
+ <valueConstraints/>
+ </propertyDefinition>
+ </propertyDefinitions>
+ </nodeType>
+
+</nodeTypes>
14 years, 11 months
gatein SVN: r1537 - portal/trunk/component/web/src/main/java/org/exoplatform/web/application/javascript.
by do-not-reply@jboss.org
Author: tan_pham_dinh
Date: 2010-02-05 03:15:36 -0500 (Fri, 05 Feb 2010)
New Revision: 1537
Modified:
portal/trunk/component/web/src/main/java/org/exoplatform/web/application/javascript/JavascriptConfigService.java
Log:
GTNPORTAL-541: Unremove addExtendJavascript code
Modified: portal/trunk/component/web/src/main/java/org/exoplatform/web/application/javascript/JavascriptConfigService.java
===================================================================
--- portal/trunk/component/web/src/main/java/org/exoplatform/web/application/javascript/JavascriptConfigService.java 2010-02-05 05:55:49 UTC (rev 1536)
+++ portal/trunk/component/web/src/main/java/org/exoplatform/web/application/javascript/JavascriptConfigService.java 2010-02-05 08:15:36 UTC (rev 1537)
@@ -90,16 +90,14 @@
return availableScriptsPaths_;
}
- /*
- * TANPD: This method no longer needed
- * public void addExtendedJavascript(String module, String scriptPath, ServletContext scontext, String scriptData)
+ public void addExtendedJavascript(String module, String scriptPath, ServletContext scontext, String scriptData)
{
String servletContextName = scontext.getServletContextName();
String path = "/" + servletContextName + scriptPath;
availableScripts_.add(module);
availableScriptsPaths_.add(path);
extendedJavascripts.put(path, scriptData);
- }*/
+ }
@SuppressWarnings("unchecked")
public void addJavascripts(List<JavascriptKey> jsKeys, ServletContext scontext)
14 years, 11 months
gatein SVN: r1536 - in portal/branches/3.0.0-Beta05-CP: component and 62 other directories.
by do-not-reply@jboss.org
Author: aheritier
Date: 2010-02-05 00:55:49 -0500 (Fri, 05 Feb 2010)
New Revision: 1536
Modified:
portal/branches/3.0.0-Beta05-CP/component/application-registry/pom.xml
portal/branches/3.0.0-Beta05-CP/component/common/pom.xml
portal/branches/3.0.0-Beta05-CP/component/dashboard/pom.xml
portal/branches/3.0.0-Beta05-CP/component/identity/pom.xml
portal/branches/3.0.0-Beta05-CP/component/pc/pom.xml
portal/branches/3.0.0-Beta05-CP/component/pom.xml
portal/branches/3.0.0-Beta05-CP/component/portal/pom.xml
portal/branches/3.0.0-Beta05-CP/component/resources/pom.xml
portal/branches/3.0.0-Beta05-CP/component/scripting/pom.xml
portal/branches/3.0.0-Beta05-CP/component/test/core/pom.xml
portal/branches/3.0.0-Beta05-CP/component/test/jcr/pom.xml
portal/branches/3.0.0-Beta05-CP/component/test/organization/pom.xml
portal/branches/3.0.0-Beta05-CP/component/test/pom.xml
portal/branches/3.0.0-Beta05-CP/component/web/pom.xml
portal/branches/3.0.0-Beta05-CP/component/wsrp/pom.xml
portal/branches/3.0.0-Beta05-CP/component/xml-parser/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/extension/config/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/extension/ear/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/extension/jar/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/extension/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/extension/war/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/portal/config/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/portal/ear/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/portal/jar/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/portal/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/portal/rest-war/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/portal/war/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/portlets/jsfhellouser/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/portlets/jsphellouser/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/portlets/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/portlets/simplesthelloworld/pom.xml
portal/branches/3.0.0-Beta05-CP/gadgets/core/pom.xml
portal/branches/3.0.0-Beta05-CP/gadgets/eXoGadgets/pom.xml
portal/branches/3.0.0-Beta05-CP/gadgets/pom.xml
portal/branches/3.0.0-Beta05-CP/gadgets/server/pom.xml
portal/branches/3.0.0-Beta05-CP/packaging/module/pom.xml
portal/branches/3.0.0-Beta05-CP/packaging/pkg/pom.xml
portal/branches/3.0.0-Beta05-CP/packaging/pom.xml
portal/branches/3.0.0-Beta05-CP/packaging/product/pom.xml
portal/branches/3.0.0-Beta05-CP/packaging/reports/pom.xml
portal/branches/3.0.0-Beta05-CP/pom.xml
portal/branches/3.0.0-Beta05-CP/portlet/dashboard/pom.xml
portal/branches/3.0.0-Beta05-CP/portlet/exoadmin/pom.xml
portal/branches/3.0.0-Beta05-CP/portlet/pom.xml
portal/branches/3.0.0-Beta05-CP/portlet/web/pom.xml
portal/branches/3.0.0-Beta05-CP/server/jboss/patch-ear/pom.xml
portal/branches/3.0.0-Beta05-CP/server/jboss/plugin/pom.xml
portal/branches/3.0.0-Beta05-CP/server/jboss/pom.xml
portal/branches/3.0.0-Beta05-CP/server/pom.xml
portal/branches/3.0.0-Beta05-CP/server/tomcat/patch/pom.xml
portal/branches/3.0.0-Beta05-CP/server/tomcat/plugin/pom.xml
portal/branches/3.0.0-Beta05-CP/server/tomcat/pom.xml
portal/branches/3.0.0-Beta05-CP/starter/ear/pom.xml
portal/branches/3.0.0-Beta05-CP/starter/pom.xml
portal/branches/3.0.0-Beta05-CP/starter/war/pom.xml
portal/branches/3.0.0-Beta05-CP/web/eXoResources/pom.xml
portal/branches/3.0.0-Beta05-CP/web/pom.xml
portal/branches/3.0.0-Beta05-CP/web/portal/pom.xml
portal/branches/3.0.0-Beta05-CP/web/rest/pom.xml
portal/branches/3.0.0-Beta05-CP/webui/core/pom.xml
portal/branches/3.0.0-Beta05-CP/webui/eXo/pom.xml
portal/branches/3.0.0-Beta05-CP/webui/pom.xml
portal/branches/3.0.0-Beta05-CP/webui/portal/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: portal/branches/3.0.0-Beta05-CP/component/application-registry/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/application-registry/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/component/application-registry/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
@@ -56,28 +56,28 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Modified: portal/branches/3.0.0-Beta05-CP/component/common/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/common/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/component/common/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.common</artifactId>
@@ -67,14 +67,14 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<scope>test</scope>
</dependency>
Modified: portal/branches/3.0.0-Beta05-CP/component/dashboard/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/dashboard/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/component/dashboard/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,14 +35,14 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: portal/branches/3.0.0-Beta05-CP/component/identity/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/identity/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/component/identity/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/component/pc/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/pc/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/component/pc/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,13 +23,13 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.pc</artifactId>
<packaging>jar</packaging>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<name>GateIn Portal Component PC integration</name>
<dependencies>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.gatein.common</groupId>
Modified: portal/branches/3.0.0-Beta05-CP/component/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/component/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.component</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/component/portal/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/portal/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/component/portal/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -46,25 +46,25 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.pc</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
@@ -102,21 +102,21 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<scope>test</scope>
</dependency>
Modified: portal/branches/3.0.0-Beta05-CP/component/resources/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/resources/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/component/resources/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -76,7 +76,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
Modified: portal/branches/3.0.0-Beta05-CP/component/scripting/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/scripting/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/component/scripting/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -40,13 +40,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.xml-parser</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
Modified: portal/branches/3.0.0-Beta05-CP/component/test/core/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/test/core/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/component/test/core/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/component/test/jcr/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/test/jcr/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/component/test/jcr/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
Modified: portal/branches/3.0.0-Beta05-CP/component/test/organization/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/test/organization/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/component/test/organization/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,13 +35,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
Modified: portal/branches/3.0.0-Beta05-CP/component/test/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/test/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/component/test/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/component/web/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/web/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/component/web/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -55,13 +55,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
@@ -78,7 +78,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.scripting</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
Modified: portal/branches/3.0.0-Beta05-CP/component/wsrp/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/wsrp/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/component/wsrp/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.wsrp</artifactId>
<packaging>jar</packaging>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<name>GateIn Portal Component WSRP integration</name>
<dependencies>
Modified: portal/branches/3.0.0-Beta05-CP/component/xml-parser/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/xml-parser/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/component/xml-parser/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/examples/extension/config/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/extension/config/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/examples/extension/config/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/examples/extension/ear/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/extension/ear/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/examples/extension/ear/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-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.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.jar</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.war</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
Modified: portal/branches/3.0.0-Beta05-CP/examples/extension/jar/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/extension/jar/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/examples/extension/jar/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: portal/branches/3.0.0-Beta05-CP/examples/extension/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/extension/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/examples/extension/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.sample.extension.root</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/examples/extension/war/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/extension/war/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/examples/extension/war/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/examples/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/examples/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.sample</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/examples/portal/config/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/portal/config/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/examples/portal/config/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/examples/portal/ear/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/portal/ear/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/examples/portal/ear/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-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.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.jar</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.war</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.rest-war</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
Modified: portal/branches/3.0.0-Beta05-CP/examples/portal/jar/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/portal/jar/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/examples/portal/jar/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: portal/branches/3.0.0-Beta05-CP/examples/portal/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/portal/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/examples/portal/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.sample.portal.root</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/examples/portal/rest-war/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/portal/rest-war/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/examples/portal/rest-war/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/examples/portal/war/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/portal/war/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/examples/portal/war/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/examples/portlets/jsfhellouser/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/portlets/jsfhellouser/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/examples/portlets/jsfhellouser/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<artifactId>gatein-jsf-hellouser</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/examples/portlets/jsphellouser/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/portlets/jsphellouser/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/examples/portlets/jsphellouser/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<artifactId>gatein-jsp-hellouser</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/examples/portlets/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/portlets/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/examples/portlets/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
Modified: portal/branches/3.0.0-Beta05-CP/examples/portlets/simplesthelloworld/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/portlets/simplesthelloworld/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/examples/portlets/simplesthelloworld/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<artifactId>gatein-simplest-helloworld</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/gadgets/core/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/gadgets/core/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/gadgets/core/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -14,7 +14,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gadgets-core</artifactId>
@@ -65,7 +65,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: portal/branches/3.0.0-Beta05-CP/gadgets/eXoGadgets/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/gadgets/eXoGadgets/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/gadgets/eXoGadgets/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -39,14 +39,14 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: portal/branches/3.0.0-Beta05-CP/gadgets/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/gadgets/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/gadgets/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gadgets</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/gadgets/server/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/gadgets/server/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/gadgets/server/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gadgets-server</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/packaging/module/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/packaging/module/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/packaging/module/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/packaging/pkg/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/packaging/pkg/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/packaging/pkg/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -67,13 +67,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.module</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<type>js</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.product</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<type>js</type>
</dependency>
</dependencies>
Modified: portal/branches/3.0.0-Beta05-CP/packaging/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/packaging/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/packaging/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/packaging/product/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/packaging/product/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/packaging/product/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/packaging/reports/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/packaging/reports/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/packaging/reports/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -31,7 +31,7 @@
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<packaging>pom</packaging>
<name>GateIn - Portal</name>
@@ -70,9 +70,9 @@
</properties>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/portal/tags/3.0.0-Beta05-CP01</connection>
- <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/portal/tags/3.0.0-Beta05-CP01</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/portal/tags/3.0.0-Beta05-CP01</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/portal/branches/3.0.0-Beta0...</connection>
+ <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/portal/branches/3.0.0-Beta05-CP</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/portal/branches/3.0.0-Beta05-CP</url>
</scm>
<modules>
Modified: portal/branches/3.0.0-Beta05-CP/portlet/dashboard/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/portlet/dashboard/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/portlet/dashboard/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,20 +35,20 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.dashboard</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: portal/branches/3.0.0-Beta05-CP/portlet/exoadmin/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/portlet/exoadmin/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/portlet/exoadmin/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,14 +35,14 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
Modified: portal/branches/3.0.0-Beta05-CP/portlet/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/portlet/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/portlet/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.portlet</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/portlet/web/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/portlet/web/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/portlet/web/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: portal/branches/3.0.0-Beta05-CP/server/jboss/patch-ear/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/server/jboss/patch-ear/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/server/jboss/patch-ear/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/server/jboss/plugin/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/server/jboss/plugin/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/server/jboss/plugin/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/server/jboss/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/server/jboss/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/server/jboss/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.server.jboss</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/server/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/server/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/server/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.server</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/server/tomcat/patch/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/server/tomcat/patch/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/server/tomcat/patch/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.tomcat</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/server/tomcat/plugin/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/server/tomcat/plugin/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/server/tomcat/plugin/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.tomcat</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/server/tomcat/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/server/tomcat/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/server/tomcat/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.server.tomcat</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/starter/ear/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/starter/ear/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/starter/ear/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-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.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
Modified: portal/branches/3.0.0-Beta05-CP/starter/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/starter/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/starter/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.starter.root</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/starter/war/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/starter/war/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/starter/war/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/web/eXoResources/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/web/eXoResources/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/web/eXoResources/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/web/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/web/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/web/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.web</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/web/portal/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/web/portal/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/web/portal/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/web/rest/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/web/rest/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/web/rest/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/webui/core/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/webui/core/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/webui/core/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.gatein.common</groupId>
Modified: portal/branches/3.0.0-Beta05-CP/webui/eXo/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/webui/eXo/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/webui/eXo/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,13 +35,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.core</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.application-registry</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: portal/branches/3.0.0-Beta05-CP/webui/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/webui/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/webui/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.webui</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/webui/portal/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/webui/portal/pom.xml 2010-02-05 05:54:19 UTC (rev 1535)
+++ portal/branches/3.0.0-Beta05-CP/webui/portal/pom.xml 2010-02-05 05:55:49 UTC (rev 1536)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -45,37 +45,37 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.core</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.application-registry</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.pc</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
<dependency>
@@ -90,7 +90,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets-core</artifactId>
- <version>3.0.0-Beta05-CP01</version>
+ <version>3.0.0-Beta05-CP02-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
14 years, 11 months
gatein SVN: r1535 - portal/tags.
by do-not-reply@jboss.org
Author: aheritier
Date: 2010-02-05 00:54:19 -0500 (Fri, 05 Feb 2010)
New Revision: 1535
Added:
portal/tags/3.0.0-Beta05-CP01/
Log:
[maven-scm] copy for tag 3.0.0-Beta05-CP01
Copied: portal/tags/3.0.0-Beta05-CP01 (from rev 1534, portal/branches/3.0.0-Beta05-CP)
14 years, 11 months
gatein SVN: r1534 - in portal/branches/3.0.0-Beta05-CP: component and 62 other directories.
by do-not-reply@jboss.org
Author: aheritier
Date: 2010-02-05 00:53:56 -0500 (Fri, 05 Feb 2010)
New Revision: 1534
Modified:
portal/branches/3.0.0-Beta05-CP/component/application-registry/pom.xml
portal/branches/3.0.0-Beta05-CP/component/common/pom.xml
portal/branches/3.0.0-Beta05-CP/component/dashboard/pom.xml
portal/branches/3.0.0-Beta05-CP/component/identity/pom.xml
portal/branches/3.0.0-Beta05-CP/component/pc/pom.xml
portal/branches/3.0.0-Beta05-CP/component/pom.xml
portal/branches/3.0.0-Beta05-CP/component/portal/pom.xml
portal/branches/3.0.0-Beta05-CP/component/resources/pom.xml
portal/branches/3.0.0-Beta05-CP/component/scripting/pom.xml
portal/branches/3.0.0-Beta05-CP/component/test/core/pom.xml
portal/branches/3.0.0-Beta05-CP/component/test/jcr/pom.xml
portal/branches/3.0.0-Beta05-CP/component/test/organization/pom.xml
portal/branches/3.0.0-Beta05-CP/component/test/pom.xml
portal/branches/3.0.0-Beta05-CP/component/web/pom.xml
portal/branches/3.0.0-Beta05-CP/component/wsrp/pom.xml
portal/branches/3.0.0-Beta05-CP/component/xml-parser/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/extension/config/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/extension/ear/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/extension/jar/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/extension/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/extension/war/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/portal/config/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/portal/ear/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/portal/jar/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/portal/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/portal/rest-war/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/portal/war/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/portlets/jsfhellouser/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/portlets/jsphellouser/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/portlets/pom.xml
portal/branches/3.0.0-Beta05-CP/examples/portlets/simplesthelloworld/pom.xml
portal/branches/3.0.0-Beta05-CP/gadgets/core/pom.xml
portal/branches/3.0.0-Beta05-CP/gadgets/eXoGadgets/pom.xml
portal/branches/3.0.0-Beta05-CP/gadgets/pom.xml
portal/branches/3.0.0-Beta05-CP/gadgets/server/pom.xml
portal/branches/3.0.0-Beta05-CP/packaging/module/pom.xml
portal/branches/3.0.0-Beta05-CP/packaging/pkg/pom.xml
portal/branches/3.0.0-Beta05-CP/packaging/pom.xml
portal/branches/3.0.0-Beta05-CP/packaging/product/pom.xml
portal/branches/3.0.0-Beta05-CP/packaging/reports/pom.xml
portal/branches/3.0.0-Beta05-CP/pom.xml
portal/branches/3.0.0-Beta05-CP/portlet/dashboard/pom.xml
portal/branches/3.0.0-Beta05-CP/portlet/exoadmin/pom.xml
portal/branches/3.0.0-Beta05-CP/portlet/pom.xml
portal/branches/3.0.0-Beta05-CP/portlet/web/pom.xml
portal/branches/3.0.0-Beta05-CP/server/jboss/patch-ear/pom.xml
portal/branches/3.0.0-Beta05-CP/server/jboss/plugin/pom.xml
portal/branches/3.0.0-Beta05-CP/server/jboss/pom.xml
portal/branches/3.0.0-Beta05-CP/server/pom.xml
portal/branches/3.0.0-Beta05-CP/server/tomcat/patch/pom.xml
portal/branches/3.0.0-Beta05-CP/server/tomcat/plugin/pom.xml
portal/branches/3.0.0-Beta05-CP/server/tomcat/pom.xml
portal/branches/3.0.0-Beta05-CP/starter/ear/pom.xml
portal/branches/3.0.0-Beta05-CP/starter/pom.xml
portal/branches/3.0.0-Beta05-CP/starter/war/pom.xml
portal/branches/3.0.0-Beta05-CP/web/eXoResources/pom.xml
portal/branches/3.0.0-Beta05-CP/web/pom.xml
portal/branches/3.0.0-Beta05-CP/web/portal/pom.xml
portal/branches/3.0.0-Beta05-CP/web/rest/pom.xml
portal/branches/3.0.0-Beta05-CP/webui/core/pom.xml
portal/branches/3.0.0-Beta05-CP/webui/eXo/pom.xml
portal/branches/3.0.0-Beta05-CP/webui/pom.xml
portal/branches/3.0.0-Beta05-CP/webui/portal/pom.xml
Log:
[maven-release-plugin] prepare release 3.0.0-Beta05-CP01
Modified: portal/branches/3.0.0-Beta05-CP/component/application-registry/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/application-registry/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/component/application-registry/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
@@ -56,28 +56,28 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Modified: portal/branches/3.0.0-Beta05-CP/component/common/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/common/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/component/common/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.common</artifactId>
@@ -67,14 +67,14 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<scope>test</scope>
</dependency>
Modified: portal/branches/3.0.0-Beta05-CP/component/dashboard/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/dashboard/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/component/dashboard/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,14 +35,14 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: portal/branches/3.0.0-Beta05-CP/component/identity/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/identity/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/component/identity/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/component/pc/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/pc/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/component/pc/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,13 +23,13 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.pc</artifactId>
<packaging>jar</packaging>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<name>GateIn Portal Component PC integration</name>
<dependencies>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
<groupId>org.gatein.common</groupId>
Modified: portal/branches/3.0.0-Beta05-CP/component/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/component/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<artifactId>exo.portal.component</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/component/portal/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/portal/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/component/portal/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -46,25 +46,25 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.pc</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
@@ -102,21 +102,21 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<scope>test</scope>
</dependency>
Modified: portal/branches/3.0.0-Beta05-CP/component/resources/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/resources/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/component/resources/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -76,7 +76,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
Modified: portal/branches/3.0.0-Beta05-CP/component/scripting/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/scripting/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/component/scripting/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -40,13 +40,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.xml-parser</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
Modified: portal/branches/3.0.0-Beta05-CP/component/test/core/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/test/core/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/component/test/core/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/component/test/jcr/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/test/jcr/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/component/test/jcr/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
Modified: portal/branches/3.0.0-Beta05-CP/component/test/organization/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/test/organization/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/component/test/organization/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,13 +35,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
Modified: portal/branches/3.0.0-Beta05-CP/component/test/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/test/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/component/test/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/component/web/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/web/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/component/web/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -55,13 +55,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
@@ -78,7 +78,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.scripting</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
Modified: portal/branches/3.0.0-Beta05-CP/component/wsrp/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/wsrp/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/component/wsrp/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.wsrp</artifactId>
<packaging>jar</packaging>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<name>GateIn Portal Component WSRP integration</name>
<dependencies>
Modified: portal/branches/3.0.0-Beta05-CP/component/xml-parser/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/component/xml-parser/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/component/xml-parser/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/examples/extension/config/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/extension/config/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/examples/extension/config/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/examples/extension/ear/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/extension/ear/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/examples/extension/ear/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</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.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.jar</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.war</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<type>war</type>
</dependency>
</dependencies>
Modified: portal/branches/3.0.0-Beta05-CP/examples/extension/jar/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/extension/jar/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/examples/extension/jar/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
</dependencies>
</project>
Modified: portal/branches/3.0.0-Beta05-CP/examples/extension/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/extension/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/examples/extension/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<artifactId>exo.portal.sample.extension.root</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/examples/extension/war/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/extension/war/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/examples/extension/war/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/examples/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/examples/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<artifactId>exo.portal.sample</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/examples/portal/config/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/portal/config/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/examples/portal/config/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/examples/portal/ear/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/portal/ear/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/examples/portal/ear/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</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.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.jar</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.war</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.rest-war</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<type>war</type>
</dependency>
</dependencies>
Modified: portal/branches/3.0.0-Beta05-CP/examples/portal/jar/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/portal/jar/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/examples/portal/jar/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
</dependencies>
</project>
Modified: portal/branches/3.0.0-Beta05-CP/examples/portal/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/portal/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/examples/portal/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<artifactId>exo.portal.sample.portal.root</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/examples/portal/rest-war/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/portal/rest-war/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/examples/portal/rest-war/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/examples/portal/war/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/portal/war/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/examples/portal/war/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/examples/portlets/jsfhellouser/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/portlets/jsfhellouser/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/examples/portlets/jsfhellouser/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<artifactId>gatein-jsf-hellouser</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/examples/portlets/jsphellouser/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/portlets/jsphellouser/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/examples/portlets/jsphellouser/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<artifactId>gatein-jsp-hellouser</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/examples/portlets/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/portlets/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/examples/portlets/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
Modified: portal/branches/3.0.0-Beta05-CP/examples/portlets/simplesthelloworld/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/examples/portlets/simplesthelloworld/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/examples/portlets/simplesthelloworld/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<artifactId>gatein-simplest-helloworld</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/gadgets/core/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/gadgets/core/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/gadgets/core/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -14,7 +14,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<artifactId>exo.portal.gadgets-core</artifactId>
@@ -65,7 +65,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: portal/branches/3.0.0-Beta05-CP/gadgets/eXoGadgets/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/gadgets/eXoGadgets/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/gadgets/eXoGadgets/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -39,14 +39,14 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: portal/branches/3.0.0-Beta05-CP/gadgets/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/gadgets/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/gadgets/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<artifactId>exo.portal.gadgets</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/gadgets/server/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/gadgets/server/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/gadgets/server/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<artifactId>exo.portal.gadgets-server</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/packaging/module/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/packaging/module/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/packaging/module/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/packaging/pkg/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/packaging/pkg/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/packaging/pkg/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -67,13 +67,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.module</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<type>js</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.product</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<type>js</type>
</dependency>
</dependencies>
Modified: portal/branches/3.0.0-Beta05-CP/packaging/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/packaging/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/packaging/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/packaging/product/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/packaging/product/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/packaging/product/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/packaging/reports/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/packaging/reports/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/packaging/reports/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -31,7 +31,7 @@
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<packaging>pom</packaging>
<name>GateIn - Portal</name>
@@ -70,9 +70,9 @@
</properties>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/portal/branches/3.0.0-Beta0...</connection>
- <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/portal/branches/3.0.0-Beta05-CP</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/portal/branches/3.0.0-Beta05-CP</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/portal/tags/3.0.0-Beta05-CP01</connection>
+ <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/portal/tags/3.0.0-Beta05-CP01</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/portal/tags/3.0.0-Beta05-CP01</url>
</scm>
<modules>
Modified: portal/branches/3.0.0-Beta05-CP/portlet/dashboard/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/portlet/dashboard/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/portlet/dashboard/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,20 +35,20 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.dashboard</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: portal/branches/3.0.0-Beta05-CP/portlet/exoadmin/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/portlet/exoadmin/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/portlet/exoadmin/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,14 +35,14 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<scope>provided</scope>
</dependency>
Modified: portal/branches/3.0.0-Beta05-CP/portlet/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/portlet/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/portlet/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<artifactId>exo.portal.portlet</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/portlet/web/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/portlet/web/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/portlet/web/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: portal/branches/3.0.0-Beta05-CP/server/jboss/patch-ear/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/server/jboss/patch-ear/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/server/jboss/patch-ear/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/server/jboss/plugin/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/server/jboss/plugin/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/server/jboss/plugin/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/server/jboss/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/server/jboss/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/server/jboss/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<artifactId>exo.portal.server.jboss</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/server/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/server/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/server/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<artifactId>exo.portal.server</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/server/tomcat/patch/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/server/tomcat/patch/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/server/tomcat/patch/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.tomcat</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/server/tomcat/plugin/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/server/tomcat/plugin/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/server/tomcat/plugin/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.tomcat</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/server/tomcat/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/server/tomcat/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/server/tomcat/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<artifactId>exo.portal.server.tomcat</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/starter/ear/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/starter/ear/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/starter/ear/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</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.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
<type>war</type>
</dependency>
</dependencies>
Modified: portal/branches/3.0.0-Beta05-CP/starter/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/starter/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/starter/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<artifactId>exo.portal.starter.root</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/starter/war/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/starter/war/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/starter/war/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/web/eXoResources/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/web/eXoResources/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/web/eXoResources/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/web/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/web/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/web/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<artifactId>exo.portal.web</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/web/portal/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/web/portal/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/web/portal/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/web/rest/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/web/rest/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/web/rest/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/branches/3.0.0-Beta05-CP/webui/core/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/webui/core/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/webui/core/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
<groupId>org.gatein.common</groupId>
Modified: portal/branches/3.0.0-Beta05-CP/webui/eXo/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/webui/eXo/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/webui/eXo/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,13 +35,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.core</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.application-registry</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
</dependencies>
</project>
Modified: portal/branches/3.0.0-Beta05-CP/webui/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/webui/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/webui/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<artifactId>exo.portal.webui</artifactId>
Modified: portal/branches/3.0.0-Beta05-CP/webui/portal/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/webui/portal/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
+++ portal/branches/3.0.0-Beta05-CP/webui/portal/pom.xml 2010-02-05 05:53:56 UTC (rev 1534)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -45,37 +45,37 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.core</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.application-registry</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.pc</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
<dependency>
@@ -90,7 +90,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets-core</artifactId>
- <version>3.0.0-Beta05-CP-SNAPSHOT</version>
+ <version>3.0.0-Beta05-CP01</version>
</dependency>
</dependencies>
</project>
14 years, 11 months
gatein SVN: r1533 - portal/branches/3.0.0-Beta05-CP.
by do-not-reply@jboss.org
Author: aheritier
Date: 2010-02-05 00:39:27 -0500 (Fri, 05 Feb 2010)
New Revision: 1533
Modified:
portal/branches/3.0.0-Beta05-CP/pom.xml
Log:
We want to build tests to deploy and reuse them but we don't want to execute them
Modified: portal/branches/3.0.0-Beta05-CP/pom.xml
===================================================================
--- portal/branches/3.0.0-Beta05-CP/pom.xml 2010-02-05 05:29:40 UTC (rev 1532)
+++ portal/branches/3.0.0-Beta05-CP/pom.xml 2010-02-05 05:39:27 UTC (rev 1533)
@@ -64,7 +64,7 @@
<jdk.min.version>1.6</jdk.min.version>
<!-- maven-release-plugin -->
- <arguments>-Prelease,pkg-tomcat,pkg-jbossas -Dmaven.test.skip=true</arguments>
+ <arguments>-Prelease,pkg-tomcat,pkg-jbossas -DskipTests</arguments>
<!-- cf http://jira.codehaus.org/browse/MRELEASE-3 -->
<preparationGoals>clean install</preparationGoals>
</properties>
14 years, 11 months