gatein SVN: r8397 - in components/wci/trunk: jetty/src/main/java/org/gatein/wci/jetty and 2 other directories.
by do-not-reply@jboss.org
Author: mwringe
Date: 2012-02-03 11:35:42 -0500 (Fri, 03 Feb 2012)
New Revision: 8397
Modified:
components/wci/trunk/jboss/jboss6/src/main/java/org/gatein/wci/jboss/JB6ServletContainerContext.java
components/wci/trunk/jetty/src/main/java/org/gatein/wci/jetty/Jetty6ServletContainerContext.java
components/wci/trunk/tomcat/tomcat6/src/main/java/org/gatein/wci/tomcat/TC6ServletContainerContext.java
components/wci/trunk/tomcat/tomcat7/src/main/java/org/gatein/wci/tomcat/TC7ServletContainerContext.java
Log:
GTNWCI-32: Check when manually unregisting a web application that the ServletContainerContext hasn't already been stopped (and hence its registration has been destroyed). Fixes an NPE exception when the server currently shutsdown.
Modified: components/wci/trunk/jboss/jboss6/src/main/java/org/gatein/wci/jboss/JB6ServletContainerContext.java
===================================================================
--- components/wci/trunk/jboss/jboss6/src/main/java/org/gatein/wci/jboss/JB6ServletContainerContext.java 2012-02-03 16:17:58 UTC (rev 8396)
+++ components/wci/trunk/jboss/jboss6/src/main/java/org/gatein/wci/jboss/JB6ServletContainerContext.java 2012-02-03 16:35:42 UTC (rev 8397)
@@ -436,7 +436,15 @@
@Override
public void unregisterWebApp(ServletContext servletContext)
{
- this.manualMonitoredContexts.remove(servletContext.getServletContextName());
- registration.unregisterWebApp(servletContext.getContextPath());
+ if (isDisabledNativeRegistration(servletContext))
+ {
+ this.manualMonitoredContexts.remove(servletContext.getServletContextName());
+ //if the registration is null, then this ServletContainerContext has been stopped already
+ //and all the registrations have already been removed.
+ if (registration != null)
+ {
+ registration.unregisterWebApp(servletContext.getContextPath());
+ }
+ }
}
}
Modified: components/wci/trunk/jetty/src/main/java/org/gatein/wci/jetty/Jetty6ServletContainerContext.java
===================================================================
--- components/wci/trunk/jetty/src/main/java/org/gatein/wci/jetty/Jetty6ServletContainerContext.java 2012-02-03 16:17:58 UTC (rev 8396)
+++ components/wci/trunk/jetty/src/main/java/org/gatein/wci/jetty/Jetty6ServletContainerContext.java 2012-02-03 16:35:42 UTC (rev 8397)
@@ -361,8 +361,16 @@
@Override
public void unregisterWebApp(ServletContext servletContext)
{
- this.manualMonitoredContexts.remove(servletContext.getServletContextName());
- registration.unregisterWebApp(servletContext.getContextPath());
+ if (isDisabledNativeRegistration(servletContext))
+ {
+ this.manualMonitoredContexts.remove(servletContext.getServletContextName());
+ //if the registration is null, then this ServletContainerContext has been stopped already
+ //and all the registrations have already been removed.
+ if (registration != null)
+ {
+ registration.unregisterWebApp(servletContext.getContextPath());
+ }
+ }
}
}
Modified: components/wci/trunk/tomcat/tomcat6/src/main/java/org/gatein/wci/tomcat/TC6ServletContainerContext.java
===================================================================
--- components/wci/trunk/tomcat/tomcat6/src/main/java/org/gatein/wci/tomcat/TC6ServletContainerContext.java 2012-02-03 16:17:58 UTC (rev 8396)
+++ components/wci/trunk/tomcat/tomcat6/src/main/java/org/gatein/wci/tomcat/TC6ServletContainerContext.java 2012-02-03 16:35:42 UTC (rev 8397)
@@ -419,7 +419,15 @@
@Override
public void unregisterWebApp(ServletContext servletContext)
{
- this.manualMonitoredContexts.remove(servletContext.getServletContextName());
- registration.unregisterWebApp(servletContext.getContextPath());
+ if (isDisabledNativeRegistration(servletContext))
+ {
+ this.manualMonitoredContexts.remove(servletContext.getServletContextName());
+ //if the registration is null, then this ServletContainerContext has been stopped already
+ //and all the registrations have already been removed.
+ if (registration != null)
+ {
+ registration.unregisterWebApp(servletContext.getContextPath());
+ }
+ }
}
}
Modified: components/wci/trunk/tomcat/tomcat7/src/main/java/org/gatein/wci/tomcat/TC7ServletContainerContext.java
===================================================================
--- components/wci/trunk/tomcat/tomcat7/src/main/java/org/gatein/wci/tomcat/TC7ServletContainerContext.java 2012-02-03 16:17:58 UTC (rev 8396)
+++ components/wci/trunk/tomcat/tomcat7/src/main/java/org/gatein/wci/tomcat/TC7ServletContainerContext.java 2012-02-03 16:35:42 UTC (rev 8397)
@@ -440,7 +440,15 @@
@Override
public void unregisterWebApp(ServletContext servletContext)
{
- this.manualMonitoredContexts.remove(servletContext.getServletContextName());
- registration.unregisterWebApp(servletContext.getContextPath());
+ if (isDisabledNativeRegistration(servletContext))
+ {
+ this.manualMonitoredContexts.remove(servletContext.getServletContextName());
+ //if the registration is null, then this ServletContainerContext has been stopped already
+ //and all the registrations have already been removed.
+ if (registration != null)
+ {
+ registration.unregisterWebApp(servletContext.getContextPath());
+ }
+ }
}
}
12 years, 11 months
gatein SVN: r8396 - epp/portal/branches/EPP_5_2_Branch/component/resources/src/main/java/org/exoplatform/services/resources/impl.
by do-not-reply@jboss.org
Author: mstruk
Date: 2012-02-03 11:17:58 -0500 (Fri, 03 Feb 2012)
New Revision: 8396
Modified:
epp/portal/branches/EPP_5_2_Branch/component/resources/src/main/java/org/exoplatform/services/resources/impl/LocaleConfigImpl.java
epp/portal/branches/EPP_5_2_Branch/component/resources/src/main/java/org/exoplatform/services/resources/impl/LocaleConfigServiceImpl.java
Log:
JBEPP-1369 Enable customization of LocaleConfig service by extending existing implementations
Modified: epp/portal/branches/EPP_5_2_Branch/component/resources/src/main/java/org/exoplatform/services/resources/impl/LocaleConfigImpl.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/resources/src/main/java/org/exoplatform/services/resources/impl/LocaleConfigImpl.java 2012-02-03 16:15:24 UTC (rev 8395)
+++ epp/portal/branches/EPP_5_2_Branch/component/resources/src/main/java/org/exoplatform/services/resources/impl/LocaleConfigImpl.java 2012-02-03 16:17:58 UTC (rev 8396)
@@ -68,49 +68,49 @@
{
}
- public final String getDescription()
+ public String getDescription()
{
return description_;
}
- public final void setDescription(String desc)
+ public void setDescription(String desc)
{
description_ = desc;
}
- public final String getOutputEncoding()
+ public String getOutputEncoding()
{
return outputEncoding_;
}
- public final void setOutputEncoding(String enc)
+ public void setOutputEncoding(String enc)
{
outputEncoding_ = enc;
}
- public final String getInputEncoding()
+ public String getInputEncoding()
{
return inputEncoding_;
}
- public final void setInputEncoding(String enc)
+ public void setInputEncoding(String enc)
{
inputEncoding_ = enc;
}
- public final Locale getLocale()
+ public Locale getLocale()
{
return locale_;
}
- public final void setLocale(Locale locale)
+ public void setLocale(Locale locale)
{
locale_ = locale;
if (localeName_ == null)
localeName_ = locale.getLanguage();
}
- public final void setLocale(String localeName)
+ public void setLocale(String localeName)
{
localeName_ = localeName;
locale_ = predefinedLocaleMap_.get(localeName);
@@ -134,17 +134,17 @@
return tagIdentifier_;
}
- public final String getLanguage()
+ public String getLanguage()
{
return locale_.getLanguage();
}
- public final String getLocaleName()
+ public String getLocaleName()
{
return localeName_;
}
- public final void setLocaleName(String localeName)
+ public void setLocaleName(String localeName)
{
localeName_ = localeName;
}
Modified: epp/portal/branches/EPP_5_2_Branch/component/resources/src/main/java/org/exoplatform/services/resources/impl/LocaleConfigServiceImpl.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/resources/src/main/java/org/exoplatform/services/resources/impl/LocaleConfigServiceImpl.java 2012-02-03 16:15:24 UTC (rev 8395)
+++ epp/portal/branches/EPP_5_2_Branch/component/resources/src/main/java/org/exoplatform/services/resources/impl/LocaleConfigServiceImpl.java 2012-02-03 16:17:58 UTC (rev 8396)
@@ -100,7 +100,7 @@
return configs_.values();
}
- private void parseConfiguration(InputStream is) throws Exception
+ protected void parseConfiguration(InputStream is) throws Exception
{
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
factory.setIgnoringComments(true);
12 years, 11 months
gatein SVN: r8395 - portal/trunk/component/resources/src/main/java/org/exoplatform/services/resources/impl.
by do-not-reply@jboss.org
Author: mstruk
Date: 2012-02-03 11:15:24 -0500 (Fri, 03 Feb 2012)
New Revision: 8395
Modified:
portal/trunk/component/resources/src/main/java/org/exoplatform/services/resources/impl/LocaleConfigImpl.java
portal/trunk/component/resources/src/main/java/org/exoplatform/services/resources/impl/LocaleConfigServiceImpl.java
Log:
GTNPORTAL-2278 Enable customization of LocaleConfig service by extending existing implementations
Modified: portal/trunk/component/resources/src/main/java/org/exoplatform/services/resources/impl/LocaleConfigImpl.java
===================================================================
--- portal/trunk/component/resources/src/main/java/org/exoplatform/services/resources/impl/LocaleConfigImpl.java 2012-02-03 14:55:14 UTC (rev 8394)
+++ portal/trunk/component/resources/src/main/java/org/exoplatform/services/resources/impl/LocaleConfigImpl.java 2012-02-03 16:15:24 UTC (rev 8395)
@@ -68,49 +68,49 @@
{
}
- public final String getDescription()
+ public String getDescription()
{
return description_;
}
- public final void setDescription(String desc)
+ public void setDescription(String desc)
{
description_ = desc;
}
- public final String getOutputEncoding()
+ public String getOutputEncoding()
{
return outputEncoding_;
}
- public final void setOutputEncoding(String enc)
+ public void setOutputEncoding(String enc)
{
outputEncoding_ = enc;
}
- public final String getInputEncoding()
+ public String getInputEncoding()
{
return inputEncoding_;
}
- public final void setInputEncoding(String enc)
+ public void setInputEncoding(String enc)
{
inputEncoding_ = enc;
}
- public final Locale getLocale()
+ public Locale getLocale()
{
return locale_;
}
- public final void setLocale(Locale locale)
+ public void setLocale(Locale locale)
{
locale_ = locale;
if (localeName_ == null)
localeName_ = locale.getLanguage();
}
- public final void setLocale(String localeName)
+ public void setLocale(String localeName)
{
localeName_ = localeName;
locale_ = predefinedLocaleMap_.get(localeName);
@@ -134,17 +134,17 @@
return tagIdentifier_;
}
- public final String getLanguage()
+ public String getLanguage()
{
return locale_.getLanguage();
}
- public final String getLocaleName()
+ public String getLocaleName()
{
return localeName_;
}
- public final void setLocaleName(String localeName)
+ public void setLocaleName(String localeName)
{
localeName_ = localeName;
}
Modified: portal/trunk/component/resources/src/main/java/org/exoplatform/services/resources/impl/LocaleConfigServiceImpl.java
===================================================================
--- portal/trunk/component/resources/src/main/java/org/exoplatform/services/resources/impl/LocaleConfigServiceImpl.java 2012-02-03 14:55:14 UTC (rev 8394)
+++ portal/trunk/component/resources/src/main/java/org/exoplatform/services/resources/impl/LocaleConfigServiceImpl.java 2012-02-03 16:15:24 UTC (rev 8395)
@@ -100,7 +100,7 @@
return configs_.values();
}
- private void parseConfiguration(InputStream is) throws Exception
+ protected void parseConfiguration(InputStream is) throws Exception
{
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
factory.setIgnoringComments(true);
12 years, 11 months
gatein SVN: r8394 - in portal/trunk/wsrp-integration: extension-ear-as5/src/main/application/lib/jboss5integration.jar/conf and 1 other directory.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2012-02-03 09:55:14 -0500 (Fri, 03 Feb 2012)
New Revision: 8394
Added:
portal/trunk/wsrp-integration/extension-component/src/main/java/org/gatein/integration/wsrp/wss/ConversationStateCredentialsAccessor.java
Modified:
portal/trunk/wsrp-integration/extension-component/src/main/java/org/gatein/integration/wsrp/wss/JBoss5WSSServiceIntegration.java
portal/trunk/wsrp-integration/extension-ear-as5/src/main/application/lib/jboss5integration.jar/conf/configuration.xml
Log:
- GTNWSRP-268: re-applied patch from mposolda.
Added: portal/trunk/wsrp-integration/extension-component/src/main/java/org/gatein/integration/wsrp/wss/ConversationStateCredentialsAccessor.java
===================================================================
--- portal/trunk/wsrp-integration/extension-component/src/main/java/org/gatein/integration/wsrp/wss/ConversationStateCredentialsAccessor.java (rev 0)
+++ portal/trunk/wsrp-integration/extension-component/src/main/java/org/gatein/integration/wsrp/wss/ConversationStateCredentialsAccessor.java 2012-02-03 14:55:14 UTC (rev 8394)
@@ -0,0 +1,55 @@
+/*
+ * JBoss, a division of Red Hat
+ * Copyright 2012, 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.integration.wsrp.wss;
+
+import org.exoplatform.services.security.ConversationState;
+import org.gatein.common.logging.Logger;
+import org.gatein.common.logging.LoggerFactory;
+import org.gatein.wci.security.Credentials;
+import org.gatein.wsrp.wss.credentials.CredentialsAccessor;
+
+/**
+ * @author <a href="mailto:mposolda@redhat.com">Marek Posolda</a>
+ */
+public class ConversationStateCredentialsAccessor implements CredentialsAccessor
+{
+
+ private static final Logger log = LoggerFactory.getLogger(ConversationStateCredentialsAccessor.class);
+
+ /**
+ * Reading credentials from @{link ConversationState} of current user.
+ *
+ * @return credentials
+ */
+ @Override
+ public Credentials getCredentials()
+ {
+ if (ConversationState.getCurrent() == null)
+ {
+ log.warn("Cannot find Credentials because ConversationState not set.");
+ return null;
+ }
+ return (Credentials)ConversationState.getCurrent().getAttribute(Credentials.CREDENTIALS);
+ }
+}
Modified: portal/trunk/wsrp-integration/extension-component/src/main/java/org/gatein/integration/wsrp/wss/JBoss5WSSServiceIntegration.java
===================================================================
--- portal/trunk/wsrp-integration/extension-component/src/main/java/org/gatein/integration/wsrp/wss/JBoss5WSSServiceIntegration.java 2012-02-03 14:54:38 UTC (rev 8393)
+++ portal/trunk/wsrp-integration/extension-component/src/main/java/org/gatein/integration/wsrp/wss/JBoss5WSSServiceIntegration.java 2012-02-03 14:55:14 UTC (rev 8394)
@@ -23,6 +23,7 @@
package org.gatein.integration.wsrp.wss;
import org.gatein.wsrp.wss.WebServiceSecurityFactory;
+import org.gatein.wsrp.wss.credentials.CredentialsAccessor;
import org.picocontainer.Startable;
import org.wsrp.wss.jboss5.handlers.consumer.JBWSSecurityHandlerWrapper;
import org.wsrp.wss.jboss5.handlers.consumer.WSSecurityCredentialHandler;
@@ -35,12 +36,13 @@
{
private final WebServiceSecurityFactory wssFactory;
- private final WSSecurityCredentialHandler WS_CREDENTIAL_HANDLER = new WSSecurityCredentialHandler();
+ private final WSSecurityCredentialHandler WS_CREDENTIAL_HANDLER;
private final JBWSSecurityHandlerWrapper JBWS_SECURITY_WRAPPER = new JBWSSecurityHandlerWrapper();
- public JBoss5WSSServiceIntegration()
+ public JBoss5WSSServiceIntegration(CredentialsAccessor credentialsAccessor)
{
wssFactory = WebServiceSecurityFactory.getInstance();
+ WS_CREDENTIAL_HANDLER = new WSSecurityCredentialHandler(credentialsAccessor);
}
public void start()
Modified: portal/trunk/wsrp-integration/extension-ear-as5/src/main/application/lib/jboss5integration.jar/conf/configuration.xml
===================================================================
--- portal/trunk/wsrp-integration/extension-ear-as5/src/main/application/lib/jboss5integration.jar/conf/configuration.xml 2012-02-03 14:54:38 UTC (rev 8393)
+++ portal/trunk/wsrp-integration/extension-ear-as5/src/main/application/lib/jboss5integration.jar/conf/configuration.xml 2012-02-03 14:55:14 UTC (rev 8394)
@@ -28,6 +28,16 @@
xmlns="http://www.exoplaform.org/xml/ns/kernel_1_2.xsd">
<component>
+ <key>org.gatein.wsrp.wss.credentials.CredentialsAccessor</key>
+
+ <!-- Reading credentials from HTTP session -->
+ <type>org.gatein.wsrp.wss.credentials.HTTPSessionCredentialsAccessor</type>
+
+ <!-- Reading credentials from ConversationState -->
+ <!--<type>org.gatein.integration.wsrp.wss.ConversationStateCredentialsAccessor</type>-->
+ </component>
+
+ <component>
<type>org.gatein.integration.wsrp.wss.JBoss5WSSServiceIntegration</type>
</component>
12 years, 11 months
gatein SVN: r8393 - in epp/portal/branches/EPP_5_2_Branch/distribution: jboss-epp/src and 1 other directory.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2012-02-03 09:54:38 -0500 (Fri, 03 Feb 2012)
New Revision: 8393
Modified:
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/src/build.xml
epp/portal/branches/EPP_5_2_Branch/distribution/pom.xml
Log:
JBEPP-1499 Upgrade EAP to 5.1.2
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/src/build.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/src/build.xml 2012-02-03 14:54:06 UTC (rev 8392)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/src/build.xml 2012-02-03 14:54:38 UTC (rev 8393)
@@ -78,7 +78,7 @@
</zip>
</target>
- <target name="finalTasks" depends="modifyStartupMessage,http-ivoker-PATCH,jbossws-native-PATCH">
+ <target name="finalTasks" depends="modifyStartupMessage,jbossws-native-PATCH">
</target>
<!-- Patching startup message in log when starting portal -->
<target name="modifyStartupMessage">
@@ -117,24 +117,6 @@
</zip>
</target>
- <target name="http-ivoker-PATCH">
- <echo>Patching EAP http-ivoker.sar/invoker.war/web.xml ...</echo>
- <patch
- originalfile="${epp.path}/jboss-as/server/production/deploy/httpha-invoker.sar/invoker.war/WEB-INF/web.xml"
- patchfile="src/patch/EAP/http-invoker.sar.invoker.war.web.xml.patch"
- failonerror="true"
- />
- <patch
- originalfile="${epp.path}/jboss-as/server/all/deploy/httpha-invoker.sar/invoker.war/WEB-INF/web.xml"
- patchfile="src/patch/EAP/http-invoker.sar.invoker.war.web.xml.patch"
- failonerror="true"
- />
- <patch
- originalfile="${epp.path}/jboss-as/server/default/deploy/http-invoker.sar/invoker.war/WEB-INF/web.xml"
- patchfile="src/patch/EAP/http-invoker.sar.invoker.war.web.xml.patch"
- failonerror="true"
- />
- </target>
<target name="jbossws-native-PATCH">
<echo>One-off patch for JBPAPP-7108</echo>
<property name="resource_jar" value="${basedir}/src/main/resources/eap/jbossws-native-PATCH/jbossws-common-1.1.0.SP7-patch-02.jar" />
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/pom.xml 2012-02-03 14:54:06 UTC (rev 8392)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/pom.xml 2012-02-03 14:54:38 UTC (rev 8393)
@@ -13,7 +13,7 @@
<name>Distribution</name>
<properties>
- <eap.version>5.1.1</eap.version>
+ <eap.version>5.1.2</eap.version>
<eap.groupId>org.jboss.jbossas</eap.groupId>
<eap.dir>jboss-eap-5.1</eap.dir>
<epp.dir>jboss-epp-5.2</epp.dir>
12 years, 11 months
gatein SVN: r8392 - portal/trunk.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2012-02-03 09:54:06 -0500 (Fri, 03 Feb 2012)
New Revision: 8392
Modified:
portal/trunk/pom.xml
Log:
- Updated WCI, PC, MOP, Chromattic and WSRP versions.
Modified: portal/trunk/pom.xml
===================================================================
--- portal/trunk/pom.xml 2012-02-03 13:47:36 UTC (rev 8391)
+++ portal/trunk/pom.xml 2012-02-03 14:54:06 UTC (rev 8392)
@@ -44,18 +44,18 @@
<org.shindig.version>2.0.2-CP01</org.shindig.version>
<nl.captcha.simplecaptcha.version>1.1.1-GA-Patch01</nl.captcha.simplecaptcha.version>
<org.gatein.common.version>2.0.4-GA</org.gatein.common.version>
- <org.gatein.wci.version>2.1.0-GA</org.gatein.wci.version>
- <org.gatein.pc.version>2.3.0-GA</org.gatein.pc.version>
+ <org.gatein.wci.version>2.1.1-Beta02</org.gatein.wci.version>
+ <org.gatein.pc.version>2.3.1-Beta02</org.gatein.pc.version>
<org.picketlink.idm>1.3.0.GA</org.picketlink.idm>
- <org.gatein.wsrp.version>2.1.0-GA</org.gatein.wsrp.version>
- <org.gatein.mop.version>1.1.0-GA</org.gatein.mop.version>
+ <org.gatein.wsrp.version>2.1.1-CR01</org.gatein.wsrp.version>
+ <org.gatein.mop.version>1.1.1-GA</org.gatein.mop.version>
<org.gatein.mgmt.version>1.0.1-GA</org.gatein.mgmt.version>
<org.slf4j.version>1.5.8</org.slf4j.version>
<commons-pool.version>1.5.5</commons-pool.version>
<rhino.version>1.6R5</rhino.version>
<org.codehaus.groovy.version>1.7.6</org.codehaus.groovy.version>
<javax.servlet.version>2.5</javax.servlet.version>
- <version.chromattic>1.1.1</version.chromattic>
+ <version.chromattic>1.1.2</version.chromattic>
<version.reflext>1.1.0</version.reflext>
<org.staxnav.version>0.9.6</org.staxnav.version>
<jcip.version>1.0</jcip.version>
12 years, 11 months
gatein SVN: r8391 - in components/wsrp/branches/2.1.x: admin-gui and 14 other directories.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2012-02-03 08:47:36 -0500 (Fri, 03 Feb 2012)
New Revision: 8391
Modified:
components/wsrp/branches/2.1.x/admin-gui/pom.xml
components/wsrp/branches/2.1.x/api/pom.xml
components/wsrp/branches/2.1.x/common/pom.xml
components/wsrp/branches/2.1.x/consumer/pom.xml
components/wsrp/branches/2.1.x/hibernate-impl/pom.xml
components/wsrp/branches/2.1.x/jcr-impl/pom.xml
components/wsrp/branches/2.1.x/pom.xml
components/wsrp/branches/2.1.x/producer/pom.xml
components/wsrp/branches/2.1.x/test/pom.xml
components/wsrp/branches/2.1.x/ws-security/jboss5/pom.xml
components/wsrp/branches/2.1.x/ws-security/pom.xml
components/wsrp/branches/2.1.x/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml
components/wsrp/branches/2.1.x/ws-security/wss/pom.xml
components/wsrp/branches/2.1.x/wsrp-producer-war/pom.xml
components/wsrp/branches/2.1.x/wsrp1-ws/pom.xml
components/wsrp/branches/2.1.x/wsrp2-ws/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: components/wsrp/branches/2.1.x/admin-gui/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/admin-gui/pom.xml 2012-02-03 13:47:14 UTC (rev 8390)
+++ components/wsrp/branches/2.1.x/admin-gui/pom.xml 2012-02-03 13:47:36 UTC (rev 8391)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-CR01</version>
+ <version>2.1.1-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-admin-gui</artifactId>
Modified: components/wsrp/branches/2.1.x/api/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/api/pom.xml 2012-02-03 13:47:14 UTC (rev 8390)
+++ components/wsrp/branches/2.1.x/api/pom.xml 2012-02-03 13:47:36 UTC (rev 8391)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-CR01</version>
+ <version>2.1.1-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-integration-api</artifactId>
Modified: components/wsrp/branches/2.1.x/common/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/common/pom.xml 2012-02-03 13:47:14 UTC (rev 8390)
+++ components/wsrp/branches/2.1.x/common/pom.xml 2012-02-03 13:47:36 UTC (rev 8391)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-CR01</version>
+ <version>2.1.1-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-common</artifactId>
Modified: components/wsrp/branches/2.1.x/consumer/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/consumer/pom.xml 2012-02-03 13:47:14 UTC (rev 8390)
+++ components/wsrp/branches/2.1.x/consumer/pom.xml 2012-02-03 13:47:36 UTC (rev 8391)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-CR01</version>
+ <version>2.1.1-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-consumer</artifactId>
Modified: components/wsrp/branches/2.1.x/hibernate-impl/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/hibernate-impl/pom.xml 2012-02-03 13:47:14 UTC (rev 8390)
+++ components/wsrp/branches/2.1.x/hibernate-impl/pom.xml 2012-02-03 13:47:36 UTC (rev 8391)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-CR01</version>
+ <version>2.1.1-GA-SNAPSHOT</version>
</parent>
<groupId>org.gatein.wsrp</groupId>
Modified: components/wsrp/branches/2.1.x/jcr-impl/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/jcr-impl/pom.xml 2012-02-03 13:47:14 UTC (rev 8390)
+++ components/wsrp/branches/2.1.x/jcr-impl/pom.xml 2012-02-03 13:47:36 UTC (rev 8391)
@@ -26,7 +26,7 @@
<parent>
<artifactId>wsrp-parent</artifactId>
<groupId>org.gatein.wsrp</groupId>
- <version>2.1.1-CR01</version>
+ <version>2.1.1-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/branches/2.1.x/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/pom.xml 2012-02-03 13:47:14 UTC (rev 8390)
+++ components/wsrp/branches/2.1.x/pom.xml 2012-02-03 13:47:36 UTC (rev 8391)
@@ -36,7 +36,7 @@
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-CR01</version>
+ <version>2.1.1-GA-SNAPSHOT</version>
<packaging>pom</packaging>
@@ -47,9 +47,9 @@
</parent>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/wsrp/tags/2.1.1-...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/wsrp/tags/2.1.1-CR01</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/components/wsrp/tags/2.1.1-CR01</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/wsrp/branches/2....</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/wsrp/branches/2.1.x/</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/components/wsrp/branches/2.1.x/</url>
</scm>
<properties>
Modified: components/wsrp/branches/2.1.x/producer/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/producer/pom.xml 2012-02-03 13:47:14 UTC (rev 8390)
+++ components/wsrp/branches/2.1.x/producer/pom.xml 2012-02-03 13:47:36 UTC (rev 8391)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-CR01</version>
+ <version>2.1.1-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-producer-lib</artifactId>
Modified: components/wsrp/branches/2.1.x/test/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/test/pom.xml 2012-02-03 13:47:14 UTC (rev 8390)
+++ components/wsrp/branches/2.1.x/test/pom.xml 2012-02-03 13:47:36 UTC (rev 8391)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-CR01</version>
+ <version>2.1.1-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/branches/2.1.x/ws-security/jboss5/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/ws-security/jboss5/pom.xml 2012-02-03 13:47:14 UTC (rev 8390)
+++ components/wsrp/branches/2.1.x/ws-security/jboss5/pom.xml 2012-02-03 13:47:36 UTC (rev 8391)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-wss-parent</artifactId>
- <version>2.1.1-CR01</version>
+ <version>2.1.1-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wss-jboss5</artifactId>
Modified: components/wsrp/branches/2.1.x/ws-security/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/ws-security/pom.xml 2012-02-03 13:47:14 UTC (rev 8390)
+++ components/wsrp/branches/2.1.x/ws-security/pom.xml 2012-02-03 13:47:36 UTC (rev 8391)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-CR01</version>
+ <version>2.1.1-GA-SNAPSHOT</version>
</parent>
<artifactId>wsrp-wss-parent</artifactId>
Modified: components/wsrp/branches/2.1.x/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml 2012-02-03 13:47:14 UTC (rev 8390)
+++ components/wsrp/branches/2.1.x/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml 2012-02-03 13:47:36 UTC (rev 8391)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-wss-parent</artifactId>
- <version>2.1.1-CR01</version>
+ <version>2.1.1-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-producer-jb5wss</artifactId>
Modified: components/wsrp/branches/2.1.x/ws-security/wss/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/ws-security/wss/pom.xml 2012-02-03 13:47:14 UTC (rev 8390)
+++ components/wsrp/branches/2.1.x/ws-security/wss/pom.xml 2012-02-03 13:47:36 UTC (rev 8391)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-wss-parent</artifactId>
- <version>2.1.1-CR01</version>
+ <version>2.1.1-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wss</artifactId>
Modified: components/wsrp/branches/2.1.x/wsrp-producer-war/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/wsrp-producer-war/pom.xml 2012-02-03 13:47:14 UTC (rev 8390)
+++ components/wsrp/branches/2.1.x/wsrp-producer-war/pom.xml 2012-02-03 13:47:36 UTC (rev 8391)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-CR01</version>
+ <version>2.1.1-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/branches/2.1.x/wsrp1-ws/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/wsrp1-ws/pom.xml 2012-02-03 13:47:14 UTC (rev 8390)
+++ components/wsrp/branches/2.1.x/wsrp1-ws/pom.xml 2012-02-03 13:47:36 UTC (rev 8391)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-CR01</version>
+ <version>2.1.1-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wsrp1-ws</artifactId>
Modified: components/wsrp/branches/2.1.x/wsrp2-ws/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/wsrp2-ws/pom.xml 2012-02-03 13:47:14 UTC (rev 8390)
+++ components/wsrp/branches/2.1.x/wsrp2-ws/pom.xml 2012-02-03 13:47:36 UTC (rev 8391)
@@ -26,7 +26,7 @@
<parent>
<artifactId>wsrp-parent</artifactId>
<groupId>org.gatein.wsrp</groupId>
- <version>2.1.1-CR01</version>
+ <version>2.1.1-GA-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wsrp2-ws</artifactId>
12 years, 11 months
gatein SVN: r8390 - components/wsrp/tags.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2012-02-03 08:47:14 -0500 (Fri, 03 Feb 2012)
New Revision: 8390
Added:
components/wsrp/tags/2.1.1-CR01/
Log:
[maven-release-plugin] copy for tag 2.1.1-CR01
12 years, 11 months
gatein SVN: r8389 - in components/wsrp/branches/2.1.x: admin-gui and 14 other directories.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2012-02-03 08:47:01 -0500 (Fri, 03 Feb 2012)
New Revision: 8389
Modified:
components/wsrp/branches/2.1.x/admin-gui/pom.xml
components/wsrp/branches/2.1.x/api/pom.xml
components/wsrp/branches/2.1.x/common/pom.xml
components/wsrp/branches/2.1.x/consumer/pom.xml
components/wsrp/branches/2.1.x/hibernate-impl/pom.xml
components/wsrp/branches/2.1.x/jcr-impl/pom.xml
components/wsrp/branches/2.1.x/pom.xml
components/wsrp/branches/2.1.x/producer/pom.xml
components/wsrp/branches/2.1.x/test/pom.xml
components/wsrp/branches/2.1.x/ws-security/jboss5/pom.xml
components/wsrp/branches/2.1.x/ws-security/pom.xml
components/wsrp/branches/2.1.x/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml
components/wsrp/branches/2.1.x/ws-security/wss/pom.xml
components/wsrp/branches/2.1.x/wsrp-producer-war/pom.xml
components/wsrp/branches/2.1.x/wsrp1-ws/pom.xml
components/wsrp/branches/2.1.x/wsrp2-ws/pom.xml
Log:
[maven-release-plugin] prepare release 2.1.1-CR01
Modified: components/wsrp/branches/2.1.x/admin-gui/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/admin-gui/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
+++ components/wsrp/branches/2.1.x/admin-gui/pom.xml 2012-02-03 13:47:01 UTC (rev 8389)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-CR01-SNAPSHOT</version>
+ <version>2.1.1-CR01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-admin-gui</artifactId>
Modified: components/wsrp/branches/2.1.x/api/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/api/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
+++ components/wsrp/branches/2.1.x/api/pom.xml 2012-02-03 13:47:01 UTC (rev 8389)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-CR01-SNAPSHOT</version>
+ <version>2.1.1-CR01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-integration-api</artifactId>
Modified: components/wsrp/branches/2.1.x/common/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/common/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
+++ components/wsrp/branches/2.1.x/common/pom.xml 2012-02-03 13:47:01 UTC (rev 8389)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-CR01-SNAPSHOT</version>
+ <version>2.1.1-CR01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-common</artifactId>
Modified: components/wsrp/branches/2.1.x/consumer/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/consumer/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
+++ components/wsrp/branches/2.1.x/consumer/pom.xml 2012-02-03 13:47:01 UTC (rev 8389)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-CR01-SNAPSHOT</version>
+ <version>2.1.1-CR01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-consumer</artifactId>
Modified: components/wsrp/branches/2.1.x/hibernate-impl/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/hibernate-impl/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
+++ components/wsrp/branches/2.1.x/hibernate-impl/pom.xml 2012-02-03 13:47:01 UTC (rev 8389)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-CR01-SNAPSHOT</version>
+ <version>2.1.1-CR01</version>
</parent>
<groupId>org.gatein.wsrp</groupId>
Modified: components/wsrp/branches/2.1.x/jcr-impl/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/jcr-impl/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
+++ components/wsrp/branches/2.1.x/jcr-impl/pom.xml 2012-02-03 13:47:01 UTC (rev 8389)
@@ -26,7 +26,7 @@
<parent>
<artifactId>wsrp-parent</artifactId>
<groupId>org.gatein.wsrp</groupId>
- <version>2.1.1-CR01-SNAPSHOT</version>
+ <version>2.1.1-CR01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/branches/2.1.x/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
+++ components/wsrp/branches/2.1.x/pom.xml 2012-02-03 13:47:01 UTC (rev 8389)
@@ -36,7 +36,7 @@
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-CR01-SNAPSHOT</version>
+ <version>2.1.1-CR01</version>
<packaging>pom</packaging>
@@ -47,9 +47,9 @@
</parent>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/wsrp/branches/2....</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/wsrp/branches/2.1.x/</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/components/wsrp/branches/2.1.x/</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/wsrp/tags/2.1.1-...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/wsrp/tags/2.1.1-CR01</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/components/wsrp/tags/2.1.1-CR01</url>
</scm>
<properties>
Modified: components/wsrp/branches/2.1.x/producer/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/producer/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
+++ components/wsrp/branches/2.1.x/producer/pom.xml 2012-02-03 13:47:01 UTC (rev 8389)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-CR01-SNAPSHOT</version>
+ <version>2.1.1-CR01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-producer-lib</artifactId>
Modified: components/wsrp/branches/2.1.x/test/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/test/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
+++ components/wsrp/branches/2.1.x/test/pom.xml 2012-02-03 13:47:01 UTC (rev 8389)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-CR01-SNAPSHOT</version>
+ <version>2.1.1-CR01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/branches/2.1.x/ws-security/jboss5/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/ws-security/jboss5/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
+++ components/wsrp/branches/2.1.x/ws-security/jboss5/pom.xml 2012-02-03 13:47:01 UTC (rev 8389)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-wss-parent</artifactId>
- <version>2.1.1-CR01-SNAPSHOT</version>
+ <version>2.1.1-CR01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wss-jboss5</artifactId>
Modified: components/wsrp/branches/2.1.x/ws-security/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/ws-security/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
+++ components/wsrp/branches/2.1.x/ws-security/pom.xml 2012-02-03 13:47:01 UTC (rev 8389)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-CR01-SNAPSHOT</version>
+ <version>2.1.1-CR01</version>
</parent>
<artifactId>wsrp-wss-parent</artifactId>
Modified: components/wsrp/branches/2.1.x/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
+++ components/wsrp/branches/2.1.x/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml 2012-02-03 13:47:01 UTC (rev 8389)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-wss-parent</artifactId>
- <version>2.1.1-CR01-SNAPSHOT</version>
+ <version>2.1.1-CR01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-producer-jb5wss</artifactId>
Modified: components/wsrp/branches/2.1.x/ws-security/wss/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/ws-security/wss/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
+++ components/wsrp/branches/2.1.x/ws-security/wss/pom.xml 2012-02-03 13:47:01 UTC (rev 8389)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-wss-parent</artifactId>
- <version>2.1.1-CR01-SNAPSHOT</version>
+ <version>2.1.1-CR01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wss</artifactId>
Modified: components/wsrp/branches/2.1.x/wsrp-producer-war/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/wsrp-producer-war/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
+++ components/wsrp/branches/2.1.x/wsrp-producer-war/pom.xml 2012-02-03 13:47:01 UTC (rev 8389)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-CR01-SNAPSHOT</version>
+ <version>2.1.1-CR01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/branches/2.1.x/wsrp1-ws/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/wsrp1-ws/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
+++ components/wsrp/branches/2.1.x/wsrp1-ws/pom.xml 2012-02-03 13:47:01 UTC (rev 8389)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-CR01-SNAPSHOT</version>
+ <version>2.1.1-CR01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wsrp1-ws</artifactId>
Modified: components/wsrp/branches/2.1.x/wsrp2-ws/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/wsrp2-ws/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
+++ components/wsrp/branches/2.1.x/wsrp2-ws/pom.xml 2012-02-03 13:47:01 UTC (rev 8389)
@@ -26,7 +26,7 @@
<parent>
<artifactId>wsrp-parent</artifactId>
<groupId>org.gatein.wsrp</groupId>
- <version>2.1.1-CR01-SNAPSHOT</version>
+ <version>2.1.1-CR01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wsrp2-ws</artifactId>
12 years, 11 months
gatein SVN: r8388 - in components/wsrp/branches/2.1.x: admin-gui and 14 other directories.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2012-02-03 08:35:12 -0500 (Fri, 03 Feb 2012)
New Revision: 8388
Modified:
components/wsrp/branches/2.1.x/admin-gui/pom.xml
components/wsrp/branches/2.1.x/api/pom.xml
components/wsrp/branches/2.1.x/common/pom.xml
components/wsrp/branches/2.1.x/consumer/pom.xml
components/wsrp/branches/2.1.x/hibernate-impl/pom.xml
components/wsrp/branches/2.1.x/jcr-impl/pom.xml
components/wsrp/branches/2.1.x/pom.xml
components/wsrp/branches/2.1.x/producer/pom.xml
components/wsrp/branches/2.1.x/test/pom.xml
components/wsrp/branches/2.1.x/ws-security/jboss5/pom.xml
components/wsrp/branches/2.1.x/ws-security/pom.xml
components/wsrp/branches/2.1.x/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml
components/wsrp/branches/2.1.x/ws-security/wss/pom.xml
components/wsrp/branches/2.1.x/wsrp-producer-war/pom.xml
components/wsrp/branches/2.1.x/wsrp1-ws/pom.xml
components/wsrp/branches/2.1.x/wsrp2-ws/pom.xml
Log:
- Reverted to version 2.1.1-CR01-SNAPSHOT to re-release.
- Fixed scm section.
Modified: components/wsrp/branches/2.1.x/admin-gui/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/admin-gui/pom.xml 2012-02-03 13:32:02 UTC (rev 8387)
+++ components/wsrp/branches/2.1.x/admin-gui/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.1.1-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-admin-gui</artifactId>
Modified: components/wsrp/branches/2.1.x/api/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/api/pom.xml 2012-02-03 13:32:02 UTC (rev 8387)
+++ components/wsrp/branches/2.1.x/api/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.1.1-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-integration-api</artifactId>
Modified: components/wsrp/branches/2.1.x/common/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/common/pom.xml 2012-02-03 13:32:02 UTC (rev 8387)
+++ components/wsrp/branches/2.1.x/common/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.1.1-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-common</artifactId>
Modified: components/wsrp/branches/2.1.x/consumer/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/consumer/pom.xml 2012-02-03 13:32:02 UTC (rev 8387)
+++ components/wsrp/branches/2.1.x/consumer/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.1.1-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-consumer</artifactId>
Modified: components/wsrp/branches/2.1.x/hibernate-impl/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/hibernate-impl/pom.xml 2012-02-03 13:32:02 UTC (rev 8387)
+++ components/wsrp/branches/2.1.x/hibernate-impl/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.1.1-CR01-SNAPSHOT</version>
</parent>
<groupId>org.gatein.wsrp</groupId>
Modified: components/wsrp/branches/2.1.x/jcr-impl/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/jcr-impl/pom.xml 2012-02-03 13:32:02 UTC (rev 8387)
+++ components/wsrp/branches/2.1.x/jcr-impl/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
@@ -26,7 +26,7 @@
<parent>
<artifactId>wsrp-parent</artifactId>
<groupId>org.gatein.wsrp</groupId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.1.1-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/branches/2.1.x/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/pom.xml 2012-02-03 13:32:02 UTC (rev 8387)
+++ components/wsrp/branches/2.1.x/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
@@ -36,7 +36,7 @@
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.1.1-CR01-SNAPSHOT</version>
<packaging>pom</packaging>
@@ -47,9 +47,9 @@
</parent>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/wsrp/trunk/</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/wsrp/trunk/</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/components/wsrp/trunk/</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/wsrp/branches/2....</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/wsrp/branches/2.1.x/</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/components/wsrp/branches/2.1.x/</url>
</scm>
<properties>
Modified: components/wsrp/branches/2.1.x/producer/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/producer/pom.xml 2012-02-03 13:32:02 UTC (rev 8387)
+++ components/wsrp/branches/2.1.x/producer/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.1.1-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-producer-lib</artifactId>
Modified: components/wsrp/branches/2.1.x/test/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/test/pom.xml 2012-02-03 13:32:02 UTC (rev 8387)
+++ components/wsrp/branches/2.1.x/test/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.1.1-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/branches/2.1.x/ws-security/jboss5/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/ws-security/jboss5/pom.xml 2012-02-03 13:32:02 UTC (rev 8387)
+++ components/wsrp/branches/2.1.x/ws-security/jboss5/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-wss-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.1.1-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wss-jboss5</artifactId>
Modified: components/wsrp/branches/2.1.x/ws-security/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/ws-security/pom.xml 2012-02-03 13:32:02 UTC (rev 8387)
+++ components/wsrp/branches/2.1.x/ws-security/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.1.1-CR01-SNAPSHOT</version>
</parent>
<artifactId>wsrp-wss-parent</artifactId>
Modified: components/wsrp/branches/2.1.x/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml 2012-02-03 13:32:02 UTC (rev 8387)
+++ components/wsrp/branches/2.1.x/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-wss-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.1.1-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-producer-jb5wss</artifactId>
Modified: components/wsrp/branches/2.1.x/ws-security/wss/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/ws-security/wss/pom.xml 2012-02-03 13:32:02 UTC (rev 8387)
+++ components/wsrp/branches/2.1.x/ws-security/wss/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-wss-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.1.1-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wss</artifactId>
Modified: components/wsrp/branches/2.1.x/wsrp-producer-war/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/wsrp-producer-war/pom.xml 2012-02-03 13:32:02 UTC (rev 8387)
+++ components/wsrp/branches/2.1.x/wsrp-producer-war/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.1.1-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/branches/2.1.x/wsrp1-ws/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/wsrp1-ws/pom.xml 2012-02-03 13:32:02 UTC (rev 8387)
+++ components/wsrp/branches/2.1.x/wsrp1-ws/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.1.1-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wsrp1-ws</artifactId>
Modified: components/wsrp/branches/2.1.x/wsrp2-ws/pom.xml
===================================================================
--- components/wsrp/branches/2.1.x/wsrp2-ws/pom.xml 2012-02-03 13:32:02 UTC (rev 8387)
+++ components/wsrp/branches/2.1.x/wsrp2-ws/pom.xml 2012-02-03 13:35:12 UTC (rev 8388)
@@ -26,7 +26,7 @@
<parent>
<artifactId>wsrp-parent</artifactId>
<groupId>org.gatein.wsrp</groupId>
- <version>2.1.1-GA-SNAPSHOT</version>
+ <version>2.1.1-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wsrp2-ws</artifactId>
12 years, 11 months