gatein SVN: r4079 - portal/branches/branch-r4047/webui/portal/src/main/java/org/exoplatform/portal/webui/portal.
by do-not-reply@jboss.org
Author: ndkhoiits
Date: 2010-09-08 02:49:13 -0400 (Wed, 08 Sep 2010)
New Revision: 4079
Modified:
portal/branches/branch-r4047/webui/portal/src/main/java/org/exoplatform/portal/webui/portal/UIPortalForm.java
Log:
GTNPORTAL-1462 Allow to change Locale of site to language having particular country
Modified: portal/branches/branch-r4047/webui/portal/src/main/java/org/exoplatform/portal/webui/portal/UIPortalForm.java
===================================================================
--- portal/branches/branch-r4047/webui/portal/src/main/java/org/exoplatform/portal/webui/portal/UIPortalForm.java 2010-09-08 06:44:10 UTC (rev 4078)
+++ portal/branches/branch-r4047/webui/portal/src/main/java/org/exoplatform/portal/webui/portal/UIPortalForm.java 2010-09-08 06:49:13 UTC (rev 4079)
@@ -171,8 +171,13 @@
LocaleConfigService localeConfigService = getApplicationComponent(LocaleConfigService.class);
LocaleConfig localeConfig = localeConfigService.getLocaleConfig(editPortal.getLocale());
- this.<UIFormInputSet> getChildById("PortalSetting").<UIFormSelectBox> getChildById(FIELD_LOCALE).setValue(
- localeConfig.getLanguage());
+ String lang = localeConfig.getLanguage();
+ if (localeConfig.getLocale().getCountry() != null && localeConfig.getLocale().getCountry().length() > 0)
+ {
+ lang += "_" + localeConfig.getLocale().getCountry();
+ }
+
+ this.<UIFormInputSet> getChildById("PortalSetting").<UIFormSelectBox> getChildById(FIELD_LOCALE).setValue(lang);
setActions(new String[]{"Save", "Close"});
}
@@ -187,7 +192,6 @@
private void createDefaultItem() throws Exception
{
- UIPortal uiPortal = Util.getUIPortal();
LocaleConfigService localeConfigService = getApplicationComponent(LocaleConfigService.class);
Collection<?> listLocaleConfig = localeConfigService.getLocalConfigs();
LocaleConfig defaultLocale = localeConfigService.getDefaultLocaleConfig();
@@ -198,28 +202,27 @@
{
LocaleConfig localeConfig = (LocaleConfig)iterator.next();
ResourceBundle localeResourceBundle = getResourceBundle(currentLocale);
-
- String key = "Locale." + localeConfig.getLocale().getLanguage();
- if (localeConfig.getLocale().getCountry() != null)
+ Locale local = localeConfig.getLocale();
+ String lang = local.getLanguage();
+ if (local.getCountry() != null && local.getCountry().length() > 0)
{
- key += "_" + localeConfig.getLocale().getCountry();
+ lang += "_" + local.getCountry();
}
String displayName = null;
try
{
+ String key = "Locale." + lang;
String translation = localeResourceBundle.getString(key);
displayName = translation;
}
catch (MissingResourceException e)
{
- displayName = capitalizeFirstLetter(localeConfig.getLocale().getDisplayName(currentLocale));;
+ displayName = capitalizeFirstLetter(local.getDisplayName(currentLocale));;
}
- SelectItemOption<String> option =
- new SelectItemOption<String>(displayName, localeConfig
- .getLanguage());
- if (defaultLanguage.equals(localeConfig.getLanguage()))
+ SelectItemOption<String> option = new SelectItemOption<String>(displayName, lang);
+ if (defaultLanguage.equals(lang))
{
option.setSelected(true);
}
14 years, 3 months
gatein SVN: r4078 - portal/branches/branch-r4047/webui/eXo/src/main/java/org/exoplatform/webui/organization.
by do-not-reply@jboss.org
Author: ndkhoiits
Date: 2010-09-08 02:44:10 -0400 (Wed, 08 Sep 2010)
New Revision: 4078
Modified:
portal/branches/branch-r4047/webui/eXo/src/main/java/org/exoplatform/webui/organization/UIUserProfileInputSet.java
Log:
GTNPORTAL-1460 Set default language is empty when create new user
Modified: portal/branches/branch-r4047/webui/eXo/src/main/java/org/exoplatform/webui/organization/UIUserProfileInputSet.java
===================================================================
--- portal/branches/branch-r4047/webui/eXo/src/main/java/org/exoplatform/webui/organization/UIUserProfileInputSet.java 2010-09-08 04:25:46 UTC (rev 4077)
+++ portal/branches/branch-r4047/webui/eXo/src/main/java/org/exoplatform/webui/organization/UIUserProfileInputSet.java 2010-09-08 06:44:10 UTC (rev 4078)
@@ -189,14 +189,12 @@
{
option.setSelected(true);
}
- if (config.getLanguage().equals("en"))
- {
- lang.add(0, option);
- continue;
- }
lang.add(option);
}
+ // Set default language for new user is empty
+ lang.add(new SelectItemOption<String>("", ""));
+
Collections.sort(lang, new LanguagesComparator());
langSelectBox.setOptions(lang);
14 years, 3 months
gatein SVN: r4077 - in components/wsrp/trunk: producer/src/main/java/org/gatein/exports/data and 4 other directories.
by do-not-reply@jboss.org
Author: mwringe
Date: 2010-09-08 00:25:46 -0400 (Wed, 08 Sep 2010)
New Revision: 4077
Modified:
components/wsrp/trunk/producer/src/main/java/org/gatein/exports/ExportManager.java
components/wsrp/trunk/producer/src/main/java/org/gatein/exports/ExportPersistenceManager.java
components/wsrp/trunk/producer/src/main/java/org/gatein/exports/data/ExportContext.java
components/wsrp/trunk/producer/src/main/java/org/gatein/exports/impl/ExportManagerImpl.java
components/wsrp/trunk/producer/src/main/java/org/gatein/wsrp/producer/handlers/PortletManagementHandler.java
components/wsrp/trunk/wsrp-producer-war/src/test/java/org/gatein/wsrp/protocol/v2/PortletManagementTestCase.java
components/wsrp/trunk/wsrp-producer-war/src/test/java/org/gatein/wsrp/support/TestMockExportPersistenceManager.java
Log:
GTNWSRP-64: remove lifetime class references (WSRP 2.0 specific class) in the export manager apis. Still need to throw new, non WSRP 2.0 specific exceptions. Ugly right now, still need to find a better more clean solution.
GTNWSRP-69: Update the persistence manager classes to work a bit better. The TestMockExportPersistenceManager is very close to being an in memory solution.
Modified: components/wsrp/trunk/producer/src/main/java/org/gatein/exports/ExportManager.java
===================================================================
--- components/wsrp/trunk/producer/src/main/java/org/gatein/exports/ExportManager.java 2010-09-07 21:59:31 UTC (rev 4076)
+++ components/wsrp/trunk/producer/src/main/java/org/gatein/exports/ExportManager.java 2010-09-08 04:25:46 UTC (rev 4077)
@@ -24,7 +24,6 @@
import org.gatein.exports.data.ExportContext;
import org.gatein.exports.data.ExportPortletData;
-import org.oasis.wsrp.v2.Lifetime;
import org.oasis.wsrp.v2.OperationFailed;
import org.oasis.wsrp.v2.OperationNotSupported;
@@ -43,19 +42,19 @@
boolean supportsExportByValue();
- ExportContext createExportContext(boolean exportByValueRequired, Lifetime lifetime) throws UnsupportedEncodingException;
+ ExportContext createExportContext(boolean exportByValueRequired, long currentTime, long terminationTime, long refreshDuration) throws UnsupportedEncodingException;
ExportContext createExportContext(byte[] bytes) throws OperationFailed;
ExportPortletData createExportPortletData(ExportContext exportContextData, String portletHandle, byte[] portletState) throws UnsupportedEncodingException;
- ExportPortletData createExportPortletData(ExportContext exportContext, Lifetime lifetime, byte[] bytes) throws OperationFailed;
+ ExportPortletData createExportPortletData(ExportContext exportContext, long currentime, long terminationTime, long refreshDuration, byte[] bytes) throws OperationFailed;
byte[] encodeExportPortletData(ExportContext exportContextData, ExportPortletData exportPortletData) throws UnsupportedEncodingException, IOException;
byte[] encodeExportContextData(ExportContext exportContextData) throws UnsupportedEncodingException, IOException;
- Lifetime setExportLifetime(ExportContext exportContext, Lifetime lifetime) throws OperationFailed, OperationNotSupported;
+ ExportContext setExportLifetime(byte[] exportContextBytes, long currentTime, long terminationTime, long refreshDuration) throws OperationFailed, OperationNotSupported;
void releaseExport(byte[] bytes) throws IOException;
}
Modified: components/wsrp/trunk/producer/src/main/java/org/gatein/exports/ExportPersistenceManager.java
===================================================================
--- components/wsrp/trunk/producer/src/main/java/org/gatein/exports/ExportPersistenceManager.java 2010-09-07 21:59:31 UTC (rev 4076)
+++ components/wsrp/trunk/producer/src/main/java/org/gatein/exports/ExportPersistenceManager.java 2010-09-08 04:25:46 UTC (rev 4077)
@@ -34,19 +34,7 @@
* @version $Revision$
*/
public interface ExportPersistenceManager
-{
- String storeExportContextData(ExportContext exportContextData);
-
- String storeExportPortletData(ExportPortletData exportPortletData);
-
- ExportContext retrieveExportContextData(String refid);
-
- ExportPortletData retrieveExportPortletData(String refid);
-
- Lifetime updateExportLifetime(ExportContext exportContext, Lifetime lifetime);
-
- void releaseExport(byte[] bytes);
-
+{
/**
* Returns true if the PersistenceManager knows how to decode a byte array with
* the specified type and version.
@@ -56,21 +44,28 @@
* @return True if the persistence manager can support the specified type and version.
*/
boolean supports(String type, double version);
+
+ String getExportReferenceId (String type, double version, byte[] bytes) throws UnsupportedEncodingException;
+
+ String storeExportContext(ExportContext exportContext);
+
+ ExportContext getExportContext(String refId);
+
+ //why are we returning an ExportContext here?
+ ExportContext updateExportContext(String refId, ExportContext updatedExportContext);
+
+ boolean removeExportContext(String refId);
+
+ byte[] encodeExportContext(String refId) throws IOException;
+
+ String storeExportPortletData (ExportContext exportContext, ExportPortletData exportPortletData);
+
+ ExportPortletData getExportPortletData (String exportContextId, String portletDataId);
- /**
- * Based on the specified type and version, the bytes will be
- * decoded into an ExportContext.
- *
- * @param type The type
- * @param version The version
- * @param bytes The bytes to decode
- * @return
- * @throws UnsupportedEncodingException
- */
- ExportContext getExportContext(String type, double version, byte[] bytes) throws UnsupportedEncodingException;
-
- byte[] encodeExportPortletData(ExportContext exportContext, ExportPortletData exportPortlet);
-
- byte[] encodeExportContextData(ExportContext exportContext) throws IOException;
+ ExportPortletData updateExportPortletData(String refId, ExportPortletData updatedPortletData);
+
+ boolean removeExportPortletData(String exportContextId, String portletDataId);
+
+ byte[] encodeExportPortletData(String exportDataRefId) throws IOException;
}
Modified: components/wsrp/trunk/producer/src/main/java/org/gatein/exports/data/ExportContext.java
===================================================================
--- components/wsrp/trunk/producer/src/main/java/org/gatein/exports/data/ExportContext.java 2010-09-07 21:59:31 UTC (rev 4076)
+++ components/wsrp/trunk/producer/src/main/java/org/gatein/exports/data/ExportContext.java 2010-09-08 04:25:46 UTC (rev 4077)
@@ -22,8 +22,6 @@
*/
package org.gatein.exports.data;
-import org.oasis.wsrp.v2.Lifetime;
-
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.List;
@@ -38,9 +36,11 @@
protected static final String ENCODING = "UTF-8";
public static final String TYPE = "WSRP_EC";
public static final double VERSION = 1.0;
-
-
- protected Lifetime lifeTime;
+
+ protected long currentTime;
+ protected long terminationTime;
+ protected long refreshDuration;
+
protected final boolean exportByValue;
protected List<String> portlets;
@@ -48,38 +48,68 @@
//for now, we don't store anything in the exported by value ExportContext
public ExportContext()
{
- this.lifeTime = null;
this.exportByValue = true;
}
- public ExportContext(boolean exportByValue, Lifetime lifetime)
+ public ExportContext(boolean exportByValue, long currentTime, long terminationTime, long refreshDuration)
{
//ignore the lifetime if we are exporting by value
if (exportByValue)
{
- this.lifeTime = null;
+ this.currentTime = currentTime;
+ this.terminationTime = terminationTime;
+ this.refreshDuration = refreshDuration;
}
else
{
- this.lifeTime = lifetime;
+ //this.lifeTime = lifetime;
}
this.exportByValue = exportByValue;
}
+
+ public ExportContext(String refId, long currentTime, long terminationTime, long refreshDuration)
+ {
+ this.currentTime = currentTime;
+ this.terminationTime = terminationTime;
+ this.refreshDuration = refreshDuration;
+ this.exportByValue = false;
+ }
+
public boolean isExportByValue()
{
return this.exportByValue;
}
-
- public Lifetime getLifeTime()
+
+ public long getCurrentTime ()
{
- return lifeTime;
+ return currentTime;
}
-
- public void setLifeTime(Lifetime lifetime)
+
+ public void setCurrentTime(long currentTime)
{
- this.lifeTime = lifetime;
+ this.currentTime = currentTime;
}
+
+ public long getTermintationTime()
+ {
+ return terminationTime;
+ }
+
+ public void setTerminationTime(long terminationTime)
+ {
+ this.terminationTime = terminationTime;
+ }
+
+ public long getRefreshDuration()
+ {
+ return refreshDuration;
+ }
+
+ public void setRefreshDuration(long refreshDuration)
+ {
+ this.refreshDuration = refreshDuration;
+ }
public void addPortlet(String portletName)
{
@@ -89,6 +119,11 @@
}
this.portlets.add(portletName);
}
+
+ public List<String> getPortlets()
+ {
+ return portlets;
+ }
public static ExportContext create(byte[] bytes)
{
Modified: components/wsrp/trunk/producer/src/main/java/org/gatein/exports/impl/ExportManagerImpl.java
===================================================================
--- components/wsrp/trunk/producer/src/main/java/org/gatein/exports/impl/ExportManagerImpl.java 2010-09-07 21:59:31 UTC (rev 4076)
+++ components/wsrp/trunk/producer/src/main/java/org/gatein/exports/impl/ExportManagerImpl.java 2010-09-08 04:25:46 UTC (rev 4077)
@@ -28,7 +28,6 @@
import org.gatein.exports.data.ExportData;
import org.gatein.exports.data.ExportPortletData;
import org.gatein.wsrp.WSRPExceptionFactory;
-import org.oasis.wsrp.v2.Lifetime;
import org.oasis.wsrp.v2.OperationFailed;
import org.oasis.wsrp.v2.OperationNotSupported;
@@ -60,7 +59,7 @@
this.exportPersistenceManager = exportPersistenceManager;
}
- public ExportContext createExportContext(boolean exportByValueRequired, Lifetime lifetime)
+ public ExportContext createExportContext(boolean exportByValueRequired, long currentTime, long terminationTime, long refreshDuration)
throws UnsupportedEncodingException
{
boolean useExportByValue = false;
@@ -68,8 +67,8 @@
{
useExportByValue = true;
}
-
- return new ExportContext(useExportByValue, lifetime);
+
+ return new ExportContext(useExportByValue, currentTime, terminationTime, refreshDuration);
}
public boolean supportsExportByValue()
@@ -95,7 +94,8 @@
}
else if (exportPersistenceManager != null && exportPersistenceManager.supports(type, version))
{
- return exportPersistenceManager.getExportContext(type, version, ExportData.getInternalBytes(bytes));
+ String refId = exportPersistenceManager.getExportReferenceId(type, version, ExportData.getInternalBytes(bytes));
+ return exportPersistenceManager.getExportContext(refId);
}
else
{
@@ -118,7 +118,7 @@
return new ExportPortletData(portletHandle, portletState);
}
- public ExportPortletData createExportPortletData(ExportContext exportContextData, Lifetime lifetime, byte[] bytes) throws OperationFailed
+ public ExportPortletData createExportPortletData(ExportContext exportContextData, long currentTime, long terminationTime, long refreshDuration, byte[] bytes) throws OperationFailed
{
try
{
@@ -152,34 +152,62 @@
}
else
{
- return exportPersistenceManager.encodeExportPortletData(exportContextData, exportPortletData);
+ String refId = exportPersistenceManager.storeExportPortletData(exportContextData, exportPortletData);
+ return exportPersistenceManager.encodeExportPortletData(refId);
}
}
- public byte[] encodeExportContextData(ExportContext exportContextData) throws IOException
+ public byte[] encodeExportContextData(ExportContext exportContext) throws IOException
{
- if (exportContextData.isExportByValue())
+ if (exportContext.isExportByValue())
{
- return exportContextData.encodeAsBytes();
+ return exportContext.encodeAsBytes();
}
else
{
- return exportPersistenceManager.encodeExportContextData(exportContextData);
+ String refId = exportPersistenceManager.storeExportContext(exportContext);
+ return exportPersistenceManager.encodeExportContext(refId);
}
}
- public Lifetime setExportLifetime(ExportContext exportContext, Lifetime lifetime) throws OperationFailed, OperationNotSupported
- {
+ public ExportContext setExportLifetime(byte[] exportContextBytes, long currentTime, long terminationTime, long refreshDuration) throws OperationFailed, OperationNotSupported
+ {
if (getPersistenceManager() == null)
{
WSRPExceptionFactory.throwWSException(OperationNotSupported.class, "The producer only supports export by value. Cannot call setExportLifetime on this producer", null);
}
- else if (exportContext.isExportByValue())
+
+ try
{
- WSRPExceptionFactory.throwWSException(OperationFailed.class, "Cannot set the lifetime for an export that was exported by value.", null);
+ String type = ExportData.getType(exportContextBytes);
+ double version = ExportData.getVersion(exportContextBytes);
+
+ if (getPersistenceManager().supports(type, version))
+ {
+ String refId = getPersistenceManager().getExportReferenceId(type, version, ExportData.getInternalBytes(exportContextBytes));
+ ExportContext exportContext = getPersistenceManager().getExportContext(refId);
+
+ if (exportContext.isExportByValue())
+ {
+ WSRPExceptionFactory.throwWSException(OperationFailed.class, "Cannot set the lifetime for an export that was exported by value.", null);
+ }
+
+ exportContext.setCurrentTime(currentTime);
+ exportContext.setTerminationTime(terminationTime);
+ exportContext.setRefreshDuration(refreshDuration);
+
+ ExportContext updatedExportContext = getPersistenceManager().updateExportContext(refId, exportContext);
+ return updatedExportContext;
+ }
+ else
+ {
+ throw WSRPExceptionFactory.createWSException(OperationFailed.class, "Byte array format not recognized.", null);
+ }
}
-
- return getPersistenceManager().updateExportLifetime(exportContext, lifetime);
+ catch (IOException e)
+ {
+ throw WSRPExceptionFactory.createWSException(OperationFailed.class, "Could not decode the byte array.", e);
+ }
}
public void releaseExport(byte[] bytes) throws IOException
@@ -191,7 +219,8 @@
double version = ExportData.getVersion(bytes);
if (exportPersistenceManager.supports(type, version))
{
- exportPersistenceManager.releaseExport(ExportData.getInternalBytes(bytes));
+ String refId = exportPersistenceManager.getExportReferenceId(type, version, ExportData.getInternalBytes(bytes));
+ exportPersistenceManager.removeExportContext(refId);
}
}
}
Modified: components/wsrp/trunk/producer/src/main/java/org/gatein/wsrp/producer/handlers/PortletManagementHandler.java
===================================================================
--- components/wsrp/trunk/producer/src/main/java/org/gatein/wsrp/producer/handlers/PortletManagementHandler.java 2010-09-07 21:59:31 UTC (rev 4076)
+++ components/wsrp/trunk/producer/src/main/java/org/gatein/wsrp/producer/handlers/PortletManagementHandler.java 2010-09-08 04:25:46 UTC (rev 4077)
@@ -103,9 +103,15 @@
import org.oasis.wsrp.v2.SetPortletsLifetimeResponse;
import org.oasis.wsrp.v2.UserContext;
+import javax.xml.datatype.DatatypeConfigurationException;
+import javax.xml.datatype.DatatypeFactory;
+import javax.xml.datatype.Duration;
+import javax.xml.datatype.XMLGregorianCalendar;
import javax.xml.namespace.QName;
import java.util.ArrayList;
import java.util.Collections;
+import java.util.Date;
+import java.util.GregorianCalendar;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
@@ -538,9 +544,19 @@
{
RegistrationLocal.setRegistration(registration);
- //TODO: try catch here?
- ExportContext exportContext = producer.getExportManager().createExportContext(exportByValueRequired, exportPortlets.getLifetime());
-
+ ExportContext exportContext;
+ if (exportPortlets.getLifetime() != null)
+ {
+ long currentTime = toLongDate(exportPortlets.getLifetime().getCurrentTime());
+ long terminationTime = toLongDate(exportPortlets.getLifetime().getTerminationTime());
+ long refreshDuration = exportPortlets.getLifetime().getRefreshDuration().getTimeInMillis(exportPortlets.getLifetime().getCurrentTime().toGregorianCalendar());
+ exportContext = producer.getExportManager().createExportContext(exportByValueRequired, currentTime, terminationTime, refreshDuration);
+ }
+ else
+ {
+ exportContext = producer.getExportManager().createExportContext(exportByValueRequired, -1, -1, -1);
+ }
+
for (PortletContext portletContext : exportPortlets.getPortletContext())
{
try
@@ -616,7 +632,17 @@
byte[] exportContextBytes = producer.getExportManager().encodeExportContextData(exportContext);
- return WSRPTypeFactory.createExportPortletsResponse(exportContextBytes, exportedPortlets, new ArrayList<FailedPortlets>(failedPortletsMap.values()), exportContext.getLifeTime(), resourceList);
+ Lifetime lifetime = null;
+
+ if (exportContext.getCurrentTime() > 0)
+ {
+ lifetime = new Lifetime();
+ lifetime.setCurrentTime(toXMLGregorianCalendar(exportContext.getCurrentTime()));
+ lifetime.setTerminationTime(toXMLGregorianCalendar(exportContext.getTermintationTime()));
+ lifetime.setRefreshDuration(toDuration(exportContext.getRefreshDuration()));
+ }
+
+ return WSRPTypeFactory.createExportPortletsResponse(exportContextBytes, exportedPortlets, new ArrayList<FailedPortlets>(failedPortletsMap.values()), lifetime, resourceList);
}
catch (Exception e)
{
@@ -668,8 +694,19 @@
{
byte[] portletData = importPortlet.getExportData();
- ExportPortletData exportPortletData = producer.getExportManager().createExportPortletData(exportContext, lifeTime, portletData);
-
+ ExportPortletData exportPortletData;
+ if (lifeTime != null)
+ {
+ long currentTime = toLongDate(lifeTime.getCurrentTime());
+ long terminationTime = toLongDate(lifeTime.getTerminationTime());
+ long refreshDuration = lifeTime.getRefreshDuration().getTimeInMillis(lifeTime.getCurrentTime().toGregorianCalendar());
+ exportPortletData = producer.getExportManager().createExportPortletData(exportContext, currentTime, terminationTime, refreshDuration, portletData);
+ }
+ else
+ {
+ exportPortletData = producer.getExportManager().createExportPortletData(exportContext, -1, -1, -1, portletData);
+ }
+
String portletHandle = exportPortletData.getPortletHandle();
byte[] portletState = exportPortletData.getPortletState();
@@ -786,11 +823,20 @@
try
{
RegistrationLocal.setRegistration(registration);
-
- ExportContext exportContext = producer.getExportManager().createExportContext(exportContextBytes);
-
- return producer.getExportManager().setExportLifetime(exportContext, setExportLifetime.getLifetime());
-
+
+ ExportContext exportContext;
+ if (setExportLifetime != null)
+ {
+ long currentTime = toLongDate(setExportLifetime.getLifetime().getCurrentTime());
+ long terminationTime = toLongDate(setExportLifetime.getLifetime().getTerminationTime());
+ long refreshDuration = setExportLifetime.getLifetime().getRefreshDuration().getTimeInMillis(setExportLifetime.getLifetime().getCurrentTime().toGregorianCalendar());
+ exportContext = producer.getExportManager().setExportLifetime(exportContextBytes, currentTime, terminationTime, refreshDuration);
+ }
+ else
+ {
+ exportContext = producer.getExportManager().setExportLifetime(exportContextBytes, -1, -1, -1);
+ }
+ return getLifetime(exportContext);
}
catch (Exception e)
{
@@ -829,4 +875,46 @@
RegistrationLocal.setRegistration(null);
}
}
+
+ //TODO: move these classes to the common module and write up proper lifetime utilities
+ private XMLGregorianCalendar toXMLGregorianCalendar(long time) throws DatatypeConfigurationException
+ {
+ Date date = new Date(time);
+ GregorianCalendar gregorianCalendar = new GregorianCalendar();
+ gregorianCalendar.setTime(date);
+ return DatatypeFactory.newInstance().newXMLGregorianCalendar(gregorianCalendar);
+ }
+
+ private long toLongDate(XMLGregorianCalendar calendar)
+ {
+ return calendar.toGregorianCalendar().getTime().getTime();
+ }
+
+ private Duration toDuration(long duration) throws DatatypeConfigurationException
+ {
+ return DatatypeFactory.newInstance().newDuration(duration);
+ }
+
+ private Lifetime getLifetime(ExportContext exportContext) throws DatatypeConfigurationException
+ {
+ if (exportContext.getCurrentTime() >= 0)
+ {
+ Lifetime lifetime = new Lifetime();
+
+ XMLGregorianCalendar currentTime = toXMLGregorianCalendar(exportContext.getCurrentTime());
+ XMLGregorianCalendar terminationTime = toXMLGregorianCalendar(exportContext.getTermintationTime());
+
+ Duration duration = toDuration(exportContext.getRefreshDuration());
+
+ lifetime.setCurrentTime(currentTime);
+ lifetime.setTerminationTime(terminationTime);
+ lifetime.setRefreshDuration(duration);
+
+ return lifetime;
+ }
+ else
+ {
+ return null;
+ }
+ }
}
Modified: components/wsrp/trunk/wsrp-producer-war/src/test/java/org/gatein/wsrp/protocol/v2/PortletManagementTestCase.java
===================================================================
--- components/wsrp/trunk/wsrp-producer-war/src/test/java/org/gatein/wsrp/protocol/v2/PortletManagementTestCase.java 2010-09-07 21:59:31 UTC (rev 4076)
+++ components/wsrp/trunk/wsrp-producer-war/src/test/java/org/gatein/wsrp/protocol/v2/PortletManagementTestCase.java 2010-09-08 04:25:46 UTC (rev 4077)
@@ -133,13 +133,22 @@
@Test
public void testExport() throws Exception
{
- String handle = getDefaultHandle();
- List<PortletContext> portletContexts = createPortletContextList(handle);
+ try
+ {
+ String handle = getDefaultHandle();
+ List<PortletContext> portletContexts = createPortletContextList(handle);
- ExportPortlets exportPortlets = createSimpleExportPortlets(portletContexts);
- ExportPortletsResponse response = producer.exportPortlets(exportPortlets);
+ ExportPortlets exportPortlets = createSimpleExportPortlets(portletContexts);
+ ExportPortletsResponse response = producer.exportPortlets(exportPortlets);
- checkValidHandle(response, handle);
+ checkValidHandle(response, handle);
+ }
+ catch (Exception e)
+ {
+ System.out.println("An exception occurred when running testExport");
+ e.printStackTrace();
+ throw new Exception(e);
+ }
}
@Test
@@ -853,7 +862,8 @@
//Test that doing a release export actually removed the stored RefId
TestMockExportPersistenceManager persistenceManager = (TestMockExportPersistenceManager)producer.getExportManager().getPersistenceManager();
- assertEquals(0, persistenceManager.getExportContexts().keySet().size());
+ assertEquals(0, persistenceManager.getExportContextKeys().size());
+ assertEquals(0, persistenceManager.getExportPortletsKeys().size());
}
@Test
@@ -887,12 +897,14 @@
exportPortlets.setExportByValueRequired(false);
//Test that we don't have anything in the PM before doing an export
- assertEquals(0, persistenceManager.getExportContexts().keySet().size());
+ assertEquals(0, persistenceManager.getExportContextKeys().size());
+ assertEquals(0, persistenceManager.getExportPortletsKeys().size());
ExportPortletsResponse response = producer.exportPortlets(exportPortlets);
//Test that we have an entry in the PM after doing an export
- assertEquals(1, persistenceManager.getExportContexts().keySet().size());
+ assertEquals(1, persistenceManager.getExportContextKeys().size());
+ assertEquals(1, persistenceManager.getExportPortletsKeys().size());
return response;
}
@@ -960,7 +972,19 @@
for (ExportedPortlet exportPortlet : exportedPortlets)
{
- ExportPortletData exportPortletData = exportManager.createExportPortletData(exportContext, exportPortletsResponse.getLifetime(), exportPortlet.getExportData());
+ ExportPortletData exportPortletData;
+ Lifetime lifetime = exportPortletsResponse.getLifetime();
+ if (lifetime != null)
+ {
+ long currentTime = lifetime.getCurrentTime().toGregorianCalendar().getTime().getTime();
+ long terminationTime = lifetime.getTerminationTime().toGregorianCalendar().getTime().getTime();
+ long refreshDuration = lifetime.getRefreshDuration().getTimeInMillis(lifetime.getCurrentTime().toGregorianCalendar());
+ exportPortletData = exportManager.createExportPortletData(exportContext, currentTime, terminationTime, refreshDuration, exportPortlet.getExportData());
+ }
+ else
+ {
+ exportPortletData = exportManager.createExportPortletData(exportContext, -1, -1, -1, exportPortlet.getExportData());
+ }
String portletHandle = exportPortletData.getPortletHandle();
byte[] portletState = exportPortletData.getPortletState();
portletContexts.add(WSRPTypeFactory.createPortletContext(portletHandle, portletState));
Modified: components/wsrp/trunk/wsrp-producer-war/src/test/java/org/gatein/wsrp/support/TestMockExportPersistenceManager.java
===================================================================
--- components/wsrp/trunk/wsrp-producer-war/src/test/java/org/gatein/wsrp/support/TestMockExportPersistenceManager.java 2010-09-07 21:59:31 UTC (rev 4076)
+++ components/wsrp/trunk/wsrp-producer-war/src/test/java/org/gatein/wsrp/support/TestMockExportPersistenceManager.java 2010-09-08 04:25:46 UTC (rev 4077)
@@ -32,7 +32,9 @@
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.util.HashMap;
+import java.util.List;
import java.util.Map;
+import java.util.Set;
import java.util.UUID;
/**
@@ -44,22 +46,24 @@
public static final String PEC_TYPE = "P_EC";
public static final double PEC_VERSION = 1.0;
-
+
+ public static final String PED_TYPE = "P_ED";
+ public static final double PED_VERSION = 1.0;
+
Map<String, ExportContext> exportContexts = new HashMap<String, ExportContext>();
+ Map<String, ExportPortletData> exportPortletDatas = new HashMap<String, ExportPortletData>();
- //For testing purposes only
- public Map<String, ExportContext> getExportContexts()
+ public ExportContext getExportContext(String refId)
{
- return exportContexts;
+ return exportContexts.get(refId);
}
- public ExportContext getExportContext(String type, double version, byte[] bytes) throws UnsupportedEncodingException
+ public ExportPortletData getExportPortletData(String exportContextId, String portletDataID)
{
- if (supports(type, version))
+ ExportContext exportContext = exportContexts.get(exportContextId);
+ if (exportContext.getPortlets().contains(portletDataID))
{
- PersistedExportData persistedExportData = PersistedExportData.create(bytes);
- String refId = persistedExportData.getRefId();
- return exportContexts.get(refId);
+ return exportPortletDatas.get(portletDataID);
}
else
{
@@ -67,81 +71,137 @@
}
}
- public void releaseExport(byte[] bytes)
+ //For testing purposes only
+ public Set<String> getExportContextKeys()
{
- try
+ return exportContexts.keySet();
+ }
+
+ //For testing purposes only
+ public Set<String> getExportPortletsKeys()
+ {
+ return exportPortletDatas.keySet();
+ }
+
+ public String getExportReferenceId(String type, double version, byte[] bytes) throws UnsupportedEncodingException
+ {
+ if (supports(type, version))
+ {
+ PersistedExportData persistedExportData = PersistedExportData.create(bytes);
+ return persistedExportData.getRefId();
+ }
+ else
+ {
+ return null;
+ }
+ }
+
+ public boolean removeExportContext(String refId)
+ {
+ if (exportContexts.containsKey(refId))
{
- PersistedExportData persistedExportData = PersistedExportData.create(bytes);
- String refId = persistedExportData.getRefId();
- if (exportContexts.containsKey(refId))
+ List<String> portlets = exportContexts.get(refId).getPortlets();
+ for (String portlet: portlets)
{
- exportContexts.remove(refId);
+ exportPortletDatas.remove(portlet);
}
+ exportContexts.remove(refId);
+ return true;
}
- catch (Exception e)
+ else
{
- System.out.println("ERROR When trying to release exports");
- e.printStackTrace();
+ return false;
}
}
- public ExportContext retrieveExportContextData(String refid)
+ public boolean removeExportPortletData(String exportContextId, String exportDataId)
{
- if (exportContexts.containsKey(refid))
+ if (exportContexts.containsKey(exportDataId))
{
- return exportContexts.get(refid);
+ List<String> portlets = exportContexts.get(exportDataId).getPortlets();
+ if (portlets.contains(exportDataId))
+ {
+ portlets.remove(exportContextId);
+ exportPortletDatas.remove(exportDataId);
+ return true;
+ }
}
- else
- {
- return null;
- }
+ return false;
}
- public ExportPortletData retrieveExportPortletData(String refid)
+ public boolean supports(String type, double version)
{
- throw new NotYetImplemented();
+ return (type.equals(PEC_TYPE) && (version == PEC_VERSION)) || ((type.equals(PED_TYPE) && (version == PED_VERSION)));
}
- public String storeExportContextData(ExportContext exportContextData)
+ public ExportContext updateExportContext(String refId, ExportContext updatedExportContext)
{
- if (exportContextData != null)
+ if (updatedExportContext != null && refId != null && exportContexts.containsKey(refId))
{
- String refId = UUID.randomUUID().toString();
- exportContexts.put(refId, exportContextData);
- return refId;
+ exportContexts.put(refId, updatedExportContext);
+ return updatedExportContext;
}
else
{
+ //throw some error here
return null;
}
}
- public String storeExportPortletData(ExportPortletData exportPortletData)
+ public ExportPortletData updateExportPortletData(String refId, ExportPortletData updatedPortletData)
{
- throw new NotYetImplemented();
+ if (updatedPortletData != null && refId != null && exportContexts.containsKey(refId))
+ {
+ exportPortletDatas.put(refId, updatedPortletData);
+ return updatedPortletData;
+ }
+ else
+ {
+ return null;
+ }
}
- public boolean supports(String type, double version)
+ public byte[] encodeExportContext(String refId) throws IOException
{
- return type.equals(PEC_TYPE) && (version == PEC_VERSION);
+ PersistedExportData persistedExportData = new PersistedExportData(PEC_TYPE, refId);
+ return persistedExportData.encodeAsBytes();
}
- public Lifetime updateExportLifetime(ExportContext exportContext, Lifetime lifetime)
+ public byte[] encodeExportPortletData(String exportDataRefId) throws IOException
{
- throw new NotYetImplemented();
+ PersistedExportData persistedExportData = new PersistedExportData(PED_TYPE, exportDataRefId);
+ return persistedExportData.encodeAsBytes();
}
- public byte[] encodeExportContextData(ExportContext exportContext) throws IOException
+ public String storeExportContext(ExportContext exportContext)
{
- String refId = storeExportContextData(exportContext);
- PersistedExportData persistedExportData = new PersistedExportData(PEC_TYPE, refId);
- return persistedExportData.encodeAsBytes();
+ if (exportContext != null)
+ {
+ String refId = UUID.randomUUID().toString();
+ exportContexts.put(refId, exportContext);
+ return refId;
+ }
+ else
+ {
+ return null;
+ }
}
- public byte[] encodeExportPortletData(ExportContext exportContext, ExportPortletData exportPortlet)
+ public String storeExportPortletData(ExportContext exportContext, ExportPortletData exportPortletData)
{
- // FIXME encodeExportPortletData
- return null;
+ if (exportPortletData != null && exportContext != null)
+ {
+ String refId = UUID.randomUUID().toString();
+ exportContext.addPortlet(refId);
+
+ exportPortletDatas.put(refId, exportPortletData);
+
+ return refId;
+ }
+ else
+ {
+ return null;
+ }
}
}
14 years, 3 months
gatein SVN: r4076 - in components/wsrp/trunk: admin-gui/src/main/webapp/WEB-INF and 9 other directories.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2010-09-07 17:59:31 -0400 (Tue, 07 Sep 2010)
New Revision: 4076
Added:
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/confirmDeleteExport.xhtml
components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/consumer/migration/
components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/consumer/migration/MigrationServiceTestCase.java
Modified:
components/wsrp/trunk/admin-gui/src/main/java/org/gatein/wsrp/admin/ui/ConsumerBean.java
components/wsrp/trunk/admin-gui/src/main/java/org/gatein/wsrp/admin/ui/ConsumerManagerBean.java
components/wsrp/trunk/admin-gui/src/main/webapp/WEB-INF/classes/Resource.properties
components/wsrp/trunk/admin-gui/src/main/webapp/WEB-INF/classes/Resource_fr.properties
components/wsrp/trunk/admin-gui/src/main/webapp/WEB-INF/faces-config.xml
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/consumers.xhtml
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/export.xhtml
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/exportDetail.xhtml
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/exports.xhtml
components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/WSRPConsumer.java
components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/WSRPConsumerImpl.java
components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/migration/ExportInfo.java
components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/migration/MigrationService.java
components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/test/support/MockWSRPConsumer.java
Log:
- GTNWSRP-61: improved many aspects of the UI
+ now require a consumer refresh to see import/export actions since we need to check that the operation is available first
+ implemented export list view
+ started adding implementations for export list actions
+ added ExportInfoDisplay and FailedPortletsDisplay classes to better control how an ExportInfo is displayed
- Added getHumanReadable* methods on ExportInfo to display times in human readable format.
- Added WSRPConsumer.isSupportsExport method to determine whether a given consumer supports import/export (right now, only checks protocol version)
Modified: components/wsrp/trunk/admin-gui/src/main/java/org/gatein/wsrp/admin/ui/ConsumerBean.java
===================================================================
--- components/wsrp/trunk/admin-gui/src/main/java/org/gatein/wsrp/admin/ui/ConsumerBean.java 2010-09-07 20:33:07 UTC (rev 4075)
+++ components/wsrp/trunk/admin-gui/src/main/java/org/gatein/wsrp/admin/ui/ConsumerBean.java 2010-09-07 21:59:31 UTC (rev 4076)
@@ -34,15 +34,23 @@
import org.gatein.wsrp.consumer.migration.ExportInfo;
import org.gatein.wsrp.consumer.registry.ConsumerRegistry;
+import javax.faces.event.ActionEvent;
import javax.faces.model.DataModel;
import javax.faces.model.ListDataModel;
+import javax.xml.namespace.QName;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.ArrayList;
+import java.util.Calendar;
import java.util.Collection;
import java.util.Collections;
+import java.util.Date;
import java.util.LinkedList;
import java.util.List;
+import java.util.Locale;
+import java.util.Map;
+import java.util.Set;
+import java.util.SortedMap;
/**
* @author <a href="mailto:chris.laprun@jboss.com">Chris Laprun</a>
@@ -71,7 +79,7 @@
private DataModel portletHandles;
private DataModel existingExports;
- private ExportInfo currentExport;
+ private ExportInfoDisplay currentExport;
public void setRegistry(ConsumerRegistry registry)
{
@@ -521,7 +529,7 @@
}
}
- public String export()
+ public String exportPortlets()
{
if (consumer != null)
{
@@ -537,7 +545,7 @@
try
{
- currentExport = consumer.exportPortlets(selectedHandles);
+ currentExport = new ExportInfoDisplay(consumer.exportPortlets(selectedHandles), beanContext.getLocale());
}
catch (Exception e)
{
@@ -551,7 +559,7 @@
return null;
}
- public ExportInfo getCurrentExport()
+ public ExportInfoDisplay getCurrentExport()
{
return currentExport;
}
@@ -560,12 +568,53 @@
{
if (existingExports == null)
{
- existingExports = new ListDataModel(consumer.getMigrationService().getAvailableExportInfos());
+ Locale locale = beanContext.getLocale();
+ List<ExportInfo> availableExportInfos = consumer.getMigrationService().getAvailableExportInfos();
+ List<ExportInfoDisplay> exportDisplays = new ArrayList<ExportInfoDisplay>(availableExportInfos.size());
+ for (ExportInfo exportInfo : availableExportInfos)
+ {
+ exportDisplays.add(new ExportInfoDisplay(exportInfo, locale));
+ }
+ existingExports = new ListDataModel(exportDisplays);
}
return existingExports;
}
+ public String viewExport()
+ {
+ selectExport();
+
+ return ConsumerManagerBean.EXPORT_DETAIL;
+ }
+
+ public String importPortlets()
+ {
+ return ConsumerManagerBean.EXPORTS;
+ }
+
+ public String deleteExport()
+ {
+ ExportInfo export = currentExport.getExport();
+ if(consumer.getMigrationService().remove(export) == export)
+ {
+ existingExports = null; // force rebuild of export list
+ currentExport = null;
+ }
+
+ return ConsumerManagerBean.EXPORTS;
+ }
+
+ public void selectExport(ActionEvent actionEvent)
+ {
+ selectExport();
+ }
+
+ public void selectExport()
+ {
+ currentExport = (ExportInfoDisplay) existingExports.getRowData();
+ }
+
public static class SelectablePortletHandle
{
private String handle;
@@ -591,4 +640,82 @@
this.selected = selected;
}
}
+
+ public static class ExportInfoDisplay
+ {
+ private ExportInfo export;
+ private Locale locale;
+ private List<FailedPortletsDisplay> failedPortlets;
+
+ public ExportInfoDisplay(ExportInfo export, Locale locale)
+ {
+ this.export = export;
+ this.locale = locale;
+ SortedMap<QName,List<String>> errorCodesToFailedPortletHandlesMapping = export.getErrorCodesToFailedPortletHandlesMapping();
+ if(ParameterValidation.existsAndIsNotEmpty(errorCodesToFailedPortletHandlesMapping))
+ {
+ failedPortlets = new ArrayList<FailedPortletsDisplay>(errorCodesToFailedPortletHandlesMapping.size());
+ for (Map.Entry<QName, List<String>> entry : errorCodesToFailedPortletHandlesMapping.entrySet())
+ {
+ failedPortlets.add(new FailedPortletsDisplay(entry.getKey(), entry.getValue()));
+ }
+ }
+ else
+ {
+ failedPortlets = Collections.emptyList();
+ }
+ }
+
+ public String getExportTime()
+ {
+ return export.getHumanReadableExportTime(locale);
+ }
+
+ public String getExpirationTime()
+ {
+ return export.getHumanReadableExpirationTime(locale);
+ }
+
+ public boolean isHasFailedPortlets()
+ {
+ return !failedPortlets.isEmpty();
+ }
+
+ public List<String> getExportedPortlets()
+ {
+ return export.getExportedPortletHandles();
+ }
+
+ public List<FailedPortletsDisplay> getFailedPortlets()
+ {
+ return failedPortlets;
+ }
+
+ public ExportInfo getExport()
+ {
+ return export;
+ }
+ }
+
+ public static class FailedPortletsDisplay
+ {
+ private QName errorCode;
+ private List<String> faiedPortlets;
+
+ public FailedPortletsDisplay(QName errorCode, List<String> failedPortlets)
+ {
+ this.errorCode = errorCode;
+ this.faiedPortlets = failedPortlets;
+ }
+
+ public QName getErrorCode()
+ {
+ return errorCode;
+ }
+
+ public List<String> getFailedPortlets()
+ {
+ return faiedPortlets;
+ }
+ }
}
Modified: components/wsrp/trunk/admin-gui/src/main/java/org/gatein/wsrp/admin/ui/ConsumerManagerBean.java
===================================================================
--- components/wsrp/trunk/admin-gui/src/main/java/org/gatein/wsrp/admin/ui/ConsumerManagerBean.java 2010-09-07 20:33:07 UTC (rev 4075)
+++ components/wsrp/trunk/admin-gui/src/main/java/org/gatein/wsrp/admin/ui/ConsumerManagerBean.java 2010-09-07 21:59:31 UTC (rev 4076)
@@ -53,6 +53,7 @@
private static final String REFRESH_EXCEPTION = "bean_consumermanager_refresh_exception";
static final String CONFIGURE_CONSUMER = "configureConsumer";
static final String EXPORT = "export";
+ public static final String EXPORTS = "exports";
static final String EXPORT_DETAIL = "exportDetail";
static final String CONSUMERS = "consumers";
@@ -248,10 +249,8 @@
{
if (refreshConsumerId() != null)
{
- WSRPConsumer consumer = getSelectedConsumer();
-
-
- return configureConsumer();
+ setConsumerIdInSession(false);
+ return EXPORTS;
}
else
{
Modified: components/wsrp/trunk/admin-gui/src/main/webapp/WEB-INF/classes/Resource.properties
===================================================================
--- components/wsrp/trunk/admin-gui/src/main/webapp/WEB-INF/classes/Resource.properties 2010-09-07 20:33:07 UTC (rev 4075)
+++ components/wsrp/trunk/admin-gui/src/main/webapp/WEB-INF/classes/Resource.properties 2010-09-07 21:59:31 UTC (rev 4076)
@@ -82,17 +82,30 @@
portlets_table_column_include = Include in export?
portlets_table_column_portlet_name = Portlet
portlets_table_export = Export
-export_detail_export_time = Export time:
-export_detail_expiration_time = Expiration time:
-export_detail_portlets = Exported portlets:
-export_detail_failed = Failed portlets:
+export_detail_export_time = Export time
+export_detail_expiration_time = Expiration time
+export_detail_portlets = Exported portlets
+export_detail_failed = Failed portlets
+export_detail_has_failed = Has failed portlets?
export_detail_exported_portlet_name = Exported portlet handle
export_detail_failed_portlet_error = Error code
export_detail_failed_portlet_portlets = Failed portlets
export_detail_failed_portlet_none = No failed portlets.
export_detail_exports = Back to exports list
export_detail_consumers = Back to consumers list
+exports_actions = Actions
+exports_actions_delete = Delete
+exports_actions_view = View
+exports_actions_use = Use for import
+# Confirm deletion of an export
+confirm_delete_export_title = Delete export from {0}?
+confirm_delete_export_message = You are about to delete export from {0}!
+confirm_detete_export_proceed = Are you sure you want to proceed?
+confirm_delete_export_submit = Delete export
+confirm_delete_export_cancel = Cancel
+
+
# Consumer editing screen
edit_consumer_producer = Producer id:
edit_consumer_cache = Cache expiration:
Modified: components/wsrp/trunk/admin-gui/src/main/webapp/WEB-INF/classes/Resource_fr.properties
===================================================================
--- components/wsrp/trunk/admin-gui/src/main/webapp/WEB-INF/classes/Resource_fr.properties 2010-09-07 20:33:07 UTC (rev 4075)
+++ components/wsrp/trunk/admin-gui/src/main/webapp/WEB-INF/classes/Resource_fr.properties 2010-09-07 21:59:31 UTC (rev 4076)
@@ -35,7 +35,7 @@
path_consumers_inactive = inactif
path_consumers_refreshNeeded = (rafra\u00eechissement requis)
confirm_delete_consumer_cancel=Annuler
-confirm_delete_consumer_message=Vous \u00eates sur le point d''effacer le concommateur ''{0}''!
+confirm_delete_consumer_message=Vous \u00eates sur le point d''effacer le consommateur ''{0}''!
confirm_delete_consumer_submit=Effacer consommateur
confirm_delete_consumer_title=Voulez-vous r\u00e9ellement effacer le consommateur ''{0}''?
confirm_detete_consumer_proceed=\u00cates-vous certains de vouloir proc\u00e9der?
@@ -152,12 +152,21 @@
portlets_table_column_portlet_name=Portlet
portlets_table_export=Exporter
export_detail_consumers=Retour � la liste des consommateurs
-export_detail_expiration_time=Date d'expiration:
-export_detail_export_time=Date d'export:
+export_detail_expiration_time=Date d'expiration
+export_detail_export_time=Date d'export
export_detail_exported_portlet_name=Identifiant de la portlet export�e
export_detail_exports=Retour � la liste des exports
export_detail_failed=Portlets en erreur:
export_detail_failed_portlet_error=Code d'erreur
export_detail_failed_portlet_none=Aucune portlet en erreur.
export_detail_failed_portlet_portlets=Portlets en erreur
-export_detail_portlets=Portlets export�es:
\ No newline at end of file
+export_detail_portlets=Portlets export�es
+export_detail_has_failed=A des portlets en erreur?
+exports_actions=Actions
+exports_actions_delete=Effacer
+exports_actions_view=Voir
+exports_actions_use=Utiliser pour import
+confirm_delete_export_cancel=Annuler
+confirm_delete_export_message=Vous \u00eates sur le point d''effacer l''export du {0}!
+confirm_delete_export_submit=Effacer export
+confirm_delete_export_title=Voulez-vous r\u00e9ellement effacer l'export du {0}?
\ No newline at end of file
Modified: components/wsrp/trunk/admin-gui/src/main/webapp/WEB-INF/faces-config.xml
===================================================================
--- components/wsrp/trunk/admin-gui/src/main/webapp/WEB-INF/faces-config.xml 2010-09-07 20:33:07 UTC (rev 4075)
+++ components/wsrp/trunk/admin-gui/src/main/webapp/WEB-INF/faces-config.xml 2010-09-07 21:59:31 UTC (rev 4076)
@@ -167,5 +167,9 @@
<from-outcome>exportDetail</from-outcome>
<to-view-id>/jsf/consumers/exports/exportDetail.xhtml</to-view-id>
</navigation-case>
+ <navigation-case>
+ <from-outcome>confirmDeleteExport</from-outcome>
+ <to-view-id>/jsf/consumers/exports/confirmDeleteExport.xhtml</to-view-id>
+ </navigation-case>
</navigation-rule>
</faces-config>
Modified: components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/consumers.xhtml
===================================================================
--- components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/consumers.xhtml 2010-09-07 20:33:07 UTC (rev 4075)
+++ components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/consumers.xhtml 2010-09-07 21:59:31 UTC (rev 4076)
@@ -89,16 +89,19 @@
<f:param name="id" value="#{cons.producerId}"/>
#{i18n.consumers_table_action_delete}
</h:commandLink>
- |
- <h:commandLink action="#{consumersMgr.importPortlets}" styleClass="actionImport" id="import">
- <f:param name="id" value="#{cons.producerId}"/>
- #{i18n.consumers_table_action_import}
- </h:commandLink>
- |
- <h:commandLink action="#{consumersMgr.exportPortlets}" styleClass="actionExport" id="export">
- <f:param name="id" value="#{cons.producerId}"/>
- #{i18n.consumers_table_action_export}
- </h:commandLink>
+ <h:panelGroup rendered="#{cons.active and cons.supportsExport}">
+ <h:panelGroup rendered="#{! cons.migrationService.availableExportInfosEmpty}">|
+ <h:commandLink action="#{consumersMgr.importPortlets}" styleClass="actionImport" id="import">
+ <f:param name="id" value="#{cons.producerId}"/>
+ #{i18n.consumers_table_action_import}
+ </h:commandLink>
+ </h:panelGroup>
+ |
+ <h:commandLink action="#{consumersMgr.exportPortlets}" styleClass="actionExport" id="export">
+ <f:param name="id" value="#{cons.producerId}"/>
+ #{i18n.consumers_table_action_export}
+ </h:commandLink>
+ </h:panelGroup>
</h:column>
</h:dataTable>
</h:form>
Added: components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/confirmDeleteExport.xhtml
===================================================================
--- components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/confirmDeleteExport.xhtml (rev 0)
+++ components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/confirmDeleteExport.xhtml 2010-09-07 21:59:31 UTC (rev 4076)
@@ -0,0 +1,96 @@
+<!--
+ ~ JBoss, a division of Red Hat
+ ~ Copyright 2010, Red Hat Middleware, LLC, and individual
+ ~ contributors as indicated by the @authors tag. See the
+ ~ copyright.txt in the distribution for a full listing of
+ ~ individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<ui:decorate template="../consumerTemplate.xhtml" xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:webui="http://jboss.org/gatein">
+
+ <ui:param name="title" value=""/>
+ <ui:define name="content">
+
+ <div class="portlet-msg">
+ <div class="portlet-msg-icon">
+ <h:graphicImage url="/img/msgIcon_Warning.gif" alt="/!\"/>
+ </div>
+ <div class="portlet-msg-body">
+ <h3>
+ <h:outputFormat value="#{i18n.confirm_delete_export_title}">
+ <f:param value="#{consumer.currentExport.exportTime}"/>
+ </h:outputFormat>
+ </h3>
+
+ <p class="portlet-msg-alert">
+ <h:outputFormat value="#{i18n.confirm_delete_export_message}">
+ <f:param value="#{consumer.currentExport.exportTime}"/>
+ </h:outputFormat>
+ </p>
+
+ <p class="portlet-class">#{i18n.confirm_detete_export_proceed}</p>
+
+ <h:form id="confirm-delete-form">
+ <table class="ActionContainer">
+ <tr>
+ <td>
+ <div class="ButtonLeft">
+ <div class="ButtonRight">
+ <div class="ButtonMiddle">
+ <h:commandLink id="destroy-link" action="#{consumer.deleteExport}"
+ value="#{i18n.confirm_delete_export_submit}"/>
+ </div>
+ </div>
+ </div>
+ </td>
+ <td>
+ <div class="ButtonLeft">
+ <div class="ButtonRight">
+ <div class="ButtonMiddle">
+ <h:commandLink id="cancel-link" action="exports"
+ value="#{i18n.confirm_delete_export_cancel}"/>
+ </div>
+ </div>
+ </div>
+ </td>
+ </tr>
+ </table>
+
+
+ <ui:remove><webui:commandButton id="destroy-link"
+ action="destroyConsumer"
+ backingBean="#{consumersMgr}"
+ value="#{i18n.confirm_delete_consumer_submit}">
+ <f:param name="id" value="#{consumersMgr.selectedConsumer.producerId}"/>
+ </webui:commandButton>
+
+ <webui:commandButton id="cancel-link"
+ action="listConsumers"
+ backingBean="#{consumersMgr}"
+ value="#{i18n.confirm_delete_consumer_cancel}"/></ui:remove>
+ </h:form>
+ </div>
+ </div>
+
+ </ui:define>
+
+</ui:decorate>
\ No newline at end of file
Modified: components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/export.xhtml
===================================================================
--- components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/export.xhtml 2010-09-07 20:33:07 UTC (rev 4075)
+++ components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/export.xhtml 2010-09-07 21:59:31 UTC (rev 4076)
@@ -50,7 +50,7 @@
<div class="ButtonLeft">
<div class="ButtonRight">
<div class="ButtonMiddle">
- <h:commandButton id="exportButton" action="#{consumer.export}"
+ <h:commandButton id="exportButton" action="#{consumer.exportPortlets}"
value="#{i18n.portlets_table_export}"/>
</div>
</div>
Modified: components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/exportDetail.xhtml
===================================================================
--- components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/exportDetail.xhtml 2010-09-07 20:33:07 UTC (rev 4075)
+++ components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/exportDetail.xhtml 2010-09-07 21:59:31 UTC (rev 4076)
@@ -40,7 +40,7 @@
<tr>
<th>#{i18n.export_detail_portlets}</th>
<td>
- <h:dataTable id="exported-portlets" value="#{consumer.currentExport.exportedPortletHandles}" var="handle"
+ <h:dataTable id="exported-portlets" value="#{consumer.currentExport.exportedPortlets}" var="handle"
rowClasses="EvenRow,OddRow"
styleClass="UIGrid" width="100%">
<h:column>
@@ -54,19 +54,19 @@
<th>#{i18n.export_detail_failed}</th>
<td>
<h:dataTable id="failed-portlets"
- value="#{consumer.currentExport.errorCodesToFailedPortletHandlesMapping.entries}"
- rendered="#{! empty consumer.currentExport.errorCodesToFailedPortletHandlesMapping.entries}"
- var="entry" rowClasses="EvenRow,OddRow" styleClass="UIGrid" width="100%">
+ value="#{consumer.currentExport.failedPortlets}"
+ rendered="#{consumer.currentExport.hasFailedPortlets}"
+ var="failedPortlet" rowClasses="EvenRow,OddRow" styleClass="UIGrid" width="100%">
<h:column>
<f:facet name="header">#{i18n.export_detail_failed_portlet_error}</f:facet>
- #{entry.key}
+ #{failedPortlet.errorCode}
</h:column>
<h:column>
<f:facet name="header">#{i18n.export_detail_failed_portlet_portlets}</f:facet>
- #{entry.value}
+ #{failedPortlet.failedPortlets}
</h:column>
</h:dataTable>
- <h:outputText rendered="#{empty consumer.currentExport.errorCodesToFailedPortletHandlesMapping.entries}"
+ <h:outputText rendered="#{!consumer.currentExport.hasFailedPortlets}"
value="#{i18n.export_detail_failed_portlet_none}"/>
</td>
</tr>
Modified: components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/exports.xhtml
===================================================================
--- components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/exports.xhtml 2010-09-07 20:33:07 UTC (rev 4075)
+++ components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/exports.xhtml 2010-09-07 21:59:31 UTC (rev 4076)
@@ -32,14 +32,35 @@
<h:dataTable id="exportsList" value="#{consumer.existingExports}" var="export" rowClasses="EvenRow,OddRow"
styleClass="UIGrid" width="100%">
<h:column>
- <f:facet name="header">#{i18n.export_table_column_time}</f:facet>
+ <f:facet name="header">#{i18n.export_detail_export_time}</f:facet>
#{export.exportTime}
</h:column>
<h:column>
- <f:facet name="header">#{i18n.export_table_column_portlet_name}</f:facet>
- #{portlet.handle}
+ <f:facet name="header">#{i18n.export_detail_expiration_time}</f:facet>
+ #{export.expirationTime}
</h:column>
+
+ <h:column>
+ <f:facet name="header">#{i18n.export_detail_has_failed}</f:facet>
+ <h:selectBooleanCheckbox value="#{export.hasFailedPortlets}" disabled="true"/>
+ </h:column>
+
+ <h:column>
+ <f:facet name="header">#{i18n.exports_actions}</f:facet>
+
+ <h:commandLink action="#{consumer.viewExport}" styleClass="actionConfigure" id="view">
+ #{i18n.exports_actions_view}
+ </h:commandLink>
+ |
+ <h:commandLink action="confirmDeleteExport" actionListener="#{consumer.selectExport}" styleClass="actionDelete" id="delete">
+ #{i18n.exports_actions_delete}
+ </h:commandLink>
+ |
+ <h:commandLink action="#{consumer.importPortlets}" styleClass="actionUse" id="use">
+ #{i18n.exports_actions_use}
+ </h:commandLink>
+ </h:column>
</h:dataTable>
<table class="ActionContainer">
<tr>
@@ -47,8 +68,7 @@
<div class="ButtonLeft">
<div class="ButtonRight">
<div class="ButtonMiddle">
- <h:commandButton id="exportButton" action="#{consumer.export}"
- value="#{i18n.export_table_export}"/>
+ <h:commandButton id="consumers" action="consumers" value="#{i18n.export_detail_consumers}"/>
</div>
</div>
</div>
Modified: components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/WSRPConsumer.java
===================================================================
--- components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/WSRPConsumer.java 2010-09-07 20:33:07 UTC (rev 4075)
+++ components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/WSRPConsumer.java 2010-09-07 21:59:31 UTC (rev 4076)
@@ -130,4 +130,6 @@
ExportInfo exportPortlets(List<String> portletHandles) throws PortletInvokerException;
MigrationService getMigrationService();
+
+ boolean isSupportsExport();
}
Modified: components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/WSRPConsumerImpl.java
===================================================================
--- components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/WSRPConsumerImpl.java 2010-09-07 20:33:07 UTC (rev 4075)
+++ components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/WSRPConsumerImpl.java 2010-09-07 21:59:31 UTC (rev 4076)
@@ -509,6 +509,19 @@
return supportedUserScopes.contains(userScope);
}
+ public boolean isSupportsExport()
+ {
+ try
+ {
+ return getMarkupService().getVersion() > 1;
+ }
+ catch (PortletInvokerException e)
+ {
+ log.debug("Couldn't determine if Consumer supports export operation", e);
+ return false;
+ }
+ }
+
// Registration *****************************************************************************************************
public void handleInvalidRegistrationFault() throws PortletInvokerException
Modified: components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/migration/ExportInfo.java
===================================================================
--- components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/migration/ExportInfo.java 2010-09-07 20:33:07 UTC (rev 4075)
+++ components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/migration/ExportInfo.java 2010-09-07 21:59:31 UTC (rev 4076)
@@ -26,9 +26,12 @@
import org.gatein.common.util.ParameterValidation;
import javax.xml.namespace.QName;
+import java.text.DateFormat;
import java.util.ArrayList;
import java.util.Collections;
+import java.util.Date;
import java.util.List;
+import java.util.Locale;
import java.util.SortedMap;
import java.util.TreeMap;
@@ -72,11 +75,30 @@
return exportTime;
}
+ public String getHumanReadableExportTime(Locale locale)
+ {
+ return getHumanReadableTime(locale, exportTime);
+ }
+
public long getExpirationTime()
{
return expirationTime;
}
+ public String getHumanReadableExpirationTime(Locale locale)
+ {
+ return getHumanReadableTime(locale, expirationTime);
+ }
+
+ private String getHumanReadableTime(Locale locale, final long time)
+ {
+ if(locale == null)
+ {
+ locale = Locale.getDefault();
+ }
+ return DateFormat.getDateTimeInstance(DateFormat.FULL, DateFormat.FULL, locale).format(new Date(time));
+ }
+
public List<String> getExportedPortletHandles()
{
return new ArrayList<String>(handleToExportedState.keySet());
Modified: components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/migration/MigrationService.java
===================================================================
--- components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/migration/MigrationService.java 2010-09-07 20:33:07 UTC (rev 4075)
+++ components/wsrp/trunk/consumer/src/main/java/org/gatein/wsrp/consumer/migration/MigrationService.java 2010-09-07 21:59:31 UTC (rev 4076)
@@ -68,4 +68,9 @@
}
return exportInfos;
}
+
+ public boolean isAvailableExportInfosEmpty()
+ {
+ return exportInfos == null || exportInfos.isEmpty();
+ }
}
Added: components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/consumer/migration/MigrationServiceTestCase.java
===================================================================
--- components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/consumer/migration/MigrationServiceTestCase.java (rev 0)
+++ components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/consumer/migration/MigrationServiceTestCase.java 2010-09-07 21:59:31 UTC (rev 4076)
@@ -0,0 +1,62 @@
+/*
+ * JBoss, a division of Red Hat
+ * Copyright 2010, Red Hat Middleware, LLC, and individual
+ * contributors as indicated by the @authors tag. See the
+ * copyright.txt in the distribution for a full listing of
+ * individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.gatein.wsrp.consumer.migration;
+
+import junit.framework.TestCase;
+
+import java.util.List;
+import java.util.TreeMap;
+
+/**
+ * @author <a href="mailto:chris.laprun@jboss.com">Chris Laprun</a>
+ * @version $Revision$
+ */
+public class MigrationServiceTestCase extends TestCase
+{
+ private MigrationService service;
+
+ @Override
+ protected void setUp() throws Exception
+ {
+ service = new MigrationService();
+ }
+
+ public void testIsAvailableExportInfosEmpty()
+ {
+ assertTrue(service.isAvailableExportInfosEmpty());
+ }
+
+ public void testAddExport()
+ {
+ ExportInfo info = new ExportInfo(System.currentTimeMillis(), new TreeMap<String, byte[]>(), null);
+ service.add(info);
+
+ List<ExportInfo> exports = service.getAvailableExportInfos();
+ assertNotNull(exports);
+ assertEquals(1, exports.size());
+ assertEquals(info, exports.get(0));
+ assertEquals(info, service.getExportInfo(info.getExportTime()));
+ assertFalse(service.isAvailableExportInfosEmpty());
+ }
+}
Modified: components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/test/support/MockWSRPConsumer.java
===================================================================
--- components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/test/support/MockWSRPConsumer.java 2010-09-07 20:33:07 UTC (rev 4075)
+++ components/wsrp/trunk/consumer/src/test/java/org/gatein/wsrp/test/support/MockWSRPConsumer.java 2010-09-07 21:59:31 UTC (rev 4076)
@@ -30,6 +30,7 @@
import org.gatein.pc.api.PortletStateType;
import org.gatein.pc.api.invocation.PortletInvocation;
import org.gatein.pc.api.invocation.response.PortletInvocationResponse;
+import org.gatein.pc.api.state.DestroyCloneFailure;
import org.gatein.pc.api.state.PropertyChange;
import org.gatein.pc.api.state.PropertyMap;
import org.gatein.wsrp.WSRPConsumer;
@@ -111,7 +112,7 @@
return null;
}
- public Set getPortlets() throws PortletInvokerException
+ public Set<Portlet> getPortlets() throws PortletInvokerException
{
return null;
}
@@ -131,7 +132,7 @@
return null;
}
- public List destroyClones(List portletContexts) throws IllegalArgumentException, PortletInvokerException, UnsupportedOperationException
+ public List<DestroyCloneFailure> destroyClones(List<PortletContext> portletContexts) throws IllegalArgumentException, PortletInvokerException, UnsupportedOperationException
{
return null;
}
@@ -173,6 +174,11 @@
throw new NotYetImplemented();
}
+ public boolean isSupportsExport()
+ {
+ return false;
+ }
+
public void destroy()
{
}
14 years, 3 months
gatein SVN: r4075 - in exo/portal/branches/3.1.x: component and 72 other directories.
by do-not-reply@jboss.org
Author: aheritier
Date: 2010-09-07 16:33:07 -0400 (Tue, 07 Sep 2010)
New Revision: 4075
Modified:
exo/portal/branches/3.1.x/component/application-registry/pom.xml
exo/portal/branches/3.1.x/component/common/pom.xml
exo/portal/branches/3.1.x/component/dashboard/pom.xml
exo/portal/branches/3.1.x/component/identity/pom.xml
exo/portal/branches/3.1.x/component/management/pom.xml
exo/portal/branches/3.1.x/component/pc/pom.xml
exo/portal/branches/3.1.x/component/pom.xml
exo/portal/branches/3.1.x/component/portal/pom.xml
exo/portal/branches/3.1.x/component/resources/pom.xml
exo/portal/branches/3.1.x/component/scripting/pom.xml
exo/portal/branches/3.1.x/component/test/core/pom.xml
exo/portal/branches/3.1.x/component/test/jcr/pom.xml
exo/portal/branches/3.1.x/component/test/organization/pom.xml
exo/portal/branches/3.1.x/component/test/pom.xml
exo/portal/branches/3.1.x/component/web/pom.xml
exo/portal/branches/3.1.x/component/wsrp/pom.xml
exo/portal/branches/3.1.x/component/xml-parser/pom.xml
exo/portal/branches/3.1.x/docs/pom.xml
exo/portal/branches/3.1.x/docs/reference-guide/pom.xml
exo/portal/branches/3.1.x/docs/user-guide/pom.xml
exo/portal/branches/3.1.x/examples/extension/config/pom.xml
exo/portal/branches/3.1.x/examples/extension/ear/pom.xml
exo/portal/branches/3.1.x/examples/extension/jar/pom.xml
exo/portal/branches/3.1.x/examples/extension/pom.xml
exo/portal/branches/3.1.x/examples/extension/war/pom.xml
exo/portal/branches/3.1.x/examples/pom.xml
exo/portal/branches/3.1.x/examples/portal/config/pom.xml
exo/portal/branches/3.1.x/examples/portal/ear/pom.xml
exo/portal/branches/3.1.x/examples/portal/jar/pom.xml
exo/portal/branches/3.1.x/examples/portal/pom.xml
exo/portal/branches/3.1.x/examples/portal/rest-war/pom.xml
exo/portal/branches/3.1.x/examples/portal/war/pom.xml
exo/portal/branches/3.1.x/examples/portlets/jsfhellouser/pom.xml
exo/portal/branches/3.1.x/examples/portlets/jsphellouser/pom.xml
exo/portal/branches/3.1.x/examples/portlets/pom.xml
exo/portal/branches/3.1.x/examples/portlets/simplesthelloworld/pom.xml
exo/portal/branches/3.1.x/examples/portlets/struts-jpetstore/pom.xml
exo/portal/branches/3.1.x/examples/skins/pom.xml
exo/portal/branches/3.1.x/examples/skins/simpleskin/pom.xml
exo/portal/branches/3.1.x/gadgets/core/pom.xml
exo/portal/branches/3.1.x/gadgets/eXoGadgets/pom.xml
exo/portal/branches/3.1.x/gadgets/pom.xml
exo/portal/branches/3.1.x/gadgets/server/pom.xml
exo/portal/branches/3.1.x/packaging/module/pom.xml
exo/portal/branches/3.1.x/packaging/pkg/pom.xml
exo/portal/branches/3.1.x/packaging/pom.xml
exo/portal/branches/3.1.x/packaging/product/pom.xml
exo/portal/branches/3.1.x/packaging/reports/pom.xml
exo/portal/branches/3.1.x/pom.xml
exo/portal/branches/3.1.x/portlet/dashboard/pom.xml
exo/portal/branches/3.1.x/portlet/exoadmin/pom.xml
exo/portal/branches/3.1.x/portlet/pom.xml
exo/portal/branches/3.1.x/portlet/web/pom.xml
exo/portal/branches/3.1.x/server/jboss/patch-ear/pom.xml
exo/portal/branches/3.1.x/server/jboss/plugin/pom.xml
exo/portal/branches/3.1.x/server/jboss/pom.xml
exo/portal/branches/3.1.x/server/pom.xml
exo/portal/branches/3.1.x/server/tomcat/patch/pom.xml
exo/portal/branches/3.1.x/server/tomcat/plugin/pom.xml
exo/portal/branches/3.1.x/server/tomcat/pom.xml
exo/portal/branches/3.1.x/starter/ear/pom.xml
exo/portal/branches/3.1.x/starter/pom.xml
exo/portal/branches/3.1.x/starter/war/pom.xml
exo/portal/branches/3.1.x/testsuite/pom.xml
exo/portal/branches/3.1.x/testsuite/selenium-snifftests/pom.xml
exo/portal/branches/3.1.x/testsuite/webuibasedsamples/pom.xml
exo/portal/branches/3.1.x/web/eXoResources/pom.xml
exo/portal/branches/3.1.x/web/pom.xml
exo/portal/branches/3.1.x/web/portal/pom.xml
exo/portal/branches/3.1.x/web/rest/pom.xml
exo/portal/branches/3.1.x/webui/core/pom.xml
exo/portal/branches/3.1.x/webui/eXo/pom.xml
exo/portal/branches/3.1.x/webui/pom.xml
exo/portal/branches/3.1.x/webui/portal/pom.xml
Log:
[maven-release-plugin] [EXOGTN-66]prepare for next development iteration
Modified: exo/portal/branches/3.1.x/component/application-registry/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/application-registry/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/component/application-registry/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/common/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/common/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/component/common/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.common</artifactId>
Modified: exo/portal/branches/3.1.x/component/dashboard/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/dashboard/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/component/dashboard/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/identity/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/identity/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/component/identity/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/management/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/management/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/component/management/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/pc/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/pc/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/component/pc/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/component/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.component</artifactId>
Modified: exo/portal/branches/3.1.x/component/portal/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/portal/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/component/portal/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/resources/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/resources/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/component/resources/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/scripting/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/scripting/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/component/scripting/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/test/core/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/test/core/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/component/test/core/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/test/jcr/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/test/jcr/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/component/test/jcr/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/test/organization/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/test/organization/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/component/test/organization/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/test/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/test/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/component/test/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/web/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/web/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/component/web/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/wsrp/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/wsrp/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/component/wsrp/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/xml-parser/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/xml-parser/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/component/xml-parser/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/docs/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/docs/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/docs/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<groupId>org.gatein.doc</groupId>
Modified: exo/portal/branches/3.1.x/docs/reference-guide/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/docs/reference-guide/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/docs/reference-guide/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.doc</groupId>
<artifactId>docs-aggregator</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<groupId>org.gatein.doc</groupId>
Modified: exo/portal/branches/3.1.x/docs/user-guide/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/docs/user-guide/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/docs/user-guide/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.doc</groupId>
<artifactId>docs-aggregator</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<artifactId>gatein-user-guide-en</artifactId>
Modified: exo/portal/branches/3.1.x/examples/extension/config/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/extension/config/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/examples/extension/config/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/extension/ear/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/extension/ear/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/examples/extension/ear/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,23 +37,23 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.config</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.jar</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.war</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
Modified: exo/portal/branches/3.1.x/examples/extension/jar/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/extension/jar/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/examples/extension/jar/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/extension/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/extension/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/examples/extension/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.sample.extension.root</artifactId>
Modified: exo/portal/branches/3.1.x/examples/extension/war/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/extension/war/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/examples/extension/war/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/examples/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.sample</artifactId>
Modified: exo/portal/branches/3.1.x/examples/portal/config/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portal/config/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/examples/portal/config/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/portal/ear/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portal/ear/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/examples/portal/ear/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,29 +37,29 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.config</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.jar</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.war</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.rest-war</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
Modified: exo/portal/branches/3.1.x/examples/portal/jar/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portal/jar/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/examples/portal/jar/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/portal/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portal/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/examples/portal/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.sample.portal.root</artifactId>
Modified: exo/portal/branches/3.1.x/examples/portal/rest-war/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portal/rest-war/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/examples/portal/rest-war/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/portal/war/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portal/war/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/examples/portal/war/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/portlets/jsfhellouser/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portlets/jsfhellouser/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/examples/portlets/jsfhellouser/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<artifactId>gatein-jsf-hellouser</artifactId>
Modified: exo/portal/branches/3.1.x/examples/portlets/jsphellouser/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portlets/jsphellouser/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/examples/portlets/jsphellouser/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<artifactId>gatein-jsp-hellouser</artifactId>
Modified: exo/portal/branches/3.1.x/examples/portlets/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portlets/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/examples/portlets/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
Modified: exo/portal/branches/3.1.x/examples/portlets/simplesthelloworld/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portlets/simplesthelloworld/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/examples/portlets/simplesthelloworld/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<artifactId>gatein-simplest-helloworld</artifactId>
Modified: exo/portal/branches/3.1.x/examples/portlets/struts-jpetstore/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portlets/struts-jpetstore/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/examples/portlets/struts-jpetstore/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<artifactId>struts-jpetstore</artifactId>
Modified: exo/portal/branches/3.1.x/examples/skins/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/skins/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/examples/skins/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<groupId>org.gatein.portal.examples.skins</groupId>
Modified: exo/portal/branches/3.1.x/examples/skins/simpleskin/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/skins/simpleskin/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/examples/skins/simpleskin/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.portal.examples.skins</groupId>
<artifactId>parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<artifactId>gatein-sample-skin</artifactId>
Modified: exo/portal/branches/3.1.x/gadgets/core/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/gadgets/core/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/gadgets/core/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -14,7 +14,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gadgets-core</artifactId>
Modified: exo/portal/branches/3.1.x/gadgets/eXoGadgets/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/gadgets/eXoGadgets/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/gadgets/eXoGadgets/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/gadgets/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/gadgets/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/gadgets/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gadgets</artifactId>
Modified: exo/portal/branches/3.1.x/gadgets/server/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/gadgets/server/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/gadgets/server/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gadgets-server</artifactId>
Modified: exo/portal/branches/3.1.x/packaging/module/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/packaging/module/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/packaging/module/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/packaging/pkg/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/packaging/pkg/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/packaging/pkg/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -67,13 +67,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.module</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
<type>js</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.product</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
<type>js</type>
</dependency>
</dependencies>
Modified: exo/portal/branches/3.1.x/packaging/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/packaging/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/packaging/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/packaging/product/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/packaging/product/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/packaging/product/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/packaging/reports/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/packaging/reports/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/packaging/reports/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -31,7 +31,7 @@
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
<packaging>pom</packaging>
<name>GateIn - Portal</name>
@@ -84,9 +84,9 @@
</distributionManagement>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/exo/portal/tags/3.1.3-PLF</connection>
- <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/exo/portal/tags/3.1.3-PLF</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/exo/portal/tags/3.1.3-PLF</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/exo/portal/branches/3.1.x</connection>
+ <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/exo/portal/branches/3.1.x</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/exo/portal/branches/3.1.x</url>
</scm>
<modules>
@@ -324,110 +324,110 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.pc</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.application-registry</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.xml-parser</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.scripting</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.dashboard</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.core</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets-core</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
<type>test-jar</type>
</dependency>
Modified: exo/portal/branches/3.1.x/portlet/dashboard/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/portlet/dashboard/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/portlet/dashboard/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/portlet/exoadmin/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/portlet/exoadmin/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/portlet/exoadmin/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/portlet/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/portlet/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/portlet/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.portlet</artifactId>
Modified: exo/portal/branches/3.1.x/portlet/web/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/portlet/web/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/portlet/web/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/server/jboss/patch-ear/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/jboss/patch-ear/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/server/jboss/patch-ear/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/server/jboss/plugin/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/jboss/plugin/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/server/jboss/plugin/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/server/jboss/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/jboss/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/server/jboss/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.server.jboss</artifactId>
Modified: exo/portal/branches/3.1.x/server/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/server/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.server</artifactId>
Modified: exo/portal/branches/3.1.x/server/tomcat/patch/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/tomcat/patch/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/server/tomcat/patch/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.tomcat</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/server/tomcat/plugin/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/tomcat/plugin/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/server/tomcat/plugin/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.tomcat</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/server/tomcat/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/tomcat/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/server/tomcat/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.server.tomcat</artifactId>
Modified: exo/portal/branches/3.1.x/starter/ear/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/starter/ear/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/starter/ear/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.starter.war</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
Modified: exo/portal/branches/3.1.x/starter/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/starter/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/starter/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.starter.root</artifactId>
Modified: exo/portal/branches/3.1.x/starter/war/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/starter/war/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/starter/war/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/testsuite/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/testsuite/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/testsuite/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.testsuite</artifactId>
Modified: exo/portal/branches/3.1.x/testsuite/selenium-snifftests/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/testsuite/selenium-snifftests/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/testsuite/selenium-snifftests/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.selenium.snifftests</artifactId>
Modified: exo/portal/branches/3.1.x/testsuite/webuibasedsamples/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/testsuite/webuibasedsamples/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/testsuite/webuibasedsamples/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.webui.based.samples</artifactId>
Modified: exo/portal/branches/3.1.x/web/eXoResources/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/web/eXoResources/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/web/eXoResources/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/web/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/web/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/web/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.web</artifactId>
Modified: exo/portal/branches/3.1.x/web/portal/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/web/portal/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/web/portal/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/web/rest/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/web/rest/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/web/rest/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/webui/core/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/webui/core/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/webui/core/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/webui/eXo/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/webui/eXo/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/webui/eXo/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/webui/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/webui/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/webui/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.webui</artifactId>
Modified: exo/portal/branches/3.1.x/webui/portal/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/webui/portal/pom.xml 2010-09-07 20:30:53 UTC (rev 4074)
+++ exo/portal/branches/3.1.x/webui/portal/pom.xml 2010-09-07 20:33:07 UTC (rev 4075)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.1.3-PLF</version>
+ <version>3.1.4-PLF-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
14 years, 3 months
gatein SVN: r4074 - exo/portal/tags.
by do-not-reply@jboss.org
Author: aheritier
Date: 2010-09-07 16:30:53 -0400 (Tue, 07 Sep 2010)
New Revision: 4074
Added:
exo/portal/tags/3.1.3-PLF/
Log:
[maven-release-plugin] [EXOGTN-66] copy for tag 3.1.3-PLF
Copied: exo/portal/tags/3.1.3-PLF (from rev 4073, exo/portal/branches/3.1.x)
14 years, 3 months
gatein SVN: r4073 - in exo/portal/branches/3.1.x: component and 72 other directories.
by do-not-reply@jboss.org
Author: aheritier
Date: 2010-09-07 16:16:26 -0400 (Tue, 07 Sep 2010)
New Revision: 4073
Modified:
exo/portal/branches/3.1.x/component/application-registry/pom.xml
exo/portal/branches/3.1.x/component/common/pom.xml
exo/portal/branches/3.1.x/component/dashboard/pom.xml
exo/portal/branches/3.1.x/component/identity/pom.xml
exo/portal/branches/3.1.x/component/management/pom.xml
exo/portal/branches/3.1.x/component/pc/pom.xml
exo/portal/branches/3.1.x/component/pom.xml
exo/portal/branches/3.1.x/component/portal/pom.xml
exo/portal/branches/3.1.x/component/resources/pom.xml
exo/portal/branches/3.1.x/component/scripting/pom.xml
exo/portal/branches/3.1.x/component/test/core/pom.xml
exo/portal/branches/3.1.x/component/test/jcr/pom.xml
exo/portal/branches/3.1.x/component/test/organization/pom.xml
exo/portal/branches/3.1.x/component/test/pom.xml
exo/portal/branches/3.1.x/component/web/pom.xml
exo/portal/branches/3.1.x/component/wsrp/pom.xml
exo/portal/branches/3.1.x/component/xml-parser/pom.xml
exo/portal/branches/3.1.x/docs/pom.xml
exo/portal/branches/3.1.x/docs/reference-guide/pom.xml
exo/portal/branches/3.1.x/docs/user-guide/pom.xml
exo/portal/branches/3.1.x/examples/extension/config/pom.xml
exo/portal/branches/3.1.x/examples/extension/ear/pom.xml
exo/portal/branches/3.1.x/examples/extension/jar/pom.xml
exo/portal/branches/3.1.x/examples/extension/pom.xml
exo/portal/branches/3.1.x/examples/extension/war/pom.xml
exo/portal/branches/3.1.x/examples/pom.xml
exo/portal/branches/3.1.x/examples/portal/config/pom.xml
exo/portal/branches/3.1.x/examples/portal/ear/pom.xml
exo/portal/branches/3.1.x/examples/portal/jar/pom.xml
exo/portal/branches/3.1.x/examples/portal/pom.xml
exo/portal/branches/3.1.x/examples/portal/rest-war/pom.xml
exo/portal/branches/3.1.x/examples/portal/war/pom.xml
exo/portal/branches/3.1.x/examples/portlets/jsfhellouser/pom.xml
exo/portal/branches/3.1.x/examples/portlets/jsphellouser/pom.xml
exo/portal/branches/3.1.x/examples/portlets/pom.xml
exo/portal/branches/3.1.x/examples/portlets/simplesthelloworld/pom.xml
exo/portal/branches/3.1.x/examples/portlets/struts-jpetstore/pom.xml
exo/portal/branches/3.1.x/examples/skins/pom.xml
exo/portal/branches/3.1.x/examples/skins/simpleskin/pom.xml
exo/portal/branches/3.1.x/gadgets/core/pom.xml
exo/portal/branches/3.1.x/gadgets/eXoGadgets/pom.xml
exo/portal/branches/3.1.x/gadgets/pom.xml
exo/portal/branches/3.1.x/gadgets/server/pom.xml
exo/portal/branches/3.1.x/packaging/module/pom.xml
exo/portal/branches/3.1.x/packaging/pkg/pom.xml
exo/portal/branches/3.1.x/packaging/pom.xml
exo/portal/branches/3.1.x/packaging/product/pom.xml
exo/portal/branches/3.1.x/packaging/reports/pom.xml
exo/portal/branches/3.1.x/pom.xml
exo/portal/branches/3.1.x/portlet/dashboard/pom.xml
exo/portal/branches/3.1.x/portlet/exoadmin/pom.xml
exo/portal/branches/3.1.x/portlet/pom.xml
exo/portal/branches/3.1.x/portlet/web/pom.xml
exo/portal/branches/3.1.x/server/jboss/patch-ear/pom.xml
exo/portal/branches/3.1.x/server/jboss/plugin/pom.xml
exo/portal/branches/3.1.x/server/jboss/pom.xml
exo/portal/branches/3.1.x/server/pom.xml
exo/portal/branches/3.1.x/server/tomcat/patch/pom.xml
exo/portal/branches/3.1.x/server/tomcat/plugin/pom.xml
exo/portal/branches/3.1.x/server/tomcat/pom.xml
exo/portal/branches/3.1.x/starter/ear/pom.xml
exo/portal/branches/3.1.x/starter/pom.xml
exo/portal/branches/3.1.x/starter/war/pom.xml
exo/portal/branches/3.1.x/testsuite/pom.xml
exo/portal/branches/3.1.x/testsuite/selenium-snifftests/pom.xml
exo/portal/branches/3.1.x/testsuite/webuibasedsamples/pom.xml
exo/portal/branches/3.1.x/web/eXoResources/pom.xml
exo/portal/branches/3.1.x/web/pom.xml
exo/portal/branches/3.1.x/web/portal/pom.xml
exo/portal/branches/3.1.x/web/rest/pom.xml
exo/portal/branches/3.1.x/webui/core/pom.xml
exo/portal/branches/3.1.x/webui/eXo/pom.xml
exo/portal/branches/3.1.x/webui/pom.xml
exo/portal/branches/3.1.x/webui/portal/pom.xml
Log:
[maven-release-plugin] [EXOGTN-66]prepare release 3.1.3-PLF
Modified: exo/portal/branches/3.1.x/component/application-registry/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/application-registry/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/component/application-registry/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/common/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/common/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/component/common/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.common</artifactId>
Modified: exo/portal/branches/3.1.x/component/dashboard/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/dashboard/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/component/dashboard/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/identity/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/identity/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/component/identity/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/management/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/management/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/component/management/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/pc/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/pc/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/component/pc/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/component/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<artifactId>exo.portal.component</artifactId>
Modified: exo/portal/branches/3.1.x/component/portal/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/portal/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/component/portal/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/resources/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/resources/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/component/resources/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/scripting/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/scripting/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/component/scripting/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/test/core/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/test/core/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/component/test/core/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/test/jcr/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/test/jcr/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/component/test/jcr/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/test/organization/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/test/organization/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/component/test/organization/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/test/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/test/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/component/test/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/web/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/web/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/component/web/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/wsrp/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/wsrp/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/component/wsrp/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/component/xml-parser/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/component/xml-parser/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/component/xml-parser/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/docs/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/docs/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/docs/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -19,14 +19,13 @@
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<groupId>org.gatein.doc</groupId>
Modified: exo/portal/branches/3.1.x/docs/reference-guide/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/docs/reference-guide/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/docs/reference-guide/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -19,16 +19,14 @@
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.gatein.doc</groupId>
<artifactId>docs-aggregator</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<groupId>org.gatein.doc</groupId>
Modified: exo/portal/branches/3.1.x/docs/user-guide/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/docs/user-guide/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/docs/user-guide/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -19,16 +19,14 @@
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.gatein.doc</groupId>
<artifactId>docs-aggregator</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<artifactId>gatein-user-guide-en</artifactId>
Modified: exo/portal/branches/3.1.x/examples/extension/config/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/extension/config/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/examples/extension/config/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/extension/ear/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/extension/ear/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/examples/extension/ear/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,23 +37,23 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.config</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.jar</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.war</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
<type>war</type>
</dependency>
</dependencies>
Modified: exo/portal/branches/3.1.x/examples/extension/jar/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/extension/jar/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/examples/extension/jar/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/extension/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/extension/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/examples/extension/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<artifactId>exo.portal.sample.extension.root</artifactId>
Modified: exo/portal/branches/3.1.x/examples/extension/war/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/extension/war/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/examples/extension/war/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/examples/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<artifactId>exo.portal.sample</artifactId>
Modified: exo/portal/branches/3.1.x/examples/portal/config/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portal/config/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/examples/portal/config/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/portal/ear/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portal/ear/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/examples/portal/ear/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,29 +37,29 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.config</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.jar</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.war</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.rest-war</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
<type>war</type>
</dependency>
</dependencies>
Modified: exo/portal/branches/3.1.x/examples/portal/jar/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portal/jar/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/examples/portal/jar/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/portal/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portal/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/examples/portal/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<artifactId>exo.portal.sample.portal.root</artifactId>
Modified: exo/portal/branches/3.1.x/examples/portal/rest-war/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portal/rest-war/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/examples/portal/rest-war/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/portal/war/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portal/war/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/examples/portal/war/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/examples/portlets/jsfhellouser/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portlets/jsfhellouser/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/examples/portlets/jsfhellouser/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<artifactId>gatein-jsf-hellouser</artifactId>
Modified: exo/portal/branches/3.1.x/examples/portlets/jsphellouser/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portlets/jsphellouser/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/examples/portlets/jsphellouser/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<artifactId>gatein-jsp-hellouser</artifactId>
Modified: exo/portal/branches/3.1.x/examples/portlets/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portlets/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/examples/portlets/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
Modified: exo/portal/branches/3.1.x/examples/portlets/simplesthelloworld/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portlets/simplesthelloworld/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/examples/portlets/simplesthelloworld/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<artifactId>gatein-simplest-helloworld</artifactId>
Modified: exo/portal/branches/3.1.x/examples/portlets/struts-jpetstore/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/portlets/struts-jpetstore/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/examples/portlets/struts-jpetstore/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<artifactId>struts-jpetstore</artifactId>
Modified: exo/portal/branches/3.1.x/examples/skins/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/skins/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/examples/skins/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<groupId>org.gatein.portal.examples.skins</groupId>
Modified: exo/portal/branches/3.1.x/examples/skins/simpleskin/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/examples/skins/simpleskin/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/examples/skins/simpleskin/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.portal.examples.skins</groupId>
<artifactId>parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<artifactId>gatein-sample-skin</artifactId>
Modified: exo/portal/branches/3.1.x/gadgets/core/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/gadgets/core/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/gadgets/core/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -14,7 +14,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<artifactId>exo.portal.gadgets-core</artifactId>
Modified: exo/portal/branches/3.1.x/gadgets/eXoGadgets/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/gadgets/eXoGadgets/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/gadgets/eXoGadgets/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/gadgets/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/gadgets/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/gadgets/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<artifactId>exo.portal.gadgets</artifactId>
Modified: exo/portal/branches/3.1.x/gadgets/server/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/gadgets/server/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/gadgets/server/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<artifactId>exo.portal.gadgets-server</artifactId>
Modified: exo/portal/branches/3.1.x/packaging/module/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/packaging/module/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/packaging/module/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/packaging/pkg/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/packaging/pkg/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/packaging/pkg/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -67,13 +67,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.module</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
<type>js</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.product</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
<type>js</type>
</dependency>
</dependencies>
Modified: exo/portal/branches/3.1.x/packaging/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/packaging/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/packaging/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/packaging/product/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/packaging/product/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/packaging/product/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/packaging/reports/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/packaging/reports/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/packaging/reports/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -31,7 +31,7 @@
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
<packaging>pom</packaging>
<name>GateIn - Portal</name>
@@ -84,9 +84,9 @@
</distributionManagement>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/exo/portal/branches/3.1.x</connection>
- <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/exo/portal/branches/3.1.x</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/exo/portal/branches/3.1.x</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/exo/portal/tags/3.1.3-PLF</connection>
+ <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/exo/portal/tags/3.1.3-PLF</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/exo/portal/tags/3.1.3-PLF</url>
</scm>
<modules>
@@ -324,110 +324,110 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.pc</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.application-registry</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.xml-parser</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.scripting</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.dashboard</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.core</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets-core</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
<type>test-jar</type>
</dependency>
Modified: exo/portal/branches/3.1.x/portlet/dashboard/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/portlet/dashboard/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/portlet/dashboard/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/portlet/exoadmin/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/portlet/exoadmin/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/portlet/exoadmin/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/portlet/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/portlet/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/portlet/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<artifactId>exo.portal.portlet</artifactId>
Modified: exo/portal/branches/3.1.x/portlet/web/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/portlet/web/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/portlet/web/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/server/jboss/patch-ear/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/jboss/patch-ear/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/server/jboss/patch-ear/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/server/jboss/plugin/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/jboss/plugin/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/server/jboss/plugin/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/server/jboss/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/jboss/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/server/jboss/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<artifactId>exo.portal.server.jboss</artifactId>
Modified: exo/portal/branches/3.1.x/server/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/server/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<artifactId>exo.portal.server</artifactId>
Modified: exo/portal/branches/3.1.x/server/tomcat/patch/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/tomcat/patch/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/server/tomcat/patch/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.tomcat</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/server/tomcat/plugin/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/tomcat/plugin/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/server/tomcat/plugin/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.tomcat</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/server/tomcat/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/server/tomcat/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/server/tomcat/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<artifactId>exo.portal.server.tomcat</artifactId>
Modified: exo/portal/branches/3.1.x/starter/ear/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/starter/ear/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/starter/ear/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.starter.war</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
<type>war</type>
</dependency>
</dependencies>
Modified: exo/portal/branches/3.1.x/starter/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/starter/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/starter/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<artifactId>exo.portal.starter.root</artifactId>
Modified: exo/portal/branches/3.1.x/starter/war/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/starter/war/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/starter/war/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/testsuite/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/testsuite/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/testsuite/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<artifactId>exo.portal.testsuite</artifactId>
Modified: exo/portal/branches/3.1.x/testsuite/selenium-snifftests/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/testsuite/selenium-snifftests/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/testsuite/selenium-snifftests/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<artifactId>exo.portal.selenium.snifftests</artifactId>
Modified: exo/portal/branches/3.1.x/testsuite/webuibasedsamples/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/testsuite/webuibasedsamples/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/testsuite/webuibasedsamples/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<artifactId>exo.webui.based.samples</artifactId>
Modified: exo/portal/branches/3.1.x/web/eXoResources/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/web/eXoResources/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/web/eXoResources/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/web/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/web/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/web/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<artifactId>exo.portal.web</artifactId>
Modified: exo/portal/branches/3.1.x/web/portal/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/web/portal/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/web/portal/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/web/rest/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/web/rest/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/web/rest/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/webui/core/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/webui/core/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/webui/core/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/webui/eXo/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/webui/eXo/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/webui/eXo/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: exo/portal/branches/3.1.x/webui/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/webui/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/webui/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<artifactId>exo.portal.webui</artifactId>
Modified: exo/portal/branches/3.1.x/webui/portal/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/webui/portal/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
+++ exo/portal/branches/3.1.x/webui/portal/pom.xml 2010-09-07 20:16:26 UTC (rev 4073)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.1.3-PLF-SNAPSHOT</version>
+ <version>3.1.3-PLF</version>
</parent>
<modelVersion>4.0.0</modelVersion>
14 years, 3 months
gatein SVN: r4072 - exo/portal/branches/3.1.x.
by do-not-reply@jboss.org
Author: aheritier
Date: 2010-09-07 16:04:45 -0400 (Tue, 07 Sep 2010)
New Revision: 4072
Modified:
exo/portal/branches/3.1.x/pom.xml
Log:
[EXOGTN-66] Upgrade kernel,core,ws,jcr to latest releases
Modified: exo/portal/branches/3.1.x/pom.xml
===================================================================
--- exo/portal/branches/3.1.x/pom.xml 2010-09-07 14:14:30 UTC (rev 4071)
+++ exo/portal/branches/3.1.x/pom.xml 2010-09-07 20:04:45 UTC (rev 4072)
@@ -37,10 +37,10 @@
<name>GateIn - Portal</name>
<properties>
- <org.exoplatform.kernel.version>2.2.4-GA-SNAPSHOT</org.exoplatform.kernel.version>
- <org.exoplatform.core.version>2.3.4-GA-SNAPSHOT</org.exoplatform.core.version>
- <org.exoplatform.ws.version>2.1.4-GA-SNAPSHOT</org.exoplatform.ws.version>
- <org.exoplatform.jcr.version>1.12.4-GA-SNAPSHOT</org.exoplatform.jcr.version>
+ <org.exoplatform.kernel.version>2.2.4-GA</org.exoplatform.kernel.version>
+ <org.exoplatform.core.version>2.3.4-GA</org.exoplatform.core.version>
+ <org.exoplatform.ws.version>2.1.4-GA</org.exoplatform.ws.version>
+ <org.exoplatform.jcr.version>1.12.4-GA</org.exoplatform.jcr.version>
<org.jibx.version>1.2.1</org.jibx.version>
<org.shindig.version>1.0-r790473-Patch02</org.shindig.version>
<nl.captcha.simplecaptcha.version>1.1.1-GA-Patch01</nl.captcha.simplecaptcha.version>
@@ -809,10 +809,10 @@
<profile>
<id>stable</id>
<properties>
- <org.exoplatform.kernel.version>2.2.3-GA</org.exoplatform.kernel.version>
- <org.exoplatform.core.version>2.3.3-GA</org.exoplatform.core.version>
- <org.exoplatform.ws.version>2.1.3-GA</org.exoplatform.ws.version>
- <org.exoplatform.jcr.version>1.12.3-GA</org.exoplatform.jcr.version>
+ <org.exoplatform.kernel.version>2.2.4-GA</org.exoplatform.kernel.version>
+ <org.exoplatform.core.version>2.3.4-GA</org.exoplatform.core.version>
+ <org.exoplatform.ws.version>2.1.4-GA</org.exoplatform.ws.version>
+ <org.exoplatform.jcr.version>1.12.4-GA</org.exoplatform.jcr.version>
</properties>
</profile>
14 years, 3 months
gatein SVN: r4071 - in epp/portal/branches/EPP_5_1_Branch: portlet/web/src/main/webapp/skin/portal/webui/component/UIBannerPortlet/DefaultSkin/background and 8 other directories.
by do-not-reply@jboss.org
Author: thomas.heute(a)jboss.com
Date: 2010-09-07 10:14:30 -0400 (Tue, 07 Sep 2010)
New Revision: 4071
Added:
epp/portal/branches/EPP_5_1_Branch/portlet/web/src/main/webapp/skin/portal/webui/component/UIBannerPortlet/DefaultSkin/background/Logo-trans.gif
epp/portal/branches/EPP_5_1_Branch/portlet/web/src/main/webapp/skin/portal/webui/component/UIBannerPortlet/DefaultSkin/background/banner-bg.jpg
epp/portal/branches/EPP_5_1_Branch/portlet/web/src/main/webapp/skin/portal/webui/component/UILogoPortlet/DefaultSkin/background/red-bg.gif
epp/portal/branches/EPP_5_1_Branch/portlet/web/src/main/webapp/skin/portal/webui/component/UINavigationPortlet/DefaultSkin/background/active-button-bg.gif
epp/portal/branches/EPP_5_1_Branch/portlet/web/src/main/webapp/skin/portal/webui/component/UINavigationPortlet/DefaultSkin/background/nav-bg.jpg
epp/portal/branches/EPP_5_1_Branch/web/eXoResources/src/main/webapp/skin/DefaultSkin/background/gray-dot-bg.gif
epp/portal/branches/EPP_5_1_Branch/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIToolbarContainer/background/JbossLogo.gif
epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/templates/skin/webui/component/UIHomePagePortlet/DefaultSkin/background/epp/username-bg.gif
Modified:
epp/portal/branches/EPP_5_1_Branch/packaging/module/src/main/javascript/portal.packaging.module.js
epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObject.hbm.xml
epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectAttribute.hbm.xml
epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectAttributeBinaryValue.hbm.xml
epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectCredential.hbm.xml
epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectCredentialBinaryValue.hbm.xml
epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectCredentialType.hbm.xml
epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectRelationship.hbm.xml
epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectRelationshipName.hbm.xml
epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectRelationshipType.hbm.xml
epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectType.hbm.xml
epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateRealm.hbm.xml
epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObject.hbm.xml
epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectAttribute.hbm.xml
epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectAttributeBinaryValue.hbm.xml
epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectCredential.hbm.xml
epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectCredentialBinaryValue.hbm.xml
epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectCredentialType.hbm.xml
epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectRelationship.hbm.xml
epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectRelationshipName.hbm.xml
epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectRelationshipType.hbm.xml
epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectType.hbm.xml
epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateRealm.hbm.xml
epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/conf/organization/idm-configuration.xml
Log:
JBEPP-453: EPP 5.1 productization
Modified: epp/portal/branches/EPP_5_1_Branch/packaging/module/src/main/javascript/portal.packaging.module.js
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/packaging/module/src/main/javascript/portal.packaging.module.js 2010-09-07 13:30:00 UTC (rev 4070)
+++ epp/portal/branches/EPP_5_1_Branch/packaging/module/src/main/javascript/portal.packaging.module.js 2010-09-07 14:14:30 UTC (rev 4071)
@@ -146,7 +146,8 @@
addDependency(new Project("org.picketlink.idm", "picketlink-idm-spi", "jar", idmVersion)).
addDependency(new Project("org.picketlink.idm", "picketlink-idm-hibernate", "jar", idmVersion)).
addDependency(new Project("org.picketlink.idm", "picketlink-idm-ldap", "jar", idmVersion)).
- addDependency(new Project("org.picketlink.idm", "picketlink-idm-cache", "jar", idmVersion));
+ addDependency(new Project("org.picketlink.idm", "picketlink-idm-cache", "jar", idmVersion)).
+ addDependency(new Project("org.hibernate", "hibernate-jbosscache2", "jar", "3.3.2.GA"));;
module.component.applicationRegistry =
new Project("org.exoplatform.portal", "exo.portal.component.application-registry", "jar", module.version).
Added: epp/portal/branches/EPP_5_1_Branch/portlet/web/src/main/webapp/skin/portal/webui/component/UIBannerPortlet/DefaultSkin/background/Logo-trans.gif
===================================================================
(Binary files differ)
Property changes on: epp/portal/branches/EPP_5_1_Branch/portlet/web/src/main/webapp/skin/portal/webui/component/UIBannerPortlet/DefaultSkin/background/Logo-trans.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: epp/portal/branches/EPP_5_1_Branch/portlet/web/src/main/webapp/skin/portal/webui/component/UIBannerPortlet/DefaultSkin/background/banner-bg.jpg
===================================================================
(Binary files differ)
Property changes on: epp/portal/branches/EPP_5_1_Branch/portlet/web/src/main/webapp/skin/portal/webui/component/UIBannerPortlet/DefaultSkin/background/banner-bg.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: epp/portal/branches/EPP_5_1_Branch/portlet/web/src/main/webapp/skin/portal/webui/component/UILogoPortlet/DefaultSkin/background/red-bg.gif
===================================================================
(Binary files differ)
Property changes on: epp/portal/branches/EPP_5_1_Branch/portlet/web/src/main/webapp/skin/portal/webui/component/UILogoPortlet/DefaultSkin/background/red-bg.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: epp/portal/branches/EPP_5_1_Branch/portlet/web/src/main/webapp/skin/portal/webui/component/UINavigationPortlet/DefaultSkin/background/active-button-bg.gif
===================================================================
(Binary files differ)
Property changes on: epp/portal/branches/EPP_5_1_Branch/portlet/web/src/main/webapp/skin/portal/webui/component/UINavigationPortlet/DefaultSkin/background/active-button-bg.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: epp/portal/branches/EPP_5_1_Branch/portlet/web/src/main/webapp/skin/portal/webui/component/UINavigationPortlet/DefaultSkin/background/nav-bg.jpg
===================================================================
(Binary files differ)
Property changes on: epp/portal/branches/EPP_5_1_Branch/portlet/web/src/main/webapp/skin/portal/webui/component/UINavigationPortlet/DefaultSkin/background/nav-bg.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: epp/portal/branches/EPP_5_1_Branch/web/eXoResources/src/main/webapp/skin/DefaultSkin/background/gray-dot-bg.gif
===================================================================
(Binary files differ)
Property changes on: epp/portal/branches/EPP_5_1_Branch/web/eXoResources/src/main/webapp/skin/DefaultSkin/background/gray-dot-bg.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: epp/portal/branches/EPP_5_1_Branch/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIToolbarContainer/background/JbossLogo.gif
===================================================================
(Binary files differ)
Property changes on: epp/portal/branches/EPP_5_1_Branch/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/view/UIToolbarContainer/background/JbossLogo.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObject.hbm.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObject.hbm.xml 2010-09-07 13:30:00 UTC (rev 4070)
+++ epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObject.hbm.xml 2010-09-07 14:14:30 UTC (rev 4071)
@@ -4,7 +4,7 @@
<hibernate-mapping>
<class name="org.picketlink.idm.impl.model.hibernate.HibernateIdentityObject"
table="jbid_io">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<id name="id"
type="java.lang.Long"
access="field">
@@ -16,7 +16,7 @@
cascade="all, delete-orphan"
lazy="extra"
fetch="subselect">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<key>
<column name="IDENTITY_OBJECT_ID" />
</key>
@@ -27,7 +27,7 @@
cascade="all, delete-orphan"
lazy="extra"
fetch="subselect">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<key>
<column name="IDENTITY_OBJECT_ID" />
</key>
@@ -37,7 +37,7 @@
inverse="true"
lazy="extra"
fetch="subselect">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<key>
<column name="FROM_IDENTITY" />
</key>
@@ -65,7 +65,7 @@
cascade="all, delete-orphan"
lazy="extra"
fetch="subselect">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<key column="PROP_ID"/>
<map-key type="string"
column="PROP_NAME"/>
@@ -85,7 +85,7 @@
inverse="true"
lazy="extra"
fetch="subselect">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<key>
<column name="TO_IDENTITY" />
</key>
Modified: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectAttribute.hbm.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectAttribute.hbm.xml 2010-09-07 13:30:00 UTC (rev 4070)
+++ epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectAttribute.hbm.xml 2010-09-07 14:14:30 UTC (rev 4071)
@@ -4,7 +4,7 @@
<hibernate-mapping>
<class name="org.picketlink.idm.impl.model.hibernate.HibernateIdentityObjectAttribute"
table="jbid_io_attr">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<id name="id"
type="java.lang.Long"
access="field">
@@ -37,7 +37,7 @@
access="field"
lazy="extra"
fetch="subselect">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<key column="TEXT_ATTR_VALUE_ID"/>
<element type="string"
column="ATTR_VALUE"/>
Modified: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectAttributeBinaryValue.hbm.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectAttributeBinaryValue.hbm.xml 2010-09-07 13:30:00 UTC (rev 4070)
+++ epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectAttributeBinaryValue.hbm.xml 2010-09-07 14:14:30 UTC (rev 4071)
@@ -4,7 +4,7 @@
<hibernate-mapping>
<class name="org.picketlink.idm.impl.model.hibernate.HibernateIdentityObjectAttributeBinaryValue"
table="jbid_attr_bin_value">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<id name="id"
type="java.lang.Long"
access="field">
Modified: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectCredential.hbm.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectCredential.hbm.xml 2010-09-07 13:30:00 UTC (rev 4070)
+++ epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectCredential.hbm.xml 2010-09-07 14:14:30 UTC (rev 4071)
@@ -4,7 +4,7 @@
<hibernate-mapping>
<class name="org.picketlink.idm.impl.model.hibernate.HibernateIdentityObjectCredential"
table="jbid_io_creden">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<id name="id"
type="java.lang.Long"
@@ -35,7 +35,7 @@
cascade="all, delete-orphan"
lazy="extra"
fetch="subselect">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<key column="PROP_ID"/>
<map-key type="string"
column="PROP_NAME"/>
Modified: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectCredentialBinaryValue.hbm.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectCredentialBinaryValue.hbm.xml 2010-09-07 13:30:00 UTC (rev 4070)
+++ epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectCredentialBinaryValue.hbm.xml 2010-09-07 14:14:30 UTC (rev 4071)
@@ -4,7 +4,7 @@
<hibernate-mapping>
<class name="org.picketlink.idm.impl.model.hibernate.HibernateIdentityObjectCredentialBinaryValue"
table="jbid_creden_bin_value">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<id name="id"
type="java.lang.Long"
access="field">
Modified: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectCredentialType.hbm.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectCredentialType.hbm.xml 2010-09-07 13:30:00 UTC (rev 4070)
+++ epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectCredentialType.hbm.xml 2010-09-07 14:14:30 UTC (rev 4071)
@@ -4,7 +4,7 @@
<hibernate-mapping>
<class name="org.picketlink.idm.impl.model.hibernate.HibernateIdentityObjectCredentialType"
table="jbid_io_creden_type">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<id name="id"
type="java.lang.Long"
Modified: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectRelationship.hbm.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectRelationship.hbm.xml 2010-09-07 13:30:00 UTC (rev 4070)
+++ epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectRelationship.hbm.xml 2010-09-07 14:14:30 UTC (rev 4071)
@@ -4,7 +4,7 @@
<hibernate-mapping>
<class name="org.picketlink.idm.impl.model.hibernate.HibernateIdentityObjectRelationship"
table="jbid_io_rel">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<id name="id"
type="java.lang.Long"
access="field">
@@ -51,7 +51,7 @@
cascade="all, delete-orphan"
fetch="subselect"
lazy="extra">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<key column="PROP_ID"/>
<map-key type="string"
column="PROP_NAME"/>
Modified: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectRelationshipName.hbm.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectRelationshipName.hbm.xml 2010-09-07 13:30:00 UTC (rev 4070)
+++ epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectRelationshipName.hbm.xml 2010-09-07 14:14:30 UTC (rev 4071)
@@ -4,7 +4,7 @@
<hibernate-mapping>
<class name="org.picketlink.idm.impl.model.hibernate.HibernateIdentityObjectRelationshipName"
table="jbid_io_rel_name">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<id name="id"
type="java.lang.Long"
@@ -25,7 +25,7 @@
cascade="all, delete-orphan"
lazy="extra"
fetch="subselect">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<key column="PROP_ID"/>
<map-key type="string"
column="PROP_NAME"/>
Modified: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectRelationshipType.hbm.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectRelationshipType.hbm.xml 2010-09-07 13:30:00 UTC (rev 4070)
+++ epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectRelationshipType.hbm.xml 2010-09-07 14:14:30 UTC (rev 4071)
@@ -4,7 +4,7 @@
<hibernate-mapping>
<class name="org.picketlink.idm.impl.model.hibernate.HibernateIdentityObjectRelationshipType"
table="jbid_io_rel_type">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<id name="id"
type="java.lang.Long"
access="field">
Modified: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectType.hbm.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectType.hbm.xml 2010-09-07 13:30:00 UTC (rev 4070)
+++ epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateIdentityObjectType.hbm.xml 2010-09-07 14:14:30 UTC (rev 4071)
@@ -4,7 +4,7 @@
<hibernate-mapping>
<class name="org.picketlink.idm.impl.model.hibernate.HibernateIdentityObjectType"
table="jbid_io_type">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<id name="id"
type="java.lang.Long"
access="field">
Modified: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateRealm.hbm.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateRealm.hbm.xml 2010-09-07 13:30:00 UTC (rev 4070)
+++ epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/mappings/HibernateRealm.hbm.xml 2010-09-07 14:14:30 UTC (rev 4071)
@@ -4,7 +4,7 @@
<hibernate-mapping>
<class name="org.picketlink.idm.impl.model.hibernate.HibernateRealm"
table="jbid_realm">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<id name="id"
type="java.lang.Long"
access="field">
@@ -24,7 +24,7 @@
cascade="all, delete-orphan"
fetch="subselect"
lazy="extra">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<key column="PROP_ID"/>
<map-key type="string"
column="PROP_NAME"/>
Modified: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObject.hbm.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObject.hbm.xml 2010-09-07 13:30:00 UTC (rev 4070)
+++ epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObject.hbm.xml 2010-09-07 14:14:30 UTC (rev 4071)
@@ -4,7 +4,7 @@
<hibernate-mapping>
<class name="org.picketlink.idm.impl.model.hibernate.HibernateIdentityObject"
table="jbid_io">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<id name="id"
type="java.lang.Long"
access="field">
@@ -16,7 +16,7 @@
cascade="all, delete-orphan"
lazy="extra"
fetch="subselect">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<key>
<column name="IDENTITY_OBJECT_ID" />
</key>
@@ -27,7 +27,7 @@
cascade="all, delete-orphan"
lazy="extra"
fetch="subselect">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<key>
<column name="IDENTITY_OBJECT_ID" />
</key>
@@ -37,7 +37,7 @@
inverse="true"
lazy="extra"
fetch="subselect">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<key>
<column name="FROM_IDENTITY" />
</key>
@@ -65,7 +65,7 @@
cascade="all, delete-orphan"
lazy="extra"
fetch="subselect">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<key column="PROP_ID"/>
<map-key type="string"
column="PROP_NAME"/>
@@ -85,7 +85,7 @@
inverse="true"
lazy="extra"
fetch="subselect">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<key>
<column name="TO_IDENTITY" />
</key>
Modified: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectAttribute.hbm.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectAttribute.hbm.xml 2010-09-07 13:30:00 UTC (rev 4070)
+++ epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectAttribute.hbm.xml 2010-09-07 14:14:30 UTC (rev 4071)
@@ -4,7 +4,7 @@
<hibernate-mapping>
<class name="org.picketlink.idm.impl.model.hibernate.HibernateIdentityObjectAttribute"
table="jbid_io_attr">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<id name="id"
type="java.lang.Long"
access="field">
@@ -37,7 +37,7 @@
access="field"
lazy="extra"
fetch="subselect">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<key column="TEXT_ATTR_VALUE_ID"/>
<element type="string"
column="ATTR_VALUE"/>
Modified: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectAttributeBinaryValue.hbm.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectAttributeBinaryValue.hbm.xml 2010-09-07 13:30:00 UTC (rev 4070)
+++ epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectAttributeBinaryValue.hbm.xml 2010-09-07 14:14:30 UTC (rev 4071)
@@ -4,7 +4,7 @@
<hibernate-mapping>
<class name="org.picketlink.idm.impl.model.hibernate.HibernateIdentityObjectAttributeBinaryValue"
table="jbid_attr_bin_value">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<id name="id"
type="java.lang.Long"
access="field">
Modified: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectCredential.hbm.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectCredential.hbm.xml 2010-09-07 13:30:00 UTC (rev 4070)
+++ epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectCredential.hbm.xml 2010-09-07 14:14:30 UTC (rev 4071)
@@ -4,7 +4,7 @@
<hibernate-mapping>
<class name="org.picketlink.idm.impl.model.hibernate.HibernateIdentityObjectCredential"
table="jbid_io_creden">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<id name="id"
type="java.lang.Long"
@@ -35,7 +35,7 @@
cascade="all, delete-orphan"
lazy="extra"
fetch="subselect">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<key column="PROP_ID"/>
<map-key type="string"
column="PROP_NAME"/>
Modified: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectCredentialBinaryValue.hbm.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectCredentialBinaryValue.hbm.xml 2010-09-07 13:30:00 UTC (rev 4070)
+++ epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectCredentialBinaryValue.hbm.xml 2010-09-07 14:14:30 UTC (rev 4071)
@@ -4,7 +4,7 @@
<hibernate-mapping>
<class name="org.picketlink.idm.impl.model.hibernate.HibernateIdentityObjectCredentialBinaryValue"
table="jbid_creden_bin_value">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<id name="id"
type="java.lang.Long"
access="field">
Modified: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectCredentialType.hbm.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectCredentialType.hbm.xml 2010-09-07 13:30:00 UTC (rev 4070)
+++ epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectCredentialType.hbm.xml 2010-09-07 14:14:30 UTC (rev 4071)
@@ -4,7 +4,7 @@
<hibernate-mapping>
<class name="org.picketlink.idm.impl.model.hibernate.HibernateIdentityObjectCredentialType"
table="jbid_io_creden_type">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<id name="id"
type="java.lang.Long"
Modified: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectRelationship.hbm.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectRelationship.hbm.xml 2010-09-07 13:30:00 UTC (rev 4070)
+++ epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectRelationship.hbm.xml 2010-09-07 14:14:30 UTC (rev 4071)
@@ -4,7 +4,7 @@
<hibernate-mapping>
<class name="org.picketlink.idm.impl.model.hibernate.HibernateIdentityObjectRelationship"
table="jbid_io_rel">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<id name="id"
type="java.lang.Long"
access="field">
@@ -51,7 +51,7 @@
cascade="all, delete-orphan"
fetch="subselect"
lazy="extra">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<key column="PROP_ID"/>
<map-key type="string"
column="PROP_NAME"/>
Modified: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectRelationshipName.hbm.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectRelationshipName.hbm.xml 2010-09-07 13:30:00 UTC (rev 4070)
+++ epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectRelationshipName.hbm.xml 2010-09-07 14:14:30 UTC (rev 4071)
@@ -4,7 +4,7 @@
<hibernate-mapping>
<class name="org.picketlink.idm.impl.model.hibernate.HibernateIdentityObjectRelationshipName"
table="jbid_io_rel_name">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<id name="id"
type="java.lang.Long"
@@ -25,7 +25,7 @@
cascade="all, delete-orphan"
lazy="extra"
fetch="subselect">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<key column="PROP_ID"/>
<map-key type="string"
column="PROP_NAME"/>
Modified: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectRelationshipType.hbm.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectRelationshipType.hbm.xml 2010-09-07 13:30:00 UTC (rev 4070)
+++ epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectRelationshipType.hbm.xml 2010-09-07 14:14:30 UTC (rev 4071)
@@ -4,7 +4,7 @@
<hibernate-mapping>
<class name="org.picketlink.idm.impl.model.hibernate.HibernateIdentityObjectRelationshipType"
table="jbid_io_rel_type">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<id name="id"
type="java.lang.Long"
access="field">
Modified: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectType.hbm.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectType.hbm.xml 2010-09-07 13:30:00 UTC (rev 4070)
+++ epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateIdentityObjectType.hbm.xml 2010-09-07 14:14:30 UTC (rev 4071)
@@ -4,7 +4,7 @@
<hibernate-mapping>
<class name="org.picketlink.idm.impl.model.hibernate.HibernateIdentityObjectType"
table="jbid_io_type">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<id name="id"
type="java.lang.Long"
access="field">
Modified: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateRealm.hbm.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateRealm.hbm.xml 2010-09-07 13:30:00 UTC (rev 4070)
+++ epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/classes/picketlink-idm/sybase-mappings/HibernateRealm.hbm.xml 2010-09-07 14:14:30 UTC (rev 4071)
@@ -4,7 +4,7 @@
<hibernate-mapping>
<class name="org.picketlink.idm.impl.model.hibernate.HibernateRealm"
table="jbid_realm">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<id name="id"
type="java.lang.Long"
access="field">
@@ -24,7 +24,7 @@
cascade="all, delete-orphan"
fetch="subselect"
lazy="extra">
- <cache usage="read-write"/>
+ <cache usage="transactional"/>
<key column="PROP_ID"/>
<map-key type="string"
column="PROP_NAME"/>
Modified: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/conf/organization/idm-configuration.xml
===================================================================
--- epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/conf/organization/idm-configuration.xml 2010-09-07 13:30:00 UTC (rev 4070)
+++ epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/WEB-INF/conf/organization/idm-configuration.xml 2010-09-07 14:14:30 UTC (rev 4071)
@@ -38,13 +38,13 @@
<properties-param>
<name>hibernate.properties</name>
<description>Default Hibernate Service</description>
+ <property name="hibernate.cache.region.jbc2.query.localonly" value="true" />
+ <property name="hibernate.cache.region.factory_class" value="org.hibernate.cache.jbc2.MultiplexedJBossCacheRegionFactory" />
+ <property name="hibernate.transaction.manager_lookup_class" value="org.hibernate.transaction.JBossTransactionManagerLookup" />
<property name="hibernate.show_sql" value="false"/>
<property name="hibernate.current_session_context_class" value="thread"/>
<property name="hibernate.cache.use_second_level_cache" value="true"/>
<property name="hibernate.cache.use_query_cache" value="true"/>
- <property name="hibernate.cache.region.jbc2.query.localonly" value="true" />
- <property name="hibernate.cache.region.factory_class" value="org.hibernate.cache.jbc2.MultiplexedJBossCacheRegionFactory" />
- <property name="hibernate.transaction.manager_lookup_class" value="org.hibernate.transaction.JBossTransactionManagerLookup" />
<property name="hibernate.connection.datasource" value="${gatein.idm.datasource.name}${container.name.suffix}"/>
<property name="hibernate.connection.autocommit" value="true"/>
<!--
Added: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/templates/skin/webui/component/UIHomePagePortlet/DefaultSkin/background/epp/username-bg.gif
===================================================================
(Binary files differ)
Property changes on: epp/portal/branches/EPP_5_1_Branch/web/portal/src/main/webapp/templates/skin/webui/component/UIHomePagePortlet/DefaultSkin/background/epp/username-bg.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
14 years, 3 months
gatein SVN: r4070 - components/wsrp/trunk.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2010-09-07 09:30:00 -0400 (Tue, 07 Sep 2010)
New Revision: 4070
Modified:
components/wsrp/trunk/UpdateWSRPForGateIn.sh
Log:
- Minor reformatting.
Modified: components/wsrp/trunk/UpdateWSRPForGateIn.sh
===================================================================
--- components/wsrp/trunk/UpdateWSRPForGateIn.sh 2010-09-07 13:02:20 UTC (rev 4069)
+++ components/wsrp/trunk/UpdateWSRPForGateIn.sh 2010-09-07 13:30:00 UTC (rev 4070)
@@ -68,9 +68,15 @@
else
if [ $# -eq 2 ]
then
- echo \| === Only building and deploying Admin GUI!
- echo \| === GUI will be deployed directly to $GATEIN_EAR_HOME/.. and you will need to remove GUI war
- echo \| === from $GATEIN_EAR_HOME and edit $GATEIN_EAR_HOME/META-INF/application.xml to remove the GUI module
+ echo \| == Only building and deploying Admin GUI!
+ echo \| == GUI will be deployed directly to:
+ echo \| == $GATEIN_EAR_HOME/..
+ echo \| == and you will need to remove GUI war from:
+ echo \| == $GATEIN_EAR_HOME
+ echo \| == and edit:
+ echo \| == $GATEIN_EAR_HOME/META-INF/application.xml
+ echo \| == to remove the GUI module
+ echo --------------------------------------------------------------------------
cd admin-gui
mvn clean install -Dmaven.test.skip=true
war=wsrp-admin-gui
14 years, 3 months