gatein SVN: r4281 - in components/wsrp/trunk/common/src/main/java/org/gatein/wsrp: spec/v1 and 1 other directory.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2010-09-21 05:57:32 -0400 (Tue, 21 Sep 2010)
New Revision: 4281
Modified:
components/wsrp/trunk/common/src/main/java/org/gatein/wsrp/WSRPPortletURL.java
components/wsrp/trunk/common/src/main/java/org/gatein/wsrp/WSRPTypeFactory.java
components/wsrp/trunk/common/src/main/java/org/gatein/wsrp/spec/v1/WSRP1TypeFactory.java
Log:
- Adapted to upcoming changes in ContainerURL interface.
Modified: components/wsrp/trunk/common/src/main/java/org/gatein/wsrp/WSRPPortletURL.java
===================================================================
--- components/wsrp/trunk/common/src/main/java/org/gatein/wsrp/WSRPPortletURL.java 2010-09-21 09:57:31 UTC (rev 4280)
+++ components/wsrp/trunk/common/src/main/java/org/gatein/wsrp/WSRPPortletURL.java 2010-09-21 09:57:32 UTC (rev 4281)
@@ -588,4 +588,9 @@
{
return navigationalState;
}
+
+ public Map<String, String> getProperties()
+ {
+ return Collections.emptyMap();
+ }
}
Modified: components/wsrp/trunk/common/src/main/java/org/gatein/wsrp/WSRPTypeFactory.java
===================================================================
--- components/wsrp/trunk/common/src/main/java/org/gatein/wsrp/WSRPTypeFactory.java 2010-09-21 09:57:31 UTC (rev 4280)
+++ components/wsrp/trunk/common/src/main/java/org/gatein/wsrp/WSRPTypeFactory.java 2010-09-21 09:57:32 UTC (rev 4281)
@@ -130,6 +130,7 @@
import javax.xml.namespace.QName;
import java.io.Serializable;
import java.util.Collection;
+import java.util.Collections;
import java.util.List;
import java.util.Map;
@@ -420,7 +421,7 @@
{
throw new IllegalArgumentException("Cannot create a MarkupParams with an empty list of locales!");
}
-
+
if (mimeTypes.isEmpty())
{
throw new IllegalArgumentException("Cannot create a MarkupParams with an empty list of mimeTypes!");
@@ -458,13 +459,13 @@
{
throw new IllegalArgumentException("Cannot create a ResourceParams with an empty list of locales!");
}
-
+
ParameterValidation.throwIllegalArgExceptionIfNull(mimeTypes, "locales");
if (mimeTypes.isEmpty())
{
throw new IllegalArgumentException("Cannot create a MarkupParams with an empty list of mimeTypes!");
}
-
+
ParameterValidation.throwIllegalArgExceptionIfNull(mimeTypes, "MIME types");
ParameterValidation.throwIllegalArgExceptionIfNull(stateChange, "State Change");
ParameterValidation.throwIllegalArgExceptionIfNullOrEmpty(mode, "mode", "ResourceParams");
@@ -757,6 +758,11 @@
{
return getTemplateWindowState();
}
+
+ public Map<String, String> getProperties()
+ {
+ return Collections.emptyMap();
+ }
};
private static final RenderURL RENDER_URL = new RenderURL()
@@ -781,6 +787,11 @@
{
return getTemplateWindowState();
}
+
+ public Map<String, String> getProperties()
+ {
+ return Collections.emptyMap();
+ }
};
private static ResourceURL RESOURCE_URL = new WSRPResourceURL()
@@ -857,7 +868,7 @@
return templates;
}
-
+
public static Templates createTemplates(String defaultTemplate, String blockingActionTemplate, String renderTemplate, String resourceTemplate, String secureDefaultTemplate, String secureBlockingActionTemplate, String secureRenderTemplate, String secureResourceTemplate)
{
Templates templates = new Templates();
@@ -869,7 +880,7 @@
templates.setSecureBlockingActionTemplate(secureBlockingActionTemplate);
templates.setSecureRenderTemplate(secureRenderTemplate);
templates.setSecureResourceTemplate(secureResourceTemplate);
-
+
return templates;
}
@@ -1227,19 +1238,19 @@
public static MarkupType createMarkupType(String mimeType, List<String> modeNames, List<String> windowStateNames, List<String> localeNames)
{
ParameterValidation.throwIllegalArgExceptionIfNullOrEmpty(mimeType, "MIME Type", "MarkupContext");
-
+
ParameterValidation.throwIllegalArgExceptionIfNull(modeNames, "modeNames");
if (modeNames.isEmpty())
{
throw new IllegalArgumentException("Cannot create a MarkupType with an empty list of modes!");
}
-
+
ParameterValidation.throwIllegalArgExceptionIfNull(windowStateNames, "windowStatesNames");
if (windowStateNames.isEmpty())
{
throw new IllegalArgumentException("Cannot create a MarkupType with an empty list of windowStates!");
}
-
+
MarkupType markupType = new MarkupType();
markupType.setMimeType(mimeType);
@@ -1333,17 +1344,17 @@
return null;
}
-
+
public static NavigationalContext createNavigationalContext(String opaqueValue, List<NamedString> publicValues)
{
NavigationalContext navigationalContext = new NavigationalContext();
navigationalContext.setOpaqueValue(opaqueValue);
-
+
if (publicValues != null && !publicValues.isEmpty())
{
navigationalContext.getPublicValues().addAll(publicValues);
}
-
+
return navigationalContext;
}
@@ -1567,17 +1578,17 @@
return setExportLifetime;
}
-
+
public static Contact createContact(Postal postal, Telecom telecom, Online online)
{
Contact contact = new Contact();
contact.setPostal(postal);
contact.setTelecom(telecom);
contact.setOnline(online);
-
+
return contact;
}
-
+
public static Postal createPostal(String name, String street, String city, String stateprov, String postalCode, String country, String organization)
{
Postal postal = new Postal();
@@ -1588,10 +1599,10 @@
postal.setPostalcode(postalCode);
postal.setCountry(country);
postal.setOrganization(organization);
-
+
return postal;
}
-
+
public static Telecom createTelecom(TelephoneNum telephone, TelephoneNum fax, TelephoneNum mobile, TelephoneNum pager)
{
Telecom telecom = new Telecom();
@@ -1599,10 +1610,10 @@
telecom.setFax(fax);
telecom.setMobile(mobile);
telecom.setPager(pager);
-
+
return telecom;
}
-
+
public static TelephoneNum createTelephoneNum(String intCode, String loccode, String number, String ext, String comment)
{
TelephoneNum telephoneNum = new TelephoneNum();
@@ -1611,10 +1622,10 @@
telephoneNum.setNumber(number);
telephoneNum.setExt(ext);
telephoneNum.setComment(comment);
-
+
return telephoneNum;
}
-
+
public static Online createOnline(String email, String uri)
{
Online online = new Online();
@@ -1622,17 +1633,17 @@
online.setUri(uri);
return online;
}
-
+
public static EmployerInfo createEmployerInfo(String employer, String department, String jobTitle)
{
EmployerInfo employerInfo = new EmployerInfo();
employerInfo.setEmployer(employer);
employerInfo.setDepartment(department);
employerInfo.setJobtitle(jobTitle);
-
+
return employerInfo;
}
-
+
public static PersonName createPersonName(String prefix, String given, String family, String middle, String suffix, String nickname)
{
PersonName personName = new PersonName();
@@ -1642,59 +1653,59 @@
personName.setMiddle(middle);
personName.setSuffix(suffix);
personName.setNickname(nickname);
-
+
return personName;
}
-
+
public static Extension createExtension(Object any)
{
ParameterValidation.throwIllegalArgExceptionIfNull(any, "Any");
Extension extension = new Extension();
extension.setAny(any);
-
+
return extension;
}
-
+
public static MissingParametersFault createMissingParametersFault()
{
MissingParametersFault missingParametersFault = new MissingParametersFault();
return missingParametersFault;
}
-
+
public static OperationFailedFault createOperationFailedFault()
{
OperationFailedFault operationFailedFault = new OperationFailedFault();
return operationFailedFault;
}
-
+
public static ItemDescription createItemDescription(LocalizedString description, LocalizedString displayName, String itemName)
{
ParameterValidation.throwIllegalArgExceptionIfNull(itemName, "ItemName");
-
+
ItemDescription itemDescription = new ItemDescription();
itemDescription.setDescription(description);
itemDescription.setDisplayName(displayName);
itemDescription.setItemName(itemName);
-
+
return itemDescription;
}
-
+
public static Resource createResource(String resourceName, List<ResourceValue> resourceValue)
{
ParameterValidation.throwIllegalArgExceptionIfNull(resourceName, "ResourceName");
Resource resource = new Resource();
resource.setResourceName(resourceName);
-
+
if (resourceValue != null && !resourceValue.isEmpty())
{
resource.getValues().addAll(resourceValue);
}
-
+
return resource;
}
-
+
public static ResourceList createResourceList(List<Resource> resources)
- {
+ {
if (ParameterValidation.existsAndIsNotEmpty(resources))
{
ResourceList resourceList = new ResourceList();
@@ -1707,30 +1718,30 @@
throw new IllegalArgumentException("Must provide non-null, non-empty resource list.");
}
}
-
+
public static ResourceValue createResourceValue(String lang, String value)
{
ParameterValidation.throwIllegalArgExceptionIfNull(lang, "Lang");
ResourceValue resourceValue = new ResourceValue();
resourceValue.setLang(value);
resourceValue.setValue(value);
-
+
return resourceValue;
}
-
+
public static ReturnAny createReturnAny()
{
return new ReturnAny();
}
-
+
public static SessionParams createSessionParams(String sessionID)
{
SessionParams sessionParams = new SessionParams();
sessionParams.setSessionID(sessionID);
-
+
return sessionParams;
}
-
+
public static UserProfile createUserProfile(PersonName name, XMLGregorianCalendar bdate, String gender, EmployerInfo employerInfo, Contact homeInfo, Contact businessInfo)
{
UserProfile userProfile = new UserProfile();
@@ -1740,7 +1751,7 @@
userProfile.setEmployerInfo(employerInfo);
userProfile.setHomeInfo(homeInfo);
userProfile.setBusinessInfo(businessInfo);
-
+
return userProfile;
}
}
Modified: components/wsrp/trunk/common/src/main/java/org/gatein/wsrp/spec/v1/WSRP1TypeFactory.java
===================================================================
--- components/wsrp/trunk/common/src/main/java/org/gatein/wsrp/spec/v1/WSRP1TypeFactory.java 2010-09-21 09:57:31 UTC (rev 4280)
+++ components/wsrp/trunk/common/src/main/java/org/gatein/wsrp/spec/v1/WSRP1TypeFactory.java 2010-09-21 09:57:32 UTC (rev 4281)
@@ -86,6 +86,7 @@
import org.oasis.wsrp.v1.V1UserContext;
import javax.xml.namespace.QName;
+import java.util.Collections;
import java.util.List;
import java.util.Map;
@@ -657,6 +658,11 @@
{
return getTemplateWindowState();
}
+
+ public Map<String, String> getProperties()
+ {
+ return Collections.emptyMap();
+ }
};
private static final RenderURL RENDER_URL = new RenderURL()
@@ -681,6 +687,11 @@
{
return getTemplateWindowState();
}
+
+ public Map<String, String> getProperties()
+ {
+ return Collections.emptyMap();
+ }
};
private static ResourceURL RESOURCE_URL = new WSRPResourceURL()
15 years, 7 months
gatein SVN: r4280 - in components/wci/branches/2.0.x: exo and 12 other directories.
by do-not-reply@jboss.org
Author: julien_viet
Date: 2010-09-21 05:57:31 -0400 (Tue, 21 Sep 2010)
New Revision: 4280
Modified:
components/wci/branches/2.0.x/exo/pom.xml
components/wci/branches/2.0.x/jetty/pom.xml
components/wci/branches/2.0.x/pom.xml
components/wci/branches/2.0.x/test/core/pom.xml
components/wci/branches/2.0.x/test/pom.xml
components/wci/branches/2.0.x/test/portlets/exo-portlet/pom.xml
components/wci/branches/2.0.x/test/portlets/gatein-portlet/pom.xml
components/wci/branches/2.0.x/test/portlets/native-portlet/pom.xml
components/wci/branches/2.0.x/test/servers/jboss42/pom.xml
components/wci/branches/2.0.x/test/servers/jboss51/pom.xml
components/wci/branches/2.0.x/test/servers/pom.xml
components/wci/branches/2.0.x/test/servers/tomcat6/pom.xml
components/wci/branches/2.0.x/tomcat/pom.xml
components/wci/branches/2.0.x/wci/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: components/wci/branches/2.0.x/exo/pom.xml
===================================================================
--- components/wci/branches/2.0.x/exo/pom.xml 2010-09-21 09:57:03 UTC (rev 4279)
+++ components/wci/branches/2.0.x/exo/pom.xml 2010-09-21 09:57:31 UTC (rev 4280)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-parent</artifactId>
- <version>2.0.2-GA</version>
+ <version>2.0.3-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-exo</artifactId>
Modified: components/wci/branches/2.0.x/jetty/pom.xml
===================================================================
--- components/wci/branches/2.0.x/jetty/pom.xml 2010-09-21 09:57:03 UTC (rev 4279)
+++ components/wci/branches/2.0.x/jetty/pom.xml 2010-09-21 09:57:31 UTC (rev 4280)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-parent</artifactId>
- <version>2.0.2-GA</version>
+ <version>2.0.3-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-jetty</artifactId>
Modified: components/wci/branches/2.0.x/pom.xml
===================================================================
--- components/wci/branches/2.0.x/pom.xml 2010-09-21 09:57:03 UTC (rev 4279)
+++ components/wci/branches/2.0.x/pom.xml 2010-09-21 09:57:31 UTC (rev 4280)
@@ -6,7 +6,7 @@
<groupId>org.gatein.wci</groupId>
<artifactId>wci-parent</artifactId>
- <version>2.0.2-GA</version>
+ <version>2.0.3-GA-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
@@ -16,9 +16,9 @@
</parent>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/wci/tags/2.0.2-GA</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/wci/tags/2.0.2-GA</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/components/wci/tags/2.0.2-GA</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/branches/2.0.x/test/core/pom.xml
===================================================================
--- components/wci/branches/2.0.x/test/core/pom.xml 2010-09-21 09:57:03 UTC (rev 4279)
+++ components/wci/branches/2.0.x/test/core/pom.xml 2010-09-21 09:57:31 UTC (rev 4280)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-parent</artifactId>
- <version>2.0.2-GA</version>
+ <version>2.0.3-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-core</artifactId>
Modified: components/wci/branches/2.0.x/test/pom.xml
===================================================================
--- components/wci/branches/2.0.x/test/pom.xml 2010-09-21 09:57:03 UTC (rev 4279)
+++ components/wci/branches/2.0.x/test/pom.xml 2010-09-21 09:57:31 UTC (rev 4280)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-parent</artifactId>
- <version>2.0.2-GA</version>
+ <version>2.0.3-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-parent</artifactId>
Modified: components/wci/branches/2.0.x/test/portlets/exo-portlet/pom.xml
===================================================================
--- components/wci/branches/2.0.x/test/portlets/exo-portlet/pom.xml 2010-09-21 09:57:03 UTC (rev 4279)
+++ components/wci/branches/2.0.x/test/portlets/exo-portlet/pom.xml 2010-09-21 09:57:31 UTC (rev 4280)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-parent</artifactId>
- <version>2.0.2-GA</version>
+ <version>2.0.3-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-exo-portlet</artifactId>
Modified: components/wci/branches/2.0.x/test/portlets/gatein-portlet/pom.xml
===================================================================
--- components/wci/branches/2.0.x/test/portlets/gatein-portlet/pom.xml 2010-09-21 09:57:03 UTC (rev 4279)
+++ components/wci/branches/2.0.x/test/portlets/gatein-portlet/pom.xml 2010-09-21 09:57:31 UTC (rev 4280)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-parent</artifactId>
- <version>2.0.2-GA</version>
+ <version>2.0.3-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-gatein-portlet</artifactId>
Modified: components/wci/branches/2.0.x/test/portlets/native-portlet/pom.xml
===================================================================
--- components/wci/branches/2.0.x/test/portlets/native-portlet/pom.xml 2010-09-21 09:57:03 UTC (rev 4279)
+++ components/wci/branches/2.0.x/test/portlets/native-portlet/pom.xml 2010-09-21 09:57:31 UTC (rev 4280)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-parent</artifactId>
- <version>2.0.2-GA</version>
+ <version>2.0.3-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-native-portlet</artifactId>
Modified: components/wci/branches/2.0.x/test/servers/jboss42/pom.xml
===================================================================
--- components/wci/branches/2.0.x/test/servers/jboss42/pom.xml 2010-09-21 09:57:03 UTC (rev 4279)
+++ components/wci/branches/2.0.x/test/servers/jboss42/pom.xml 2010-09-21 09:57:31 UTC (rev 4280)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-server-parent</artifactId>
- <version>2.0.2-GA</version>
+ <version>2.0.3-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-jboss42</artifactId>
Modified: components/wci/branches/2.0.x/test/servers/jboss51/pom.xml
===================================================================
--- components/wci/branches/2.0.x/test/servers/jboss51/pom.xml 2010-09-21 09:57:03 UTC (rev 4279)
+++ components/wci/branches/2.0.x/test/servers/jboss51/pom.xml 2010-09-21 09:57:31 UTC (rev 4280)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-server-parent</artifactId>
- <version>2.0.2-GA</version>
+ <version>2.0.3-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-jboss51</artifactId>
Modified: components/wci/branches/2.0.x/test/servers/pom.xml
===================================================================
--- components/wci/branches/2.0.x/test/servers/pom.xml 2010-09-21 09:57:03 UTC (rev 4279)
+++ components/wci/branches/2.0.x/test/servers/pom.xml 2010-09-21 09:57:31 UTC (rev 4280)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-parent</artifactId>
- <version>2.0.2-GA</version>
+ <version>2.0.3-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-server-parent</artifactId>
Modified: components/wci/branches/2.0.x/test/servers/tomcat6/pom.xml
===================================================================
--- components/wci/branches/2.0.x/test/servers/tomcat6/pom.xml 2010-09-21 09:57:03 UTC (rev 4279)
+++ components/wci/branches/2.0.x/test/servers/tomcat6/pom.xml 2010-09-21 09:57:31 UTC (rev 4280)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-server-parent</artifactId>
- <version>2.0.2-GA</version>
+ <version>2.0.3-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-tomcat6</artifactId>
Modified: components/wci/branches/2.0.x/tomcat/pom.xml
===================================================================
--- components/wci/branches/2.0.x/tomcat/pom.xml 2010-09-21 09:57:03 UTC (rev 4279)
+++ components/wci/branches/2.0.x/tomcat/pom.xml 2010-09-21 09:57:31 UTC (rev 4280)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-parent</artifactId>
- <version>2.0.2-GA</version>
+ <version>2.0.3-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-tomcat</artifactId>
Modified: components/wci/branches/2.0.x/wci/pom.xml
===================================================================
--- components/wci/branches/2.0.x/wci/pom.xml 2010-09-21 09:57:03 UTC (rev 4279)
+++ components/wci/branches/2.0.x/wci/pom.xml 2010-09-21 09:57:31 UTC (rev 4280)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-parent</artifactId>
- <version>2.0.2-GA</version>
+ <version>2.0.3-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-wci</artifactId>
15 years, 7 months
gatein SVN: r4279 - components/wci/tags.
by do-not-reply@jboss.org
Author: julien_viet
Date: 2010-09-21 05:57:03 -0400 (Tue, 21 Sep 2010)
New Revision: 4279
Added:
components/wci/tags/2.0.2-GA/
Log:
[maven-scm] copy for tag 2.0.2-GA
Copied: components/wci/tags/2.0.2-GA (from rev 4278, components/wci/trunk)
15 years, 7 months
gatein SVN: r4278 - in components/wci/branches/2.0.x: exo and 12 other directories.
by do-not-reply@jboss.org
Author: julien_viet
Date: 2010-09-21 05:56:42 -0400 (Tue, 21 Sep 2010)
New Revision: 4278
Modified:
components/wci/branches/2.0.x/exo/pom.xml
components/wci/branches/2.0.x/jetty/pom.xml
components/wci/branches/2.0.x/pom.xml
components/wci/branches/2.0.x/test/core/pom.xml
components/wci/branches/2.0.x/test/pom.xml
components/wci/branches/2.0.x/test/portlets/exo-portlet/pom.xml
components/wci/branches/2.0.x/test/portlets/gatein-portlet/pom.xml
components/wci/branches/2.0.x/test/portlets/native-portlet/pom.xml
components/wci/branches/2.0.x/test/servers/jboss42/pom.xml
components/wci/branches/2.0.x/test/servers/jboss51/pom.xml
components/wci/branches/2.0.x/test/servers/pom.xml
components/wci/branches/2.0.x/test/servers/tomcat6/pom.xml
components/wci/branches/2.0.x/tomcat/pom.xml
components/wci/branches/2.0.x/wci/pom.xml
Log:
[maven-release-plugin] prepare release 2.0.2-GA
Modified: components/wci/branches/2.0.x/exo/pom.xml
===================================================================
--- components/wci/branches/2.0.x/exo/pom.xml 2010-09-21 09:52:40 UTC (rev 4277)
+++ components/wci/branches/2.0.x/exo/pom.xml 2010-09-21 09:56:42 UTC (rev 4278)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.0.2-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-exo</artifactId>
Modified: components/wci/branches/2.0.x/jetty/pom.xml
===================================================================
--- components/wci/branches/2.0.x/jetty/pom.xml 2010-09-21 09:52:40 UTC (rev 4277)
+++ components/wci/branches/2.0.x/jetty/pom.xml 2010-09-21 09:56:42 UTC (rev 4278)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.0.2-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-jetty</artifactId>
Modified: components/wci/branches/2.0.x/pom.xml
===================================================================
--- components/wci/branches/2.0.x/pom.xml 2010-09-21 09:52:40 UTC (rev 4277)
+++ components/wci/branches/2.0.x/pom.xml 2010-09-21 09:56:42 UTC (rev 4278)
@@ -6,7 +6,7 @@
<groupId>org.gatein.wci</groupId>
<artifactId>wci-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.0.2-GA</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/2.0.2-GA</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/wci/tags/2.0.2-GA</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/components/wci/tags/2.0.2-GA</url>
</scm>
<properties>
Modified: components/wci/branches/2.0.x/test/core/pom.xml
===================================================================
--- components/wci/branches/2.0.x/test/core/pom.xml 2010-09-21 09:52:40 UTC (rev 4277)
+++ components/wci/branches/2.0.x/test/core/pom.xml 2010-09-21 09:56:42 UTC (rev 4278)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.0.2-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-core</artifactId>
Modified: components/wci/branches/2.0.x/test/pom.xml
===================================================================
--- components/wci/branches/2.0.x/test/pom.xml 2010-09-21 09:52:40 UTC (rev 4277)
+++ components/wci/branches/2.0.x/test/pom.xml 2010-09-21 09:56:42 UTC (rev 4278)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.0.2-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-parent</artifactId>
Modified: components/wci/branches/2.0.x/test/portlets/exo-portlet/pom.xml
===================================================================
--- components/wci/branches/2.0.x/test/portlets/exo-portlet/pom.xml 2010-09-21 09:52:40 UTC (rev 4277)
+++ components/wci/branches/2.0.x/test/portlets/exo-portlet/pom.xml 2010-09-21 09:56:42 UTC (rev 4278)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.0.2-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-exo-portlet</artifactId>
Modified: components/wci/branches/2.0.x/test/portlets/gatein-portlet/pom.xml
===================================================================
--- components/wci/branches/2.0.x/test/portlets/gatein-portlet/pom.xml 2010-09-21 09:52:40 UTC (rev 4277)
+++ components/wci/branches/2.0.x/test/portlets/gatein-portlet/pom.xml 2010-09-21 09:56:42 UTC (rev 4278)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.0.2-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-gatein-portlet</artifactId>
Modified: components/wci/branches/2.0.x/test/portlets/native-portlet/pom.xml
===================================================================
--- components/wci/branches/2.0.x/test/portlets/native-portlet/pom.xml 2010-09-21 09:52:40 UTC (rev 4277)
+++ components/wci/branches/2.0.x/test/portlets/native-portlet/pom.xml 2010-09-21 09:56:42 UTC (rev 4278)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.0.2-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-native-portlet</artifactId>
Modified: components/wci/branches/2.0.x/test/servers/jboss42/pom.xml
===================================================================
--- components/wci/branches/2.0.x/test/servers/jboss42/pom.xml 2010-09-21 09:52:40 UTC (rev 4277)
+++ components/wci/branches/2.0.x/test/servers/jboss42/pom.xml 2010-09-21 09:56:42 UTC (rev 4278)
@@ -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.0.2-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-jboss42</artifactId>
Modified: components/wci/branches/2.0.x/test/servers/jboss51/pom.xml
===================================================================
--- components/wci/branches/2.0.x/test/servers/jboss51/pom.xml 2010-09-21 09:52:40 UTC (rev 4277)
+++ components/wci/branches/2.0.x/test/servers/jboss51/pom.xml 2010-09-21 09:56:42 UTC (rev 4278)
@@ -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.0.2-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-jboss51</artifactId>
Modified: components/wci/branches/2.0.x/test/servers/pom.xml
===================================================================
--- components/wci/branches/2.0.x/test/servers/pom.xml 2010-09-21 09:52:40 UTC (rev 4277)
+++ components/wci/branches/2.0.x/test/servers/pom.xml 2010-09-21 09:56:42 UTC (rev 4278)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-test-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.0.2-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-server-parent</artifactId>
Modified: components/wci/branches/2.0.x/test/servers/tomcat6/pom.xml
===================================================================
--- components/wci/branches/2.0.x/test/servers/tomcat6/pom.xml 2010-09-21 09:52:40 UTC (rev 4277)
+++ components/wci/branches/2.0.x/test/servers/tomcat6/pom.xml 2010-09-21 09:56:42 UTC (rev 4278)
@@ -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.0.2-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-test-tomcat6</artifactId>
Modified: components/wci/branches/2.0.x/tomcat/pom.xml
===================================================================
--- components/wci/branches/2.0.x/tomcat/pom.xml 2010-09-21 09:52:40 UTC (rev 4277)
+++ components/wci/branches/2.0.x/tomcat/pom.xml 2010-09-21 09:56:42 UTC (rev 4278)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.0.2-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-tomcat</artifactId>
Modified: components/wci/branches/2.0.x/wci/pom.xml
===================================================================
--- components/wci/branches/2.0.x/wci/pom.xml 2010-09-21 09:52:40 UTC (rev 4277)
+++ components/wci/branches/2.0.x/wci/pom.xml 2010-09-21 09:56:42 UTC (rev 4278)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.wci</groupId>
<artifactId>wci-parent</artifactId>
- <version>2.0.2-GA-SNAPSHOT</version>
+ <version>2.0.2-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wci-wci</artifactId>
15 years, 7 months
gatein SVN: r4277 - components/wci/branches/2.0.x.
by do-not-reply@jboss.org
Author: julien_viet
Date: 2010-09-21 05:52:40 -0400 (Tue, 21 Sep 2010)
New Revision: 4277
Modified:
components/wci/branches/2.0.x/pom.xml
Log:
GTNWCI-18 : Update common to 2.0.3
Modified: components/wci/branches/2.0.x/pom.xml
===================================================================
--- components/wci/branches/2.0.x/pom.xml 2010-09-21 09:35:30 UTC (rev 4276)
+++ components/wci/branches/2.0.x/pom.xml 2010-09-21 09:52:40 UTC (rev 4277)
@@ -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>
15 years, 7 months
gatein SVN: r4276 - components/wci/tags.
by do-not-reply@jboss.org
Author: julien_viet
Date: 2010-09-21 05:35:30 -0400 (Tue, 21 Sep 2010)
New Revision: 4276
Added:
components/wci/tags/2.1.0-Alpha01/
Removed:
components/wci/tags/wci-parent-2.1.0-Alpha01/
Log:
correcting wrong tag name
Copied: components/wci/tags/2.1.0-Alpha01 (from rev 4275, components/wci/tags/wci-parent-2.1.0-Alpha01)
15 years, 7 months
gatein SVN: r4275 - in components/pc/trunk: test/src/test/java/org/gatein/pc/test/portlet/jsr286/api/portleturl and 1 other directory.
by do-not-reply@jboss.org
Author: julien_viet
Date: 2010-09-21 05:19:29 -0400 (Tue, 21 Sep 2010)
New Revision: 4275
Modified:
components/pc/trunk/portlet/src/main/java/org/gatein/pc/portlet/impl/jsr168/api/PortletURLImpl.java
components/pc/trunk/test/src/test/java/org/gatein/pc/test/portlet/jsr286/api/portleturl/ParameterMapTestCase.java
Log:
GTNPC-30: Implement getParameterMap() safely modifiable for action url
Modified: components/pc/trunk/portlet/src/main/java/org/gatein/pc/portlet/impl/jsr168/api/PortletURLImpl.java
===================================================================
--- components/pc/trunk/portlet/src/main/java/org/gatein/pc/portlet/impl/jsr168/api/PortletURLImpl.java 2010-09-21 08:50:52 UTC (rev 4274)
+++ components/pc/trunk/portlet/src/main/java/org/gatein/pc/portlet/impl/jsr168/api/PortletURLImpl.java 2010-09-21 09:19:29 UTC (rev 4275)
@@ -242,7 +242,7 @@
protected Map<String, String[]> getParameters()
{
- return ParameterMap.clone(interactionState.getParameters());
+ return interactionState.getParameters();
}
public StateString getNavigationalState()
Modified: components/pc/trunk/test/src/test/java/org/gatein/pc/test/portlet/jsr286/api/portleturl/ParameterMapTestCase.java
===================================================================
--- components/pc/trunk/test/src/test/java/org/gatein/pc/test/portlet/jsr286/api/portleturl/ParameterMapTestCase.java 2010-09-21 08:50:52 UTC (rev 4274)
+++ components/pc/trunk/test/src/test/java/org/gatein/pc/test/portlet/jsr286/api/portleturl/ParameterMapTestCase.java 2010-09-21 09:19:29 UTC (rev 4275)
@@ -23,12 +23,15 @@
import org.gatein.pc.test.unit.Assertion;
import org.gatein.pc.test.unit.PortletTestCase;
import org.gatein.pc.test.unit.PortletTestContext;
+import org.gatein.pc.test.unit.actions.PortletActionTestAction;
import org.gatein.pc.test.unit.actions.PortletRenderTestAction;
import org.gatein.pc.test.unit.annotations.TestCase;
import org.jboss.unit.driver.DriverResponse;
import org.jboss.unit.driver.response.EndTestResponse;
import org.jboss.unit.remote.driver.handler.http.response.InvokeGetResponse;
+import javax.portlet.ActionRequest;
+import javax.portlet.ActionResponse;
import javax.portlet.Portlet;
import javax.portlet.PortletException;
import javax.portlet.PortletURL;
@@ -49,12 +52,11 @@
{
public ParameterMapTestCase(PortletTestCase seq)
{
-
seq.bindAction(0, UTP1.RENDER_JOIN_POINT, new PortletRenderTestAction()
{
protected DriverResponse run(Portlet portlet, RenderRequest request, RenderResponse response, PortletTestContext context) throws PortletException, IOException
{
- PortletURL url = response.createRenderURL();
+ PortletURL url = response.createActionURL();
// Set parameter
url.setParameter("foo", "bar");
@@ -78,10 +80,47 @@
return new InvokeGetResponse(url.toString());
}
});
+ seq.bindAction(1, UTP1.ACTION_JOIN_POINT, new PortletActionTestAction()
+ {
+ @Override
+ protected void run(Portlet portlet, ActionRequest request, ActionResponse response, PortletTestContext context) throws PortletException, IOException
+ {
+ // It should be empty
+ assertEquals(Collections.<Object, Object>emptyMap(), request.getParameterMap());
+ }
+ });
seq.bindAction(1, UTP1.RENDER_JOIN_POINT, new PortletRenderTestAction()
{
protected DriverResponse run(Portlet portlet, RenderRequest request, RenderResponse response, PortletTestContext context) throws PortletException, IOException
{
+ PortletURL url = response.createRenderURL();
+
+ // Set parameter
+ url.setParameter("foo", "bar");
+
+ // Clear parameters
+ Map<String, String[]> map = url.getParameterMap();
+
+ // Check expected entry
+ String[] bar1 = map.get("foo");
+ assertEquals(1, bar1.length);
+ assertEquals("bar", bar1[0]);
+
+ // Check that the entry we had a copy of the value
+ url.setParameter("foo", "juu");
+ assertEquals("bar", bar1[0]);
+
+ //
+ map.clear();
+
+ // Invoker with the no parameter URL
+ return new InvokeGetResponse(url.toString());
+ }
+ });
+ seq.bindAction(2, UTP1.RENDER_JOIN_POINT, new PortletRenderTestAction()
+ {
+ protected DriverResponse run(Portlet portlet, RenderRequest request, RenderResponse response, PortletTestContext context) throws PortletException, IOException
+ {
// It should be empty
assertEquals(Collections.<Object, Object>emptyMap(), request.getParameterMap());
15 years, 7 months
gatein SVN: r4274 - in epp/portal/branches/EPP_5_0_Branch: component and 65 other directories.
by do-not-reply@jboss.org
Author: thomas.heute(a)jboss.com
Date: 2010-09-21 04:50:52 -0400 (Tue, 21 Sep 2010)
New Revision: 4274
Modified:
epp/portal/branches/EPP_5_0_Branch/component/application-registry/pom.xml
epp/portal/branches/EPP_5_0_Branch/component/common/pom.xml
epp/portal/branches/EPP_5_0_Branch/component/dashboard/pom.xml
epp/portal/branches/EPP_5_0_Branch/component/identity/pom.xml
epp/portal/branches/EPP_5_0_Branch/component/management/pom.xml
epp/portal/branches/EPP_5_0_Branch/component/pc/pom.xml
epp/portal/branches/EPP_5_0_Branch/component/pom.xml
epp/portal/branches/EPP_5_0_Branch/component/portal/pom.xml
epp/portal/branches/EPP_5_0_Branch/component/resources/pom.xml
epp/portal/branches/EPP_5_0_Branch/component/scripting/pom.xml
epp/portal/branches/EPP_5_0_Branch/component/test/core/pom.xml
epp/portal/branches/EPP_5_0_Branch/component/test/jcr/pom.xml
epp/portal/branches/EPP_5_0_Branch/component/test/organization/pom.xml
epp/portal/branches/EPP_5_0_Branch/component/test/pom.xml
epp/portal/branches/EPP_5_0_Branch/component/web/pom.xml
epp/portal/branches/EPP_5_0_Branch/component/wsrp/pom.xml
epp/portal/branches/EPP_5_0_Branch/component/xml-parser/pom.xml
epp/portal/branches/EPP_5_0_Branch/examples/extension/config/pom.xml
epp/portal/branches/EPP_5_0_Branch/examples/extension/ear/pom.xml
epp/portal/branches/EPP_5_0_Branch/examples/extension/jar/pom.xml
epp/portal/branches/EPP_5_0_Branch/examples/extension/pom.xml
epp/portal/branches/EPP_5_0_Branch/examples/extension/war/pom.xml
epp/portal/branches/EPP_5_0_Branch/examples/pom.xml
epp/portal/branches/EPP_5_0_Branch/examples/portal/config/pom.xml
epp/portal/branches/EPP_5_0_Branch/examples/portal/ear/pom.xml
epp/portal/branches/EPP_5_0_Branch/examples/portal/jar/pom.xml
epp/portal/branches/EPP_5_0_Branch/examples/portal/pom.xml
epp/portal/branches/EPP_5_0_Branch/examples/portal/rest-war/pom.xml
epp/portal/branches/EPP_5_0_Branch/examples/portal/war/pom.xml
epp/portal/branches/EPP_5_0_Branch/examples/portlets/jsfhellouser/pom.xml
epp/portal/branches/EPP_5_0_Branch/examples/portlets/jsphellouser/pom.xml
epp/portal/branches/EPP_5_0_Branch/examples/portlets/pom.xml
epp/portal/branches/EPP_5_0_Branch/examples/portlets/simplesthelloworld/pom.xml
epp/portal/branches/EPP_5_0_Branch/examples/skins/pom.xml
epp/portal/branches/EPP_5_0_Branch/examples/skins/simpleskin/pom.xml
epp/portal/branches/EPP_5_0_Branch/gadgets/core/pom.xml
epp/portal/branches/EPP_5_0_Branch/gadgets/eXoGadgets/pom.xml
epp/portal/branches/EPP_5_0_Branch/gadgets/pom.xml
epp/portal/branches/EPP_5_0_Branch/gadgets/server/pom.xml
epp/portal/branches/EPP_5_0_Branch/packaging/module/pom.xml
epp/portal/branches/EPP_5_0_Branch/packaging/pkg/pom.xml
epp/portal/branches/EPP_5_0_Branch/packaging/pom.xml
epp/portal/branches/EPP_5_0_Branch/packaging/product/pom.xml
epp/portal/branches/EPP_5_0_Branch/packaging/reports/pom.xml
epp/portal/branches/EPP_5_0_Branch/pom.xml
epp/portal/branches/EPP_5_0_Branch/portlet/dashboard/pom.xml
epp/portal/branches/EPP_5_0_Branch/portlet/exoadmin/pom.xml
epp/portal/branches/EPP_5_0_Branch/portlet/pom.xml
epp/portal/branches/EPP_5_0_Branch/portlet/web/pom.xml
epp/portal/branches/EPP_5_0_Branch/server/jboss/patch-ear/pom.xml
epp/portal/branches/EPP_5_0_Branch/server/jboss/plugin/pom.xml
epp/portal/branches/EPP_5_0_Branch/server/jboss/pom.xml
epp/portal/branches/EPP_5_0_Branch/server/pom.xml
epp/portal/branches/EPP_5_0_Branch/starter/ear/pom.xml
epp/portal/branches/EPP_5_0_Branch/starter/pom.xml
epp/portal/branches/EPP_5_0_Branch/starter/war/pom.xml
epp/portal/branches/EPP_5_0_Branch/testsuite/pom.xml
epp/portal/branches/EPP_5_0_Branch/testsuite/selenium-snifftests/pom.xml
epp/portal/branches/EPP_5_0_Branch/testsuite/webuibasedsamples/pom.xml
epp/portal/branches/EPP_5_0_Branch/web/eXoResources/pom.xml
epp/portal/branches/EPP_5_0_Branch/web/pom.xml
epp/portal/branches/EPP_5_0_Branch/web/portal/pom.xml
epp/portal/branches/EPP_5_0_Branch/web/rest/pom.xml
epp/portal/branches/EPP_5_0_Branch/webui/core/pom.xml
epp/portal/branches/EPP_5_0_Branch/webui/eXo/pom.xml
epp/portal/branches/EPP_5_0_Branch/webui/pom.xml
epp/portal/branches/EPP_5_0_Branch/webui/portal/pom.xml
Log:
Preparing for release
Modified: epp/portal/branches/EPP_5_0_Branch/component/application-registry/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/component/application-registry/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/component/application-registry/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/component/common/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/component/common/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/component/common/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.common</artifactId>
Modified: epp/portal/branches/EPP_5_0_Branch/component/dashboard/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/component/dashboard/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/component/dashboard/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/component/identity/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/component/identity/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/component/identity/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/component/management/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/component/management/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/component/management/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/component/pc/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/component/pc/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/component/pc/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/component/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/component/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/component/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<artifactId>exo.portal.component</artifactId>
Modified: epp/portal/branches/EPP_5_0_Branch/component/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/component/portal/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/component/portal/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/component/resources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/component/resources/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/component/resources/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/component/scripting/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/component/scripting/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/component/scripting/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/component/test/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/component/test/core/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/component/test/core/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/component/test/jcr/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/component/test/jcr/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/component/test/jcr/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/component/test/organization/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/component/test/organization/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/component/test/organization/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/component/test/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/component/test/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/component/test/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/component/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/component/web/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/component/web/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/component/wsrp/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/component/wsrp/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/component/wsrp/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/component/xml-parser/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/component/xml-parser/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/component/xml-parser/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/examples/extension/config/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/examples/extension/config/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/examples/extension/config/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/examples/extension/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/examples/extension/ear/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/examples/extension/ear/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</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.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.jar</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.war</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
<type>war</type>
</dependency>
</dependencies>
Modified: epp/portal/branches/EPP_5_0_Branch/examples/extension/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/examples/extension/jar/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/examples/extension/jar/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/examples/extension/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/examples/extension/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/examples/extension/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<artifactId>exo.portal.sample.extension.root</artifactId>
Modified: epp/portal/branches/EPP_5_0_Branch/examples/extension/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/examples/extension/war/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/examples/extension/war/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/examples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/examples/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/examples/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<artifactId>exo.portal.sample</artifactId>
Modified: epp/portal/branches/EPP_5_0_Branch/examples/portal/config/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/examples/portal/config/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/examples/portal/config/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/examples/portal/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/examples/portal/ear/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/examples/portal/ear/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</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.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.jar</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.war</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.rest-war</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
<type>war</type>
</dependency>
</dependencies>
Modified: epp/portal/branches/EPP_5_0_Branch/examples/portal/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/examples/portal/jar/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/examples/portal/jar/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/examples/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/examples/portal/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/examples/portal/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<artifactId>exo.portal.sample.portal.root</artifactId>
Modified: epp/portal/branches/EPP_5_0_Branch/examples/portal/rest-war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/examples/portal/rest-war/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/examples/portal/rest-war/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/examples/portal/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/examples/portal/war/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/examples/portal/war/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/examples/portlets/jsfhellouser/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/examples/portlets/jsfhellouser/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/examples/portlets/jsfhellouser/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<artifactId>gatein-jsf-hellouser</artifactId>
Modified: epp/portal/branches/EPP_5_0_Branch/examples/portlets/jsphellouser/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/examples/portlets/jsphellouser/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/examples/portlets/jsphellouser/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<artifactId>gatein-jsp-hellouser</artifactId>
Modified: epp/portal/branches/EPP_5_0_Branch/examples/portlets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/examples/portlets/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/examples/portlets/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
Modified: epp/portal/branches/EPP_5_0_Branch/examples/portlets/simplesthelloworld/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/examples/portlets/simplesthelloworld/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/examples/portlets/simplesthelloworld/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<artifactId>gatein-simplest-helloworld</artifactId>
Modified: epp/portal/branches/EPP_5_0_Branch/examples/skins/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/examples/skins/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/examples/skins/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<groupId>org.gatein.portal.examples.skins</groupId>
Modified: epp/portal/branches/EPP_5_0_Branch/examples/skins/simpleskin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/examples/skins/simpleskin/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/examples/skins/simpleskin/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.portal.examples.skins</groupId>
<artifactId>examples.skins.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<artifactId>gatein-sample-skin</artifactId>
Modified: epp/portal/branches/EPP_5_0_Branch/gadgets/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/gadgets/core/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/gadgets/core/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -14,7 +14,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<artifactId>exo.portal.gadgets-core</artifactId>
Modified: epp/portal/branches/EPP_5_0_Branch/gadgets/eXoGadgets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/gadgets/eXoGadgets/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/gadgets/eXoGadgets/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/gadgets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/gadgets/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/gadgets/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<artifactId>exo.portal.gadgets</artifactId>
Modified: epp/portal/branches/EPP_5_0_Branch/gadgets/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/gadgets/server/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/gadgets/server/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<artifactId>exo.portal.gadgets-server</artifactId>
Modified: epp/portal/branches/EPP_5_0_Branch/packaging/module/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/packaging/module/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/packaging/module/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/packaging/pkg/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/packaging/pkg/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/packaging/pkg/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -67,13 +67,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.module</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
<type>js</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.product</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
<type>js</type>
</dependency>
</dependencies>
Modified: epp/portal/branches/EPP_5_0_Branch/packaging/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/packaging/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/packaging/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/packaging/product/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/packaging/product/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/packaging/product/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/packaging/reports/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/packaging/reports/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/packaging/reports/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -37,7 +37,7 @@
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
<packaging>pom</packaging>
<name>GateIn - Portal</name>
@@ -344,110 +344,110 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.pc</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.application-registry</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.xml-parser</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.scripting</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.dashboard</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.core</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets-core</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
<type>test-jar</type>
</dependency>
Modified: epp/portal/branches/EPP_5_0_Branch/portlet/dashboard/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/portlet/dashboard/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/portlet/dashboard/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/portlet/exoadmin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/portlet/exoadmin/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/portlet/exoadmin/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/portlet/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/portlet/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/portlet/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<artifactId>exo.portal.portlet</artifactId>
Modified: epp/portal/branches/EPP_5_0_Branch/portlet/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/portlet/web/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/portlet/web/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/server/jboss/patch-ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/server/jboss/patch-ear/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/server/jboss/patch-ear/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/server/jboss/plugin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/server/jboss/plugin/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/server/jboss/plugin/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/server/jboss/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/server/jboss/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/server/jboss/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<artifactId>exo.portal.server.jboss</artifactId>
Modified: epp/portal/branches/EPP_5_0_Branch/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/server/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/server/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<artifactId>exo.portal.server</artifactId>
Modified: epp/portal/branches/EPP_5_0_Branch/starter/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/starter/ear/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/starter/ear/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</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.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
<type>war</type>
</dependency>
</dependencies>
Modified: epp/portal/branches/EPP_5_0_Branch/starter/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/starter/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/starter/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<artifactId>exo.portal.starter.root</artifactId>
Modified: epp/portal/branches/EPP_5_0_Branch/starter/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/starter/war/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/starter/war/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/testsuite/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/testsuite/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/testsuite/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<artifactId>exo.portal.testsuite</artifactId>
Modified: epp/portal/branches/EPP_5_0_Branch/testsuite/selenium-snifftests/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/testsuite/selenium-snifftests/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/testsuite/selenium-snifftests/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<artifactId>exo.portal.selenium.snifftests</artifactId>
Modified: epp/portal/branches/EPP_5_0_Branch/testsuite/webuibasedsamples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/testsuite/webuibasedsamples/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/testsuite/webuibasedsamples/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<artifactId>exo.webui.based.samples</artifactId>
Modified: epp/portal/branches/EPP_5_0_Branch/web/eXoResources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/web/eXoResources/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/web/eXoResources/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/web/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/web/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<artifactId>exo.portal.web</artifactId>
Modified: epp/portal/branches/EPP_5_0_Branch/web/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/web/portal/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/web/portal/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/web/rest/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/web/rest/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/web/rest/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/webui/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/webui/core/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/webui/core/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/webui/eXo/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/webui/eXo/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/webui/eXo/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_0_Branch/webui/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/webui/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/webui/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<artifactId>exo.portal.webui</artifactId>
Modified: epp/portal/branches/EPP_5_0_Branch/webui/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_0_Branch/webui/portal/pom.xml 2010-09-21 08:30:36 UTC (rev 4273)
+++ epp/portal/branches/EPP_5_0_Branch/webui/portal/pom.xml 2010-09-21 08:50:52 UTC (rev 4274)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.0.1-epp-CR02-SNAPSHOT</version>
+ <version>5.0.1-epp-GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
15 years, 7 months
gatein SVN: r4273 - portal/trunk/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:30:36 -0400 (Tue, 21 Sep 2010)
New Revision: 4273
Modified:
portal/trunk/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component/UIUserInfo.java
Log:
GTNPORTAL-1488: Unknown error when editing signed user at Users management
Modified: portal/trunk/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component/UIUserInfo.java
===================================================================
--- portal/trunk/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component/UIUserInfo.java 2010-09-21 08:28:23 UTC (rev 4272)
+++ portal/trunk/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component/UIUserInfo.java 2010-09-21 08:30:36 UTC (rev 4273)
@@ -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(
15 years, 7 months
gatein SVN: r4272 - epp/portal/branches/EPP_5_1_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:28:23 -0400 (Tue, 21 Sep 2010)
New Revision: 4272
Modified:
epp/portal/branches/EPP_5_1_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_1_Branch/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component/UIUserInfo.java
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component/UIUserInfo.java 2010-09-21 08:24:35 UTC (rev 4271)
+++ epp/portal/branches/EPP_5_1_Branch/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component/UIUserInfo.java 2010-09-21 08:28:23 UTC (rev 4272)
@@ -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(
15 years, 7 months