gatein SVN: r6609 - epp/portal/branches/EPP_5_1_Branch.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2011-06-07 11:21:41 -0400 (Tue, 07 Jun 2011)
New Revision: 6609
Modified:
epp/portal/branches/EPP_5_1_Branch/pom.xml
Log:
JBEPP-965 Upgrade WSRP to 2.0.1 CR01
Modified: epp/portal/branches/EPP_5_1_Branch/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/pom.xml 2011-06-07 15:14:40 UTC (rev 6608)
+++ epp/portal/branches/EPP_5_1_Branch/pom.xml 2011-06-07 15:21:41 UTC (rev 6609)
@@ -48,7 +48,7 @@
<org.gatein.wci.version>2.0.2-GA</org.gatein.wci.version>
<org.gatein.pc.version>2.2.0-GA</org.gatein.pc.version>
<org.picketlink.idm>1.1.8.GA</org.picketlink.idm>
- <org.gatein.wsrp.version>2.0.1-epp51-Beta02</org.gatein.wsrp.version>
+ <org.gatein.wsrp.version>2.0.1-EPP511-CR01</org.gatein.wsrp.version>
<org.gatein.mop.version>1.0.3-GA</org.gatein.mop.version>
<org.slf4j.version>1.5.6</org.slf4j.version>
<rhino.version>1.6R5</rhino.version>
13 years, 6 months
gatein SVN: r6608 - epp/portal/branches/EPP_5_1_Branch/packaging/pkg.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2011-06-07 11:14:40 -0400 (Tue, 07 Jun 2011)
New Revision: 6608
Modified:
epp/portal/branches/EPP_5_1_Branch/packaging/pkg/pom.xml
Log:
Added repository for build.
Modified: epp/portal/branches/EPP_5_1_Branch/packaging/pkg/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/packaging/pkg/pom.xml 2011-06-07 14:57:43 UTC (rev 6607)
+++ epp/portal/branches/EPP_5_1_Branch/packaging/pkg/pom.xml 2011-06-07 15:14:40 UTC (rev 6608)
@@ -190,7 +190,7 @@
<argument>-Dexo.working.dir=${gatein.working.dir}</argument>
<!--argument>-Dexo.src.dir=NONE</argument-->
<argument>-Dexo.dep.dir=${exo.projects.directory.dependencies}</argument><!-- to get the server ref install -->
- <argument>-Dexo.m2.repos=file:${settings.localRepository},http://maven2.exoplatform.org/rest/maven2,http://repository.jboss.org/maven2</argument>
+ <argument>-Dexo.m2.repos=file:${settings.localRepository},http://download.devel.redhat.com/brewroot//repos/jboss-epp-5-build/latest/maven,http://maven2.exoplatform.org/rest/maven2,http://repository.jboss.org/maven2</argument>
<argument>-Dclean.server=${exo.projects.app.jboss.version}</argument>
<argument>-Dexo.m2.home=${maven.home}</argument>
<argument>-Xms128m</argument>
13 years, 6 months
gatein SVN: r6607 - epp/portal/branches/EPP_5_1_Branch/component/identity/src/main/java/org/exoplatform/services/organization/idm.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2011-06-07 10:57:43 -0400 (Tue, 07 Jun 2011)
New Revision: 6607
Modified:
epp/portal/branches/EPP_5_1_Branch/component/identity/src/main/java/org/exoplatform/services/organization/idm/PicketLinkIDMServiceImpl.java
Log:
JBEPP-945 IntegrationCache not invalidated when calling invalidateAll() on PicketlinkIDMCacheService MBean
Modified: epp/portal/branches/EPP_5_1_Branch/component/identity/src/main/java/org/exoplatform/services/organization/idm/PicketLinkIDMServiceImpl.java
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/component/identity/src/main/java/org/exoplatform/services/organization/idm/PicketLinkIDMServiceImpl.java 2011-06-07 14:54:25 UTC (rev 6606)
+++ epp/portal/branches/EPP_5_1_Branch/component/identity/src/main/java/org/exoplatform/services/organization/idm/PicketLinkIDMServiceImpl.java 2011-06-07 14:57:43 UTC (rev 6607)
@@ -154,7 +154,7 @@
//Integration cache
integrationCache = new IntegrationCache();
integrationCache.initialize(cache);
- picketLinkIDMCache.register(apiCacheProvider);
+ picketLinkIDMCache.register(integrationCache);
}
if (storeCacheConfig != null)
13 years, 6 months
gatein SVN: r6606 - epp/portal/branches/EPP_5_1_Branch/webui/core/src/main/java/org/exoplatform/webui/form.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2011-06-07 10:54:25 -0400 (Tue, 07 Jun 2011)
New Revision: 6606
Modified:
epp/portal/branches/EPP_5_1_Branch/webui/core/src/main/java/org/exoplatform/webui/form/UIFormCheckBoxInput.java
Log:
JBEPP-958 UIFormCheckBoxInput.setValue() doesn't parse String
Modified: epp/portal/branches/EPP_5_1_Branch/webui/core/src/main/java/org/exoplatform/webui/form/UIFormCheckBoxInput.java
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/webui/core/src/main/java/org/exoplatform/webui/form/UIFormCheckBoxInput.java 2011-06-07 14:51:31 UTC (rev 6605)
+++ epp/portal/branches/EPP_5_1_Branch/webui/core/src/main/java/org/exoplatform/webui/form/UIFormCheckBoxInput.java 2011-06-07 14:54:25 UTC (rev 6606)
@@ -71,6 +71,10 @@
{
checked = boolean.class.cast(value);
}
+ else if (value instanceof String)
+ {
+ checked = Boolean.parseBoolean((String)value);
+ }
typeValue_ = (Class<T>)value.getClass();
return super.setValue(value);
}
13 years, 6 months
gatein SVN: r6605 - epp/portal/branches/EPP_5_1_Branch/component/web/server/src/main/java/org/exoplatform/upload.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2011-06-07 10:51:31 -0400 (Tue, 07 Jun 2011)
New Revision: 6605
Modified:
epp/portal/branches/EPP_5_1_Branch/component/web/server/src/main/java/org/exoplatform/upload/UploadService.java
Log:
JBEPP-957 Upload file limit not calculated correctly
Modified: epp/portal/branches/EPP_5_1_Branch/component/web/server/src/main/java/org/exoplatform/upload/UploadService.java
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/component/web/server/src/main/java/org/exoplatform/upload/UploadService.java 2011-06-07 10:34:35 UTC (rev 6604)
+++ epp/portal/branches/EPP_5_1_Branch/component/web/server/src/main/java/org/exoplatform/upload/UploadService.java 2011-06-07 14:51:31 UTC (rev 6605)
@@ -259,7 +259,7 @@
limitMB = uploadLimitsMB_.get(upResource.getUploadId()).intValue();
}
- int estimatedSizeMB = (int)((contentLength / 1024) / 1024);
+ double estimatedSizeMB = (contentLength / 1024) / 1024;
if (limitMB > 0 && estimatedSizeMB > limitMB)
{ // a limit set to 0 means unlimited
if (log.isDebugEnabled())
13 years, 6 months
gatein SVN: r6604 - in epp/portal/branches/EPP_5_1_Branch: component and 78 other directories.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2011-06-07 06:34:35 -0400 (Tue, 07 Jun 2011)
New Revision: 6604
Modified:
epp/portal/branches/EPP_5_1_Branch/component/application-registry/pom.xml
epp/portal/branches/EPP_5_1_Branch/component/common/pom.xml
epp/portal/branches/EPP_5_1_Branch/component/identity/pom.xml
epp/portal/branches/EPP_5_1_Branch/component/management/pom.xml
epp/portal/branches/EPP_5_1_Branch/component/pc/pom.xml
epp/portal/branches/EPP_5_1_Branch/component/pom.xml
epp/portal/branches/EPP_5_1_Branch/component/portal/pom.xml
epp/portal/branches/EPP_5_1_Branch/component/resources/pom.xml
epp/portal/branches/EPP_5_1_Branch/component/scripting/pom.xml
epp/portal/branches/EPP_5_1_Branch/component/test/core/pom.xml
epp/portal/branches/EPP_5_1_Branch/component/test/jcr/pom.xml
epp/portal/branches/EPP_5_1_Branch/component/test/organization/pom.xml
epp/portal/branches/EPP_5_1_Branch/component/test/pom.xml
epp/portal/branches/EPP_5_1_Branch/component/web/api/pom.xml
epp/portal/branches/EPP_5_1_Branch/component/web/controller/pom.xml
epp/portal/branches/EPP_5_1_Branch/component/web/pom.xml
epp/portal/branches/EPP_5_1_Branch/component/web/resources/pom.xml
epp/portal/branches/EPP_5_1_Branch/component/web/security/pom.xml
epp/portal/branches/EPP_5_1_Branch/component/web/server/pom.xml
epp/portal/branches/EPP_5_1_Branch/component/wsrp/pom.xml
epp/portal/branches/EPP_5_1_Branch/examples/extension/config/pom.xml
epp/portal/branches/EPP_5_1_Branch/examples/extension/ear/pom.xml
epp/portal/branches/EPP_5_1_Branch/examples/extension/jar/pom.xml
epp/portal/branches/EPP_5_1_Branch/examples/extension/pom.xml
epp/portal/branches/EPP_5_1_Branch/examples/extension/war/pom.xml
epp/portal/branches/EPP_5_1_Branch/examples/pom.xml
epp/portal/branches/EPP_5_1_Branch/examples/portal/config/pom.xml
epp/portal/branches/EPP_5_1_Branch/examples/portal/ear/pom.xml
epp/portal/branches/EPP_5_1_Branch/examples/portal/jar/pom.xml
epp/portal/branches/EPP_5_1_Branch/examples/portal/pom.xml
epp/portal/branches/EPP_5_1_Branch/examples/portal/rest-war/pom.xml
epp/portal/branches/EPP_5_1_Branch/examples/portal/war/pom.xml
epp/portal/branches/EPP_5_1_Branch/examples/portlets/api/pom.xml
epp/portal/branches/EPP_5_1_Branch/examples/portlets/jsfhellouser/pom.xml
epp/portal/branches/EPP_5_1_Branch/examples/portlets/jsphellouser/pom.xml
epp/portal/branches/EPP_5_1_Branch/examples/portlets/pom.xml
epp/portal/branches/EPP_5_1_Branch/examples/portlets/simplesthelloworld/pom.xml
epp/portal/branches/EPP_5_1_Branch/examples/portlets/struts-jpetstore/pom.xml
epp/portal/branches/EPP_5_1_Branch/examples/skins/pom.xml
epp/portal/branches/EPP_5_1_Branch/examples/skins/simpleskin/pom.xml
epp/portal/branches/EPP_5_1_Branch/gadgets/core/pom.xml
epp/portal/branches/EPP_5_1_Branch/gadgets/eXoGadgets/pom.xml
epp/portal/branches/EPP_5_1_Branch/gadgets/pom.xml
epp/portal/branches/EPP_5_1_Branch/gadgets/server/pom.xml
epp/portal/branches/EPP_5_1_Branch/packaging/jboss-as/ear/pom.xml
epp/portal/branches/EPP_5_1_Branch/packaging/jboss-as/integration.war/pom.xml
epp/portal/branches/EPP_5_1_Branch/packaging/jboss-as/pkg/pom.xml
epp/portal/branches/EPP_5_1_Branch/packaging/jboss-as/pom.xml
epp/portal/branches/EPP_5_1_Branch/packaging/module/pom.xml
epp/portal/branches/EPP_5_1_Branch/packaging/pkg/pom.xml
epp/portal/branches/EPP_5_1_Branch/packaging/pom.xml
epp/portal/branches/EPP_5_1_Branch/packaging/product/pom.xml
epp/portal/branches/EPP_5_1_Branch/packaging/reports/pom.xml
epp/portal/branches/EPP_5_1_Branch/pom.xml
epp/portal/branches/EPP_5_1_Branch/portlet/dashboard/pom.xml
epp/portal/branches/EPP_5_1_Branch/portlet/exoadmin/pom.xml
epp/portal/branches/EPP_5_1_Branch/portlet/pom.xml
epp/portal/branches/EPP_5_1_Branch/portlet/web/pom.xml
epp/portal/branches/EPP_5_1_Branch/server/jboss/patch-ear/pom.xml
epp/portal/branches/EPP_5_1_Branch/server/jboss/plugin/pom.xml
epp/portal/branches/EPP_5_1_Branch/server/jboss/pom.xml
epp/portal/branches/EPP_5_1_Branch/server/pom.xml
epp/portal/branches/EPP_5_1_Branch/starter/ear/pom.xml
epp/portal/branches/EPP_5_1_Branch/starter/jar/pom.xml
epp/portal/branches/EPP_5_1_Branch/starter/pom.xml
epp/portal/branches/EPP_5_1_Branch/starter/war/pom.xml
epp/portal/branches/EPP_5_1_Branch/testsuite/pom.xml
epp/portal/branches/EPP_5_1_Branch/testsuite/selenium-snifftests/pom.xml
epp/portal/branches/EPP_5_1_Branch/testsuite/webuibasedsamples/pom.xml
epp/portal/branches/EPP_5_1_Branch/web/eXoResources/pom.xml
epp/portal/branches/EPP_5_1_Branch/web/pom.xml
epp/portal/branches/EPP_5_1_Branch/web/portal/pom.xml
epp/portal/branches/EPP_5_1_Branch/web/rest/pom.xml
epp/portal/branches/EPP_5_1_Branch/webui/core/pom.xml
epp/portal/branches/EPP_5_1_Branch/webui/dashboard/pom.xml
epp/portal/branches/EPP_5_1_Branch/webui/eXo/pom.xml
epp/portal/branches/EPP_5_1_Branch/webui/framework/pom.xml
epp/portal/branches/EPP_5_1_Branch/webui/pom.xml
epp/portal/branches/EPP_5_1_Branch/webui/portal/pom.xml
epp/portal/branches/EPP_5_1_Branch/webui/portlet/pom.xml
Log:
Version update
Modified: epp/portal/branches/EPP_5_1_Branch/component/application-registry/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/component/application-registry/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/component/application-registry/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/component/common/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/component/common/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/component/common/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.common</artifactId>
Modified: epp/portal/branches/EPP_5_1_Branch/component/identity/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/component/identity/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/component/identity/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/component/management/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/component/management/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/component/management/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/component/pc/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/component/pc/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/component/pc/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/component/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/component/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/component/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>exo.portal.component</artifactId>
Modified: epp/portal/branches/EPP_5_1_Branch/component/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/component/portal/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/component/portal/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/component/resources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/component/resources/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/component/resources/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/component/scripting/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/component/scripting/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/component/scripting/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/component/test/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/component/test/core/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/component/test/core/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/component/test/jcr/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/component/test/jcr/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/component/test/jcr/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/component/test/organization/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/component/test/organization/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/component/test/organization/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/component/test/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/component/test/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/component/test/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/component/web/api/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/component/web/api/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/component/web/api/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/component/web/controller/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/component/web/controller/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/component/web/controller/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/component/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/component/web/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/component/web/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/component/web/resources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/component/web/resources/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/component/web/resources/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/component/web/security/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/component/web/security/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/component/web/security/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/component/web/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/component/web/server/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/component/web/server/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/component/wsrp/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/component/wsrp/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/component/wsrp/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/examples/extension/config/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/examples/extension/config/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/examples/extension/config/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/examples/extension/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/examples/extension/ear/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/examples/extension/ear/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</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>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.jar</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.api</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.war</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
<type>war</type>
</dependency>
</dependencies>
Modified: epp/portal/branches/EPP_5_1_Branch/examples/extension/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/examples/extension/jar/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/examples/extension/jar/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/examples/extension/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/examples/extension/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/examples/extension/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>exo.portal.sample.extension.root</artifactId>
Modified: epp/portal/branches/EPP_5_1_Branch/examples/extension/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/examples/extension/war/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/examples/extension/war/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/examples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/examples/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/examples/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>exo.portal.sample</artifactId>
Modified: epp/portal/branches/EPP_5_1_Branch/examples/portal/config/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/examples/portal/config/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/examples/portal/config/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/examples/portal/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/examples/portal/ear/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/examples/portal/ear/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</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>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.jar</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.api</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.war</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.rest-war</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
<type>war</type>
</dependency>
</dependencies>
Modified: epp/portal/branches/EPP_5_1_Branch/examples/portal/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/examples/portal/jar/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/examples/portal/jar/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/examples/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/examples/portal/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/examples/portal/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>exo.portal.sample.portal.root</artifactId>
Modified: epp/portal/branches/EPP_5_1_Branch/examples/portal/rest-war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/examples/portal/rest-war/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/examples/portal/rest-war/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/examples/portal/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/examples/portal/war/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/examples/portal/war/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/examples/portlets/api/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/examples/portlets/api/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/examples/portlets/api/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>gatein-api</artifactId>
Modified: epp/portal/branches/EPP_5_1_Branch/examples/portlets/jsfhellouser/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/examples/portlets/jsfhellouser/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/examples/portlets/jsfhellouser/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>gatein-jsf-hellouser</artifactId>
Modified: epp/portal/branches/EPP_5_1_Branch/examples/portlets/jsphellouser/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/examples/portlets/jsphellouser/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/examples/portlets/jsphellouser/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>gatein-jsp-hellouser</artifactId>
Modified: epp/portal/branches/EPP_5_1_Branch/examples/portlets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/examples/portlets/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/examples/portlets/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
Modified: epp/portal/branches/EPP_5_1_Branch/examples/portlets/simplesthelloworld/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/examples/portlets/simplesthelloworld/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/examples/portlets/simplesthelloworld/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>gatein-simplest-helloworld</artifactId>
Modified: epp/portal/branches/EPP_5_1_Branch/examples/portlets/struts-jpetstore/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/examples/portlets/struts-jpetstore/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/examples/portlets/struts-jpetstore/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>struts-jpetstore</artifactId>
Modified: epp/portal/branches/EPP_5_1_Branch/examples/skins/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/examples/skins/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/examples/skins/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<groupId>org.gatein.portal.examples.skins</groupId>
Modified: epp/portal/branches/EPP_5_1_Branch/examples/skins/simpleskin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/examples/skins/simpleskin/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/examples/skins/simpleskin/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.portal.examples.skins</groupId>
<artifactId>skins-parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>gatein-sample-skin</artifactId>
Modified: epp/portal/branches/EPP_5_1_Branch/gadgets/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/gadgets/core/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/gadgets/core/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -14,7 +14,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>exo.portal.gadgets-core</artifactId>
Modified: epp/portal/branches/EPP_5_1_Branch/gadgets/eXoGadgets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/gadgets/eXoGadgets/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/gadgets/eXoGadgets/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/gadgets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/gadgets/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/gadgets/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>exo.portal.gadgets</artifactId>
Modified: epp/portal/branches/EPP_5_1_Branch/gadgets/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/gadgets/server/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/gadgets/server/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>exo.portal.gadgets-server</artifactId>
Modified: epp/portal/branches/EPP_5_1_Branch/packaging/jboss-as/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/packaging/jboss-as/ear/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/packaging/jboss-as/ear/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-ER02-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>exo.portal.packaging.jboss-as.ear</artifactId>
<packaging>ear</packaging>
Modified: epp/portal/branches/EPP_5_1_Branch/packaging/jboss-as/integration.war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/packaging/jboss-as/integration.war/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/packaging/jboss-as/integration.war/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-ER02-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>exo.portal.packaging.jboss-as.integration</artifactId>
<packaging>war</packaging>
Modified: epp/portal/branches/EPP_5_1_Branch/packaging/jboss-as/pkg/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/packaging/jboss-as/pkg/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/packaging/jboss-as/pkg/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-ER02-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>exo.portal.packaging.jboss-as.pkg</artifactId>
<packaging>pom</packaging>
Modified: epp/portal/branches/EPP_5_1_Branch/packaging/jboss-as/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/packaging/jboss-as/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/packaging/jboss-as/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-ER02-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>exo.portal.packaging.jboss-as</artifactId>
<packaging>pom</packaging>
Modified: epp/portal/branches/EPP_5_1_Branch/packaging/module/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/packaging/module/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/packaging/module/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/packaging/pkg/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/packaging/pkg/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/packaging/pkg/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -67,13 +67,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.module</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
<type>js</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.product</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
<type>js</type>
</dependency>
</dependencies>
Modified: epp/portal/branches/EPP_5_1_Branch/packaging/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/packaging/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/packaging/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/packaging/product/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/packaging/product/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/packaging/product/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/packaging/reports/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/packaging/reports/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/packaging/reports/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -31,7 +31,7 @@
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
<packaging>pom</packaging>
<name>EPP GateIn - Portal</name>
@@ -362,68 +362,68 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.controller</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.security</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.server</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.api</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.resources</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.pc</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.application-registry</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
@@ -433,90 +433,90 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.scripting</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.management</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.framework</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portlet</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.core</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.dashboard</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets-core</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>gatein.portal.component.wsrp</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss.plugin</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
Modified: epp/portal/branches/EPP_5_1_Branch/portlet/dashboard/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/portlet/dashboard/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/portlet/dashboard/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/portlet/exoadmin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/portlet/exoadmin/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/portlet/exoadmin/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/portlet/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/portlet/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/portlet/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>exo.portal.portlet</artifactId>
Modified: epp/portal/branches/EPP_5_1_Branch/portlet/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/portlet/web/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/portlet/web/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/server/jboss/patch-ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/server/jboss/patch-ear/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/server/jboss/patch-ear/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/server/jboss/plugin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/server/jboss/plugin/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/server/jboss/plugin/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/server/jboss/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/server/jboss/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/server/jboss/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>exo.portal.server.jboss</artifactId>
Modified: epp/portal/branches/EPP_5_1_Branch/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/server/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/server/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>exo.portal.server</artifactId>
Modified: epp/portal/branches/EPP_5_1_Branch/starter/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/starter/ear/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/starter/ear/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.starter.war</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
<type>war</type>
</dependency>
</dependencies>
Modified: epp/portal/branches/EPP_5_1_Branch/starter/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/starter/jar/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/starter/jar/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/starter/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/starter/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/starter/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>exo.portal.starter.root</artifactId>
Modified: epp/portal/branches/EPP_5_1_Branch/starter/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/starter/war/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/starter/war/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.starter.jar</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</dependency>
</dependencies>
</project>
Modified: epp/portal/branches/EPP_5_1_Branch/testsuite/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/testsuite/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/testsuite/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>exo.portal.testsuite</artifactId>
Modified: epp/portal/branches/EPP_5_1_Branch/testsuite/selenium-snifftests/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/testsuite/selenium-snifftests/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/testsuite/selenium-snifftests/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>exo.portal.selenium.snifftests</artifactId>
Modified: epp/portal/branches/EPP_5_1_Branch/testsuite/webuibasedsamples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/testsuite/webuibasedsamples/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/testsuite/webuibasedsamples/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>exo.webui.based.samples</artifactId>
Modified: epp/portal/branches/EPP_5_1_Branch/web/eXoResources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/eXoResources/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/web/eXoResources/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/web/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>exo.portal.web</artifactId>
Modified: epp/portal/branches/EPP_5_1_Branch/web/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/portal/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/web/portal/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/web/rest/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/rest/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/web/rest/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/webui/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/webui/core/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/webui/core/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/webui/dashboard/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/webui/dashboard/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/webui/dashboard/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/webui/eXo/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/webui/eXo/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/webui/eXo/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/webui/framework/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/webui/framework/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/webui/framework/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/webui/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/webui/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/webui/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<artifactId>exo.portal.webui</artifactId>
Modified: epp/portal/branches/EPP_5_1_Branch/webui/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/webui/portal/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/webui/portal/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_Branch/webui/portlet/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/webui/portlet/pom.xml 2011-06-07 10:25:51 UTC (rev 6603)
+++ epp/portal/branches/EPP_5_1_Branch/webui/portlet/pom.xml 2011-06-07 10:34:35 UTC (rev 6604)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.1.1-epp-CR01-SNAPSHOT</version>
+ <version>5.1.1-epp-DEV02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
13 years, 6 months
gatein SVN: r6603 - portal/branches/branch-GTNPORTAL-1921/component/web/security/src/main/java/org/exoplatform/web.
by do-not-reply@jboss.org
Author: ndkhoiits
Date: 2011-06-07 06:25:51 -0400 (Tue, 07 Jun 2011)
New Revision: 6603
Modified:
portal/branches/branch-GTNPORTAL-1921/component/web/security/src/main/java/org/exoplatform/web/CacheUserProfileFilter.java
Log:
GTNPORTAL-1914 OrganizationService always started in the annonymous request
Modified: portal/branches/branch-GTNPORTAL-1921/component/web/security/src/main/java/org/exoplatform/web/CacheUserProfileFilter.java
===================================================================
--- portal/branches/branch-GTNPORTAL-1921/component/web/security/src/main/java/org/exoplatform/web/CacheUserProfileFilter.java 2011-06-07 07:39:47 UTC (rev 6602)
+++ portal/branches/branch-GTNPORTAL-1921/component/web/security/src/main/java/org/exoplatform/web/CacheUserProfileFilter.java 2011-06-07 10:25:51 UTC (rev 6603)
@@ -27,6 +27,7 @@
import org.exoplatform.services.organization.OrganizationService;
import org.exoplatform.services.organization.User;
import org.exoplatform.services.security.ConversationState;
+import org.exoplatform.services.security.IdentityConstants;
import org.exoplatform.services.security.web.SetCurrentIdentityFilter;
import javax.servlet.FilterChain;
@@ -52,7 +53,7 @@
ConversationState state = ConversationState.getCurrent();
try
{
- if (state != null)
+ if (state != null && !state.getIdentity().getUserId().equals(IdentityConstants.ANONIM))
{
if (log.isDebugEnabled())
log.debug("Conversation State found, save user profile to Conversation State.");
@@ -66,7 +67,6 @@
User user = orgService.getUserHandler().findUserByName(state.getIdentity().getUserId());
end(orgService);
state.setAttribute(USER_PROFILE, user);
-
}
}
13 years, 6 months
gatein SVN: r6602 - in components/wsrp/tags/2.0.1-EPP511-CR01: api and 8 other directories.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2011-06-07 03:39:47 -0400 (Tue, 07 Jun 2011)
New Revision: 6602
Modified:
components/wsrp/tags/2.0.1-EPP511-CR01/admin-gui/pom.xml
components/wsrp/tags/2.0.1-EPP511-CR01/api/pom.xml
components/wsrp/tags/2.0.1-EPP511-CR01/common/pom.xml
components/wsrp/tags/2.0.1-EPP511-CR01/consumer/pom.xml
components/wsrp/tags/2.0.1-EPP511-CR01/hibernate-impl/pom.xml
components/wsrp/tags/2.0.1-EPP511-CR01/producer/pom.xml
components/wsrp/tags/2.0.1-EPP511-CR01/test/pom.xml
components/wsrp/tags/2.0.1-EPP511-CR01/wsrp-producer-war/pom.xml
components/wsrp/tags/2.0.1-EPP511-CR01/wsrp1-ws/pom.xml
components/wsrp/tags/2.0.1-EPP511-CR01/wsrp2-ws/pom.xml
Log:
Release for EPP 5.1.1.Dev2
Modified: components/wsrp/tags/2.0.1-EPP511-CR01/admin-gui/pom.xml
===================================================================
--- components/wsrp/tags/2.0.1-EPP511-CR01/admin-gui/pom.xml 2011-06-07 07:16:38 UTC (rev 6601)
+++ components/wsrp/tags/2.0.1-EPP511-CR01/admin-gui/pom.xml 2011-06-07 07:39:47 UTC (rev 6602)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.0.1-CR01</version>
+ <version>2.0.1-EPP511-CR01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-admin-gui</artifactId>
Modified: components/wsrp/tags/2.0.1-EPP511-CR01/api/pom.xml
===================================================================
--- components/wsrp/tags/2.0.1-EPP511-CR01/api/pom.xml 2011-06-07 07:16:38 UTC (rev 6601)
+++ components/wsrp/tags/2.0.1-EPP511-CR01/api/pom.xml 2011-06-07 07:39:47 UTC (rev 6602)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.0.1-CR01</version>
+ <version>2.0.1-EPP511-CR01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-integration-api</artifactId>
Modified: components/wsrp/tags/2.0.1-EPP511-CR01/common/pom.xml
===================================================================
--- components/wsrp/tags/2.0.1-EPP511-CR01/common/pom.xml 2011-06-07 07:16:38 UTC (rev 6601)
+++ components/wsrp/tags/2.0.1-EPP511-CR01/common/pom.xml 2011-06-07 07:39:47 UTC (rev 6602)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.0.1-CR01</version>
+ <version>2.0.1-EPP511-CR01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-common</artifactId>
Modified: components/wsrp/tags/2.0.1-EPP511-CR01/consumer/pom.xml
===================================================================
--- components/wsrp/tags/2.0.1-EPP511-CR01/consumer/pom.xml 2011-06-07 07:16:38 UTC (rev 6601)
+++ components/wsrp/tags/2.0.1-EPP511-CR01/consumer/pom.xml 2011-06-07 07:39:47 UTC (rev 6602)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.0.1-CR01</version>
+ <version>2.0.1-EPP511-CR01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-consumer</artifactId>
Modified: components/wsrp/tags/2.0.1-EPP511-CR01/hibernate-impl/pom.xml
===================================================================
--- components/wsrp/tags/2.0.1-EPP511-CR01/hibernate-impl/pom.xml 2011-06-07 07:16:38 UTC (rev 6601)
+++ components/wsrp/tags/2.0.1-EPP511-CR01/hibernate-impl/pom.xml 2011-06-07 07:39:47 UTC (rev 6602)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.0.1-CR01</version>
+ <version>2.0.1-EPP511-CR01</version>
</parent>
<groupId>org.gatein.wsrp</groupId>
Modified: components/wsrp/tags/2.0.1-EPP511-CR01/producer/pom.xml
===================================================================
--- components/wsrp/tags/2.0.1-EPP511-CR01/producer/pom.xml 2011-06-07 07:16:38 UTC (rev 6601)
+++ components/wsrp/tags/2.0.1-EPP511-CR01/producer/pom.xml 2011-06-07 07:39:47 UTC (rev 6602)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.0.1-CR01</version>
+ <version>2.0.1-EPP511-CR01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-producer-lib</artifactId>
Modified: components/wsrp/tags/2.0.1-EPP511-CR01/test/pom.xml
===================================================================
--- components/wsrp/tags/2.0.1-EPP511-CR01/test/pom.xml 2011-06-07 07:16:38 UTC (rev 6601)
+++ components/wsrp/tags/2.0.1-EPP511-CR01/test/pom.xml 2011-06-07 07:39:47 UTC (rev 6602)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.0.1-CR01</version>
+ <version>2.0.1-EPP511-CR01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/tags/2.0.1-EPP511-CR01/wsrp-producer-war/pom.xml
===================================================================
--- components/wsrp/tags/2.0.1-EPP511-CR01/wsrp-producer-war/pom.xml 2011-06-07 07:16:38 UTC (rev 6601)
+++ components/wsrp/tags/2.0.1-EPP511-CR01/wsrp-producer-war/pom.xml 2011-06-07 07:39:47 UTC (rev 6602)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.0.1-CR01</version>
+ <version>2.0.1-EPP511-CR01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/tags/2.0.1-EPP511-CR01/wsrp1-ws/pom.xml
===================================================================
--- components/wsrp/tags/2.0.1-EPP511-CR01/wsrp1-ws/pom.xml 2011-06-07 07:16:38 UTC (rev 6601)
+++ components/wsrp/tags/2.0.1-EPP511-CR01/wsrp1-ws/pom.xml 2011-06-07 07:39:47 UTC (rev 6602)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.0.1-CR01</version>
+ <version>2.0.1-EPP511-CR01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wsrp1-ws</artifactId>
Modified: components/wsrp/tags/2.0.1-EPP511-CR01/wsrp2-ws/pom.xml
===================================================================
--- components/wsrp/tags/2.0.1-EPP511-CR01/wsrp2-ws/pom.xml 2011-06-07 07:16:38 UTC (rev 6601)
+++ components/wsrp/tags/2.0.1-EPP511-CR01/wsrp2-ws/pom.xml 2011-06-07 07:39:47 UTC (rev 6602)
@@ -26,7 +26,7 @@
<parent>
<artifactId>wsrp-parent</artifactId>
<groupId>org.gatein.wsrp</groupId>
- <version>2.0.1-CR01</version>
+ <version>2.0.1-EPP511-CR01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wsrp2-ws</artifactId>
13 years, 6 months
gatein SVN: r6601 - portal/branches/branch-GTNPORTAL-1921/web.
by do-not-reply@jboss.org
Author: phuong_vu
Date: 2011-06-07 03:16:38 -0400 (Tue, 07 Jun 2011)
New Revision: 6601
Modified:
portal/branches/branch-GTNPORTAL-1921/web/pom.xml
Log:
GTNPORTAL-1881 Artifact exo.portal.web has a wrong name - GateIn Portal Portlet
Modified: portal/branches/branch-GTNPORTAL-1921/web/pom.xml
===================================================================
--- portal/branches/branch-GTNPORTAL-1921/web/pom.xml 2011-06-07 07:05:08 UTC (rev 6600)
+++ portal/branches/branch-GTNPORTAL-1921/web/pom.xml 2011-06-07 07:16:38 UTC (rev 6601)
@@ -32,7 +32,7 @@
<artifactId>exo.portal.web</artifactId>
<packaging>pom</packaging>
- <name>GateIn Portal Portlet</name>
+ <name>GateIn Portal Web</name>
<modules>
<module>eXoResources</module>
13 years, 6 months
gatein SVN: r6600 - in components/wsrp/tags/2.0.1-EPP511-CR01: admin-gui and 1 other directory.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2011-06-07 03:05:08 -0400 (Tue, 07 Jun 2011)
New Revision: 6600
Modified:
components/wsrp/tags/2.0.1-EPP511-CR01/admin-gui/pom.xml
components/wsrp/tags/2.0.1-EPP511-CR01/pom.xml
Log:
Release for EPP 5.1.1.Dev2
Modified: components/wsrp/tags/2.0.1-EPP511-CR01/admin-gui/pom.xml
===================================================================
--- components/wsrp/tags/2.0.1-EPP511-CR01/admin-gui/pom.xml 2011-06-07 06:35:20 UTC (rev 6599)
+++ components/wsrp/tags/2.0.1-EPP511-CR01/admin-gui/pom.xml 2011-06-07 07:05:08 UTC (rev 6600)
@@ -68,12 +68,12 @@
<dependency>
<groupId>org.jboss.portletbridge</groupId>
<artifactId>portletbridge-api</artifactId>
- <version>2.1.0.FINAL</version>
+ <version>2.1.1.GA.EPP51</version>
</dependency>
<dependency>
<groupId>org.jboss.portletbridge</groupId>
<artifactId>portletbridge-impl</artifactId>
- <version>2.1.0.FINAL</version>
+ <version>2.1.1.GA.EPP51</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: components/wsrp/tags/2.0.1-EPP511-CR01/pom.xml
===================================================================
--- components/wsrp/tags/2.0.1-EPP511-CR01/pom.xml 2011-06-07 06:35:20 UTC (rev 6599)
+++ components/wsrp/tags/2.0.1-EPP511-CR01/pom.xml 2011-06-07 07:05:08 UTC (rev 6600)
@@ -29,7 +29,7 @@
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.0.1-CR01</version>
+ <version>2.0.1-EPP511-CR01</version>
<packaging>pom</packaging>
13 years, 6 months