gatein SVN: r4271 - epp/portal/branches/EPP_5_0_Branch/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component.
by do-not-reply@jboss.org
Author: thomas.heute(a)jboss.com
Date: 2010-09-21 04:24:35 -0400 (Tue, 21 Sep 2010)
New Revision: 4271
Modified:
epp/portal/branches/EPP_5_0_Branch/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component/UIUserInfo.java
Log:
JBEPP-469: Unknown error when editing signed user at Users management
Modified: epp/portal/branches/EPP_5_0_Branch/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component/UIUserInfo.java
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component/UIUserInfo.java 2010-09-21 08:22:03 UTC (rev 4270)
+++ epp/portal/branches/EPP_5_0_Branch/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component/UIUserInfo.java 2010-09-21 08:24:35 UTC (rev 4271)
@@ -135,7 +135,7 @@
LocaleConfig localeConfig = localeConfigService.getLocaleConfig(language);
if (localeConfig == null)
localeConfig = localeConfigService.getDefaultLocaleConfig();
- PortalRequestContext prqCtx = PortalRequestContext.getCurrentInstance();
+ PortalRequestContext prqCtx = Util.getPortalRequestContext();
prqCtx.setLocale(localeConfig.getLocale());
Util.getPortalRequestContext().addUIComponentToUpdateByAjax(
14 years, 4 months
gatein SVN: r4270 - epp/portal/branches/EPP_5_0_Branch/component/application-registry/src/main/java/org/exoplatform/application/registry/impl.
by do-not-reply@jboss.org
Author: thomas.heute(a)jboss.com
Date: 2010-09-21 04:22:03 -0400 (Tue, 21 Sep 2010)
New Revision: 4270
Modified:
epp/portal/branches/EPP_5_0_Branch/component/application-registry/src/main/java/org/exoplatform/application/registry/impl/ApplicationRegistryServiceImpl.java
Log:
JBEPP-470: Unknown error when adding wsrp portlet to category
Modified: epp/portal/branches/EPP_5_0_Branch/component/application-registry/src/main/java/org/exoplatform/application/registry/impl/ApplicationRegistryServiceImpl.java
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/component/application-registry/src/main/java/org/exoplatform/application/registry/impl/ApplicationRegistryServiceImpl.java 2010-09-21 07:58:08 UTC (rev 4269)
+++ epp/portal/branches/EPP_5_0_Branch/component/application-registry/src/main/java/org/exoplatform/application/registry/impl/ApplicationRegistryServiceImpl.java 2010-09-21 08:22:03 UTC (rev 4270)
@@ -253,7 +253,17 @@
{
throw new Exception("Invalid Application Id: [" + id + "]");
}
- return getApplication(fragments[0], fragments[1]);
+
+ String category = fragments[0];
+ String applicationName = fragments[1];
+
+ // If the application name contained a beginning slash (which can happen with WSRP), we need to hack around the
+ // hardcoding of portlet id expectations >_<
+ if(fragments.length == 3 && applicationName.length() == 0)
+ {
+ applicationName = "/" + fragments[2];
+ }
+ return getApplication(category, applicationName);
}
public Application getApplication(final String category, final String name) throws Exception
14 years, 4 months
gatein SVN: r4269 - epp/portal/branches/EPP_5_1_Branch/webui/eXo/src/main/java/org/exoplatform/webui/organization.
by do-not-reply@jboss.org
Author: thomas.heute(a)jboss.com
Date: 2010-09-21 03:58:08 -0400 (Tue, 21 Sep 2010)
New Revision: 4269
Modified:
epp/portal/branches/EPP_5_1_Branch/webui/eXo/src/main/java/org/exoplatform/webui/organization/MembershipListAccess.java
epp/portal/branches/EPP_5_1_Branch/webui/eXo/src/main/java/org/exoplatform/webui/organization/UIUserMembershipSelector.java
Log:
JBEPP-448: Problem with object marshalling in clustered EPP
Modified: epp/portal/branches/EPP_5_1_Branch/webui/eXo/src/main/java/org/exoplatform/webui/organization/MembershipListAccess.java
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/webui/eXo/src/main/java/org/exoplatform/webui/organization/MembershipListAccess.java 2010-09-21 07:57:03 UTC (rev 4268)
+++ epp/portal/branches/EPP_5_1_Branch/webui/eXo/src/main/java/org/exoplatform/webui/organization/MembershipListAccess.java 2010-09-21 07:58:08 UTC (rev 4269)
@@ -22,6 +22,7 @@
import org.exoplatform.commons.utils.ListAccess;
import org.exoplatform.webui.organization.UIUserMembershipSelector.Membership;
+import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
@@ -31,7 +32,7 @@
* tamndrok(a)gmail.com
* May 16, 2009
*/
-public class MembershipListAccess implements ListAccess<Membership>
+public class MembershipListAccess implements ListAccess<Membership>, Serializable
{
private final List<Membership> list;
Modified: epp/portal/branches/EPP_5_1_Branch/webui/eXo/src/main/java/org/exoplatform/webui/organization/UIUserMembershipSelector.java
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/webui/eXo/src/main/java/org/exoplatform/webui/organization/UIUserMembershipSelector.java 2010-09-21 07:57:03 UTC (rev 4268)
+++ epp/portal/branches/EPP_5_1_Branch/webui/eXo/src/main/java/org/exoplatform/webui/organization/UIUserMembershipSelector.java 2010-09-21 07:58:08 UTC (rev 4269)
@@ -20,6 +20,7 @@
package org.exoplatform.webui.organization;
import org.exoplatform.commons.utils.LazyPageList;
+import org.exoplatform.commons.utils.SerializablePageList;
import org.exoplatform.services.organization.Group;
import org.exoplatform.services.organization.GroupHandler;
import org.exoplatform.services.organization.MembershipType;
@@ -119,7 +120,9 @@
}
UIGrid uiGrid = getChild(UIGrid.class);
- LazyPageList pageList = new LazyPageList(new MembershipListAccess(getMembership()), 10);
+
+ SerializablePageList pageList = new SerializablePageList(new MembershipListAccess(getMembership()), 10);
+
uiGrid.getUIPageIterator().setPageList(pageList);
}
14 years, 4 months
gatein SVN: r4268 - epp/portal/branches/EPP_5_1_Branch/component/application-registry/src/main/java/org/exoplatform/application/registry/impl.
by do-not-reply@jboss.org
Author: thomas.heute(a)jboss.com
Date: 2010-09-21 03:57:03 -0400 (Tue, 21 Sep 2010)
New Revision: 4268
Modified:
epp/portal/branches/EPP_5_1_Branch/component/application-registry/src/main/java/org/exoplatform/application/registry/impl/ApplicationRegistryServiceImpl.java
Log:
JBEPP-470: Unknown error when adding wsrp portlet to category
Modified: epp/portal/branches/EPP_5_1_Branch/component/application-registry/src/main/java/org/exoplatform/application/registry/impl/ApplicationRegistryServiceImpl.java
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/component/application-registry/src/main/java/org/exoplatform/application/registry/impl/ApplicationRegistryServiceImpl.java 2010-09-21 07:42:44 UTC (rev 4267)
+++ epp/portal/branches/EPP_5_1_Branch/component/application-registry/src/main/java/org/exoplatform/application/registry/impl/ApplicationRegistryServiceImpl.java 2010-09-21 07:57:03 UTC (rev 4268)
@@ -253,7 +253,17 @@
{
throw new Exception("Invalid Application Id: [" + id + "]");
}
- return getApplication(fragments[0], fragments[1]);
+
+ String category = fragments[0];
+ String applicationName = fragments[1];
+
+ // If the application name contained a beginning slash (which can happen with WSRP), we need to hack around the
+ // hardcoding of portlet id expectations >_<
+ if(fragments.length == 3 && applicationName.length() == 0)
+ {
+ applicationName = "/" + fragments[2];
+ }
+ return getApplication(category, applicationName);
}
public Application getApplication(final String category, final String name) throws Exception
14 years, 4 months
gatein SVN: r4267 - components/wci/branches.
by do-not-reply@jboss.org
Author: julien_viet
Date: 2010-09-21 03:42:44 -0400 (Tue, 21 Sep 2010)
New Revision: 4267
Added:
components/wci/branches/adf/
Log:
creating working branch for alain defrance
Copied: components/wci/branches/adf (from rev 4264, components/wci/trunk)
14 years, 4 months
gatein SVN: r4266 - in components/wci/trunk: exo and 12 other directories.
by do-not-reply@jboss.org
Author: mwringe
Date: 2010-09-21 00:15:43 -0400 (Tue, 21 Sep 2010)
New Revision: 4266
Modified:
components/wci/trunk/exo/pom.xml
components/wci/trunk/jetty/pom.xml
components/wci/trunk/pom.xml
components/wci/trunk/test/core/pom.xml
components/wci/trunk/test/pom.xml
components/wci/trunk/test/portlets/exo-portlet/pom.xml
components/wci/trunk/test/portlets/gatein-portlet/pom.xml
components/wci/trunk/test/portlets/native-portlet/pom.xml
components/wci/trunk/test/servers/jboss42/pom.xml
components/wci/trunk/test/servers/jboss51/pom.xml
components/wci/trunk/test/servers/pom.xml
components/wci/trunk/test/servers/tomcat6/pom.xml
components/wci/trunk/tomcat/pom.xml
components/wci/trunk/wci/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: components/wci/trunk/exo/pom.xml
===================================================================
--- components/wci/trunk/exo/pom.xml 2010-09-21 04:15:21 UTC (rev 4265)
+++ components/wci/trunk/exo/pom.xml 2010-09-21 04:15:43 UTC (rev 4266)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-parent</artifactId>
- <version>2.1.0-Alpha01</version>
+ <version>2.1.0-Beta01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-exo</artifactId>
Modified: components/wci/trunk/jetty/pom.xml
===================================================================
--- components/wci/trunk/jetty/pom.xml 2010-09-21 04:15:21 UTC (rev 4265)
+++ components/wci/trunk/jetty/pom.xml 2010-09-21 04:15:43 UTC (rev 4266)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-parent</artifactId>
- <version>2.1.0-Alpha01</version>
+ <version>2.1.0-Beta01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-jetty</artifactId>
Modified: components/wci/trunk/pom.xml
===================================================================
--- components/wci/trunk/pom.xml 2010-09-21 04:15:21 UTC (rev 4265)
+++ components/wci/trunk/pom.xml 2010-09-21 04:15:43 UTC (rev 4266)
@@ -6,7 +6,7 @@
<groupId>org.gatein.wci</groupId>
<artifactId>wci-parent</artifactId>
- <version>2.1.0-Alpha01</version>
+ <version>2.1.0-Beta01-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
@@ -16,9 +16,9 @@
</parent>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/wci/tags/wci-par...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/wci/tags/wci-parent...</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/components/wci/tags/wci-parent-2.1...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/wci/trunk/</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/wci/trunk/</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/components/wci/trunk/</url>
</scm>
<properties>
Modified: components/wci/trunk/test/core/pom.xml
===================================================================
--- components/wci/trunk/test/core/pom.xml 2010-09-21 04:15:21 UTC (rev 4265)
+++ components/wci/trunk/test/core/pom.xml 2010-09-21 04:15:43 UTC (rev 4266)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-parent</artifactId>
- <version>2.1.0-Alpha01</version>
+ <version>2.1.0-Beta01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-core</artifactId>
Modified: components/wci/trunk/test/pom.xml
===================================================================
--- components/wci/trunk/test/pom.xml 2010-09-21 04:15:21 UTC (rev 4265)
+++ components/wci/trunk/test/pom.xml 2010-09-21 04:15:43 UTC (rev 4266)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-parent</artifactId>
- <version>2.1.0-Alpha01</version>
+ <version>2.1.0-Beta01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-parent</artifactId>
Modified: components/wci/trunk/test/portlets/exo-portlet/pom.xml
===================================================================
--- components/wci/trunk/test/portlets/exo-portlet/pom.xml 2010-09-21 04:15:21 UTC (rev 4265)
+++ components/wci/trunk/test/portlets/exo-portlet/pom.xml 2010-09-21 04:15:43 UTC (rev 4266)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-parent</artifactId>
- <version>2.1.0-Alpha01</version>
+ <version>2.1.0-Beta01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-exo-portlet</artifactId>
Modified: components/wci/trunk/test/portlets/gatein-portlet/pom.xml
===================================================================
--- components/wci/trunk/test/portlets/gatein-portlet/pom.xml 2010-09-21 04:15:21 UTC (rev 4265)
+++ components/wci/trunk/test/portlets/gatein-portlet/pom.xml 2010-09-21 04:15:43 UTC (rev 4266)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-parent</artifactId>
- <version>2.1.0-Alpha01</version>
+ <version>2.1.0-Beta01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-gatein-portlet</artifactId>
Modified: components/wci/trunk/test/portlets/native-portlet/pom.xml
===================================================================
--- components/wci/trunk/test/portlets/native-portlet/pom.xml 2010-09-21 04:15:21 UTC (rev 4265)
+++ components/wci/trunk/test/portlets/native-portlet/pom.xml 2010-09-21 04:15:43 UTC (rev 4266)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-parent</artifactId>
- <version>2.1.0-Alpha01</version>
+ <version>2.1.0-Beta01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-native-portlet</artifactId>
Modified: components/wci/trunk/test/servers/jboss42/pom.xml
===================================================================
--- components/wci/trunk/test/servers/jboss42/pom.xml 2010-09-21 04:15:21 UTC (rev 4265)
+++ components/wci/trunk/test/servers/jboss42/pom.xml 2010-09-21 04:15:43 UTC (rev 4266)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-server-parent</artifactId>
- <version>2.1.0-Alpha01</version>
+ <version>2.1.0-Beta01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-jboss42</artifactId>
Modified: components/wci/trunk/test/servers/jboss51/pom.xml
===================================================================
--- components/wci/trunk/test/servers/jboss51/pom.xml 2010-09-21 04:15:21 UTC (rev 4265)
+++ components/wci/trunk/test/servers/jboss51/pom.xml 2010-09-21 04:15:43 UTC (rev 4266)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-server-parent</artifactId>
- <version>2.1.0-Alpha01</version>
+ <version>2.1.0-Beta01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-jboss51</artifactId>
Modified: components/wci/trunk/test/servers/pom.xml
===================================================================
--- components/wci/trunk/test/servers/pom.xml 2010-09-21 04:15:21 UTC (rev 4265)
+++ components/wci/trunk/test/servers/pom.xml 2010-09-21 04:15:43 UTC (rev 4266)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-parent</artifactId>
- <version>2.1.0-Alpha01</version>
+ <version>2.1.0-Beta01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-server-parent</artifactId>
Modified: components/wci/trunk/test/servers/tomcat6/pom.xml
===================================================================
--- components/wci/trunk/test/servers/tomcat6/pom.xml 2010-09-21 04:15:21 UTC (rev 4265)
+++ components/wci/trunk/test/servers/tomcat6/pom.xml 2010-09-21 04:15:43 UTC (rev 4266)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-server-parent</artifactId>
- <version>2.1.0-Alpha01</version>
+ <version>2.1.0-Beta01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-tomcat6</artifactId>
Modified: components/wci/trunk/tomcat/pom.xml
===================================================================
--- components/wci/trunk/tomcat/pom.xml 2010-09-21 04:15:21 UTC (rev 4265)
+++ components/wci/trunk/tomcat/pom.xml 2010-09-21 04:15:43 UTC (rev 4266)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-parent</artifactId>
- <version>2.1.0-Alpha01</version>
+ <version>2.1.0-Beta01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-tomcat</artifactId>
Modified: components/wci/trunk/wci/pom.xml
===================================================================
--- components/wci/trunk/wci/pom.xml 2010-09-21 04:15:21 UTC (rev 4265)
+++ components/wci/trunk/wci/pom.xml 2010-09-21 04:15:43 UTC (rev 4266)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-parent</artifactId>
- <version>2.1.0-Alpha01</version>
+ <version>2.1.0-Beta01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-wci</artifactId>
14 years, 4 months
gatein SVN: r4265 - components/wci/tags.
by do-not-reply@jboss.org
Author: mwringe
Date: 2010-09-21 00:15:21 -0400 (Tue, 21 Sep 2010)
New Revision: 4265
Added:
components/wci/tags/wci-parent-2.1.0-Alpha01/
Log:
[maven-scm] copy for tag wci-parent-2.1.0-Alpha01
Copied: components/wci/tags/wci-parent-2.1.0-Alpha01 (from rev 4264, components/wci/trunk)
14 years, 4 months
gatein SVN: r4264 - in components/wci/trunk: exo and 12 other directories.
by do-not-reply@jboss.org
Author: mwringe
Date: 2010-09-21 00:15:06 -0400 (Tue, 21 Sep 2010)
New Revision: 4264
Modified:
components/wci/trunk/exo/pom.xml
components/wci/trunk/jetty/pom.xml
components/wci/trunk/pom.xml
components/wci/trunk/test/core/pom.xml
components/wci/trunk/test/pom.xml
components/wci/trunk/test/portlets/exo-portlet/pom.xml
components/wci/trunk/test/portlets/gatein-portlet/pom.xml
components/wci/trunk/test/portlets/native-portlet/pom.xml
components/wci/trunk/test/servers/jboss42/pom.xml
components/wci/trunk/test/servers/jboss51/pom.xml
components/wci/trunk/test/servers/pom.xml
components/wci/trunk/test/servers/tomcat6/pom.xml
components/wci/trunk/tomcat/pom.xml
components/wci/trunk/wci/pom.xml
Log:
[maven-release-plugin] prepare release wci-parent-2.1.0-Alpha01
Modified: components/wci/trunk/exo/pom.xml
===================================================================
--- components/wci/trunk/exo/pom.xml 2010-09-21 03:34:15 UTC (rev 4263)
+++ components/wci/trunk/exo/pom.xml 2010-09-21 04:15:06 UTC (rev 4264)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.1.0-Alpha01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-exo</artifactId>
Modified: components/wci/trunk/jetty/pom.xml
===================================================================
--- components/wci/trunk/jetty/pom.xml 2010-09-21 03:34:15 UTC (rev 4263)
+++ components/wci/trunk/jetty/pom.xml 2010-09-21 04:15:06 UTC (rev 4264)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.1.0-Alpha01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-jetty</artifactId>
Modified: components/wci/trunk/pom.xml
===================================================================
--- components/wci/trunk/pom.xml 2010-09-21 03:34:15 UTC (rev 4263)
+++ components/wci/trunk/pom.xml 2010-09-21 04:15:06 UTC (rev 4264)
@@ -6,7 +6,7 @@
<groupId>org.gatein.wci</groupId>
<artifactId>wci-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.1.0-Alpha01</version>
<packaging>pom</packaging>
<parent>
@@ -16,9 +16,9 @@
</parent>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/wci/trunk/</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/wci/trunk/</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/components/wci/trunk/</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/wci/tags/wci-par...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/wci/tags/wci-parent...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/components/wci/tags/wci-parent-2.1...</url>
</scm>
<properties>
Modified: components/wci/trunk/test/core/pom.xml
===================================================================
--- components/wci/trunk/test/core/pom.xml 2010-09-21 03:34:15 UTC (rev 4263)
+++ components/wci/trunk/test/core/pom.xml 2010-09-21 04:15:06 UTC (rev 4264)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.1.0-Alpha01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-core</artifactId>
Modified: components/wci/trunk/test/pom.xml
===================================================================
--- components/wci/trunk/test/pom.xml 2010-09-21 03:34:15 UTC (rev 4263)
+++ components/wci/trunk/test/pom.xml 2010-09-21 04:15:06 UTC (rev 4264)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.1.0-Alpha01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-parent</artifactId>
Modified: components/wci/trunk/test/portlets/exo-portlet/pom.xml
===================================================================
--- components/wci/trunk/test/portlets/exo-portlet/pom.xml 2010-09-21 03:34:15 UTC (rev 4263)
+++ components/wci/trunk/test/portlets/exo-portlet/pom.xml 2010-09-21 04:15:06 UTC (rev 4264)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.1.0-Alpha01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-exo-portlet</artifactId>
Modified: components/wci/trunk/test/portlets/gatein-portlet/pom.xml
===================================================================
--- components/wci/trunk/test/portlets/gatein-portlet/pom.xml 2010-09-21 03:34:15 UTC (rev 4263)
+++ components/wci/trunk/test/portlets/gatein-portlet/pom.xml 2010-09-21 04:15:06 UTC (rev 4264)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.1.0-Alpha01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-gatein-portlet</artifactId>
Modified: components/wci/trunk/test/portlets/native-portlet/pom.xml
===================================================================
--- components/wci/trunk/test/portlets/native-portlet/pom.xml 2010-09-21 03:34:15 UTC (rev 4263)
+++ components/wci/trunk/test/portlets/native-portlet/pom.xml 2010-09-21 04:15:06 UTC (rev 4264)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.1.0-Alpha01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-native-portlet</artifactId>
Modified: components/wci/trunk/test/servers/jboss42/pom.xml
===================================================================
--- components/wci/trunk/test/servers/jboss42/pom.xml 2010-09-21 03:34:15 UTC (rev 4263)
+++ components/wci/trunk/test/servers/jboss42/pom.xml 2010-09-21 04:15:06 UTC (rev 4264)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-server-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.1.0-Alpha01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-jboss42</artifactId>
Modified: components/wci/trunk/test/servers/jboss51/pom.xml
===================================================================
--- components/wci/trunk/test/servers/jboss51/pom.xml 2010-09-21 03:34:15 UTC (rev 4263)
+++ components/wci/trunk/test/servers/jboss51/pom.xml 2010-09-21 04:15:06 UTC (rev 4264)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-server-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.1.0-Alpha01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-jboss51</artifactId>
Modified: components/wci/trunk/test/servers/pom.xml
===================================================================
--- components/wci/trunk/test/servers/pom.xml 2010-09-21 03:34:15 UTC (rev 4263)
+++ components/wci/trunk/test/servers/pom.xml 2010-09-21 04:15:06 UTC (rev 4264)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.1.0-Alpha01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-server-parent</artifactId>
Modified: components/wci/trunk/test/servers/tomcat6/pom.xml
===================================================================
--- components/wci/trunk/test/servers/tomcat6/pom.xml 2010-09-21 03:34:15 UTC (rev 4263)
+++ components/wci/trunk/test/servers/tomcat6/pom.xml 2010-09-21 04:15:06 UTC (rev 4264)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-server-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.1.0-Alpha01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-tomcat6</artifactId>
Modified: components/wci/trunk/tomcat/pom.xml
===================================================================
--- components/wci/trunk/tomcat/pom.xml 2010-09-21 03:34:15 UTC (rev 4263)
+++ components/wci/trunk/tomcat/pom.xml 2010-09-21 04:15:06 UTC (rev 4264)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.1.0-Alpha01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-tomcat</artifactId>
Modified: components/wci/trunk/wci/pom.xml
===================================================================
--- components/wci/trunk/wci/pom.xml 2010-09-21 03:34:15 UTC (rev 4263)
+++ components/wci/trunk/wci/pom.xml 2010-09-21 04:15:06 UTC (rev 4264)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.1.0-Alpha01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-wci</artifactId>
14 years, 4 months
gatein SVN: r4263 - components/wci/trunk.
by do-not-reply@jboss.org
Author: mwringe
Date: 2010-09-20 23:34:15 -0400 (Mon, 20 Sep 2010)
New Revision: 4263
Modified:
components/wci/trunk/pom.xml
Log:
GTNWCI-17: Update common dependency to match what is being used in the PC module.
Modified: components/wci/trunk/pom.xml
===================================================================
--- components/wci/trunk/pom.xml 2010-09-21 02:43:40 UTC (rev 4262)
+++ components/wci/trunk/pom.xml 2010-09-21 03:34:15 UTC (rev 4263)
@@ -22,7 +22,7 @@
</scm>
<properties>
- <version.gatein.common>2.0.2-GA</version.gatein.common>
+ <version.gatein.common>2.0.3-GA</version.gatein.common>
<version.junit>3.8.2-brew</version.junit>
<version.jaxb>2.1</version.jaxb>
14 years, 4 months
gatein SVN: r4262 - components/wci/branches.
by do-not-reply@jboss.org
Author: mwringe
Date: 2010-09-20 22:43:40 -0400 (Mon, 20 Sep 2010)
New Revision: 4262
Added:
components/wci/branches/2.0.x/
Log:
GTNWCI-16: copy current head to a 2.0.x branch so that head can be used for 2.1.x work.
Copied: components/wci/branches/2.0.x (from rev 4261, components/wci/trunk)
14 years, 4 months