gatein SVN: r7834 - portal/trunk/component/portal/src/test/java/org/exoplatform/portal/config.
by do-not-reply@jboss.org
Author: ndkhoiits
Date: 2011-10-21 12:19:32 -0400 (Fri, 21 Oct 2011)
New Revision: 7834
Modified:
portal/trunk/component/portal/src/test/java/org/exoplatform/portal/config/TestJIBXXmlMapping.java
Log:
GTNPORTAL-2202 Update XSD version in the testcase
Modified: portal/trunk/component/portal/src/test/java/org/exoplatform/portal/config/TestJIBXXmlMapping.java
===================================================================
--- portal/trunk/component/portal/src/test/java/org/exoplatform/portal/config/TestJIBXXmlMapping.java 2011-10-21 16:01:26 UTC (rev 7833)
+++ portal/trunk/component/portal/src/test/java/org/exoplatform/portal/config/TestJIBXXmlMapping.java 2011-10-21 16:19:32 UTC (rev 7834)
@@ -138,7 +138,7 @@
{
UnmarshalledObject<PageNavigation> obj = ModelUnmarshaller.unmarshall(PageNavigation.class, new FileInputStream("src/test/resources/jibx/simple-navigation.xml"));;
PageNavigation nav = obj.getObject();
- assertEquals(Version.V_1_1, obj.getVersion());
+ assertEquals(Version.V_1_2, obj.getVersion());
//
PageNode bar = nav.getFragment().getNode("bar");
13 years, 2 months
gatein SVN: r7833 - in portal/trunk: examples/portlets/jsfhellouser and 1 other directories.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2011-10-21 12:01:26 -0400 (Fri, 21 Oct 2011)
New Revision: 7833
Added:
portal/trunk/wsrp-integration/extension-component/src/main/java/org/gatein/integration/wsrp/DistributedConsumerCache.java
portal/trunk/wsrp-integration/extension-component/src/main/java/org/gatein/integration/wsrp/DistributedSessionRegistry.java
Modified:
portal/trunk/examples/portlets/jsfhellouser/pom.xml
portal/trunk/pom.xml
Log:
- Updated to use PC 2.3.0-Beta08 and WSRP 2.1.0-Beta08.
Modified: portal/trunk/examples/portlets/jsfhellouser/pom.xml
===================================================================
--- portal/trunk/examples/portlets/jsfhellouser/pom.xml 2011-10-21 15:49:33 UTC (rev 7832)
+++ portal/trunk/examples/portlets/jsfhellouser/pom.xml 2011-10-21 16:01:26 UTC (rev 7833)
@@ -41,13 +41,13 @@
<dependency>
<groupId>org.jboss.portletbridge</groupId>
<artifactId>portletbridge-api</artifactId>
- <version>2.0.0.FINAL</version>
+ <version>2.2.0-CR02-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jboss.portletbridge</groupId>
<artifactId>portletbridge-impl</artifactId>
- <version>2.0.0.FINAL</version>
+ <version>2.2.0-CR02-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: portal/trunk/pom.xml
===================================================================
--- portal/trunk/pom.xml 2011-10-21 15:49:33 UTC (rev 7832)
+++ portal/trunk/pom.xml 2011-10-21 16:01:26 UTC (rev 7833)
@@ -45,9 +45,9 @@
<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-Beta06</org.gatein.pc.version>
+ <org.gatein.pc.version>2.3.0-Beta08</org.gatein.pc.version>
<org.picketlink.idm>1.3.0.Alpha09</org.picketlink.idm>
- <org.gatein.wsrp.version>2.1.0-Beta07</org.gatein.wsrp.version>
+ <org.gatein.wsrp.version>2.1.0-Beta08</org.gatein.wsrp.version>
<org.gatein.mop.version>1.1.0-Beta06</org.gatein.mop.version>
<org.gatein.mgmt.version>1.0.0-Beta05</org.gatein.mgmt.version>
<org.slf4j.version>1.5.8</org.slf4j.version>
Added: portal/trunk/wsrp-integration/extension-component/src/main/java/org/gatein/integration/wsrp/DistributedConsumerCache.java
===================================================================
--- portal/trunk/wsrp-integration/extension-component/src/main/java/org/gatein/integration/wsrp/DistributedConsumerCache.java (rev 0)
+++ portal/trunk/wsrp-integration/extension-component/src/main/java/org/gatein/integration/wsrp/DistributedConsumerCache.java 2011-10-21 16:01:26 UTC (rev 7833)
@@ -0,0 +1,105 @@
+/*
+* JBoss, a division of Red Hat
+* Copyright 2008, 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;
+
+import org.exoplatform.services.cache.CacheService;
+import org.exoplatform.services.cache.ExoCache;
+import org.gatein.common.logging.Logger;
+import org.gatein.common.logging.LoggerFactory;
+import org.gatein.wsrp.WSRPConsumer;
+import org.gatein.wsrp.consumer.registry.ConsumerCache;
+
+import java.util.Collection;
+import java.util.Collections;
+
+/** @author <a href="mailto:chris.laprun@jboss.com">Chris Laprun</a> */
+public class DistributedConsumerCache implements ConsumerCache
+{
+ private static final Logger log = LoggerFactory.getLogger(DistributedConsumerCache.class);
+
+ private ExoCache<String, WSRPConsumer> cache;
+ private boolean invalidated;
+
+ public DistributedConsumerCache(CacheService cacheService)
+ {
+ this.cache = cacheService.getCacheInstance(DistributedConsumerCache.class.getSimpleName());
+ }
+
+ public Collection<WSRPConsumer> getConsumers()
+ {
+ try
+ {
+ return (Collection<WSRPConsumer>)cache.getCachedObjects();
+ }
+ catch (Exception e)
+ {
+ log.debug(e);
+ return Collections.emptyList();
+ }
+ }
+
+ public WSRPConsumer getConsumer(String id)
+ {
+ return cache.get(id);
+ }
+
+ public WSRPConsumer removeConsumer(String id)
+ {
+ return cache.remove(id);
+ }
+
+ public void putConsumer(String id, WSRPConsumer consumer)
+ {
+ cache.put(id, consumer);
+ }
+
+ public void clear()
+ {
+ cache.clearCache();
+ }
+
+ public boolean isInvalidated()
+ {
+ return invalidated;
+ }
+
+ public void setInvalidated(boolean invalidated)
+ {
+ this.invalidated = invalidated;
+ }
+
+ public long getLastModified()
+ {
+ return 0;
+ }
+
+ public void initFromStorage()
+ {
+ //To change body of implemented methods use File | Settings | File Templates.
+ }
+
+ public void markAsModifiedNow()
+ {
+ //To change body of implemented methods use File | Settings | File Templates.
+ }
+}
Added: portal/trunk/wsrp-integration/extension-component/src/main/java/org/gatein/integration/wsrp/DistributedSessionRegistry.java
===================================================================
--- portal/trunk/wsrp-integration/extension-component/src/main/java/org/gatein/integration/wsrp/DistributedSessionRegistry.java (rev 0)
+++ portal/trunk/wsrp-integration/extension-component/src/main/java/org/gatein/integration/wsrp/DistributedSessionRegistry.java 2011-10-21 16:01:26 UTC (rev 7833)
@@ -0,0 +1,72 @@
+/*
+* JBoss, a division of Red Hat
+* Copyright 2008, 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;
+
+import org.exoplatform.services.cache.ExoCache;
+import org.gatein.common.logging.Logger;
+import org.gatein.common.logging.LoggerFactory;
+import org.gatein.wsrp.WSRPConsumer;
+import org.gatein.wsrp.consumer.handlers.ProducerSessionInformation;
+import org.gatein.wsrp.consumer.handlers.session.SessionRegistry;
+
+import java.util.Collection;
+import java.util.Collections;
+import java.util.HashSet;
+import java.util.Set;
+
+/** @author <a href="mailto:chris.laprun@jboss.com">Chris Laprun</a> */
+public class DistributedSessionRegistry implements SessionRegistry
+{
+ private static final Logger log = LoggerFactory.getLogger(DistributedConsumerCache.class);
+
+ private ExoCache<String, ProducerSessionInformation> cache;
+
+ public Set<ProducerSessionInformation> getAll()
+ {
+ try
+ {
+ return new HashSet<ProducerSessionInformation>
+ (cache.getCachedObjects());
+ }
+ catch (Exception e)
+ {
+ log.debug(e);
+ return Collections.emptySet();
+ }
+ }
+
+ public ProducerSessionInformation get(String sessionId)
+ {
+ return cache.get(sessionId);
+ }
+
+ public ProducerSessionInformation remove(String sessionId)
+ {
+ return cache.remove(sessionId);
+ }
+
+ public void put(String sessionId, ProducerSessionInformation sessionInformation)
+ {
+ cache.put(sessionId, sessionInformation);
+ }
+}
13 years, 2 months
gatein SVN: r7832 - portal/trunk.
by do-not-reply@jboss.org
Author: nscavell
Date: 2011-10-21 11:49:33 -0400 (Fri, 21 Oct 2011)
New Revision: 7832
Modified:
portal/trunk/pom.xml
Log:
beta05 seems available in nexus now.
Modified: portal/trunk/pom.xml
===================================================================
--- portal/trunk/pom.xml 2011-10-21 15:05:05 UTC (rev 7831)
+++ portal/trunk/pom.xml 2011-10-21 15:49:33 UTC (rev 7832)
@@ -49,7 +49,7 @@
<org.picketlink.idm>1.3.0.Alpha09</org.picketlink.idm>
<org.gatein.wsrp.version>2.1.0-Beta07</org.gatein.wsrp.version>
<org.gatein.mop.version>1.1.0-Beta06</org.gatein.mop.version>
- <org.gatein.mgmt.version>1.0.0-Beta04</org.gatein.mgmt.version>
+ <org.gatein.mgmt.version>1.0.0-Beta05</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>
13 years, 2 months
gatein SVN: r7831 - components/wsrp/tags/2.1.0-EPP520-Beta08/admin-gui.
by do-not-reply@jboss.org
Author: theute
Date: 2011-10-21 11:05:05 -0400 (Fri, 21 Oct 2011)
New Revision: 7831
Modified:
components/wsrp/tags/2.1.0-EPP520-Beta08/admin-gui/pom.xml
Log:
Using correct PBR version
Modified: components/wsrp/tags/2.1.0-EPP520-Beta08/admin-gui/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-EPP520-Beta08/admin-gui/pom.xml 2011-10-21 15:03:15 UTC (rev 7830)
+++ components/wsrp/tags/2.1.0-EPP520-Beta08/admin-gui/pom.xml 2011-10-21 15:05:05 UTC (rev 7831)
@@ -68,12 +68,12 @@
<dependency>
<groupId>org.jboss.portletbridge</groupId>
<artifactId>portletbridge-api</artifactId>
- <version>2.2.0-CR01.EPP52</version>
+ <version>2.2.0.CR01.EPP52</version>
</dependency>
<dependency>
<groupId>org.jboss.portletbridge</groupId>
<artifactId>portletbridge-impl</artifactId>
- <version>2.2.0-CR01</version>
+ <version>2.2.0.CR01.EPP52</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
13 years, 2 months
gatein SVN: r7830 - components/wsrp/tags/2.1.0-Beta08/admin-gui.
by do-not-reply@jboss.org
Author: theute
Date: 2011-10-21 11:03:15 -0400 (Fri, 21 Oct 2011)
New Revision: 7830
Modified:
components/wsrp/tags/2.1.0-Beta08/admin-gui/pom.xml
Log:
Rolling back wrong commit
Modified: components/wsrp/tags/2.1.0-Beta08/admin-gui/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-Beta08/admin-gui/pom.xml 2011-10-21 14:26:07 UTC (rev 7829)
+++ components/wsrp/tags/2.1.0-Beta08/admin-gui/pom.xml 2011-10-21 15:03:15 UTC (rev 7830)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-EPP520-Beta08</version>
+ <version>2.1.0-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-admin-gui</artifactId>
@@ -68,7 +68,7 @@
<dependency>
<groupId>org.jboss.portletbridge</groupId>
<artifactId>portletbridge-api</artifactId>
- <version>2.2.0.CR01.EPP52</version>
+ <version>2.2.0-CR01</version>
</dependency>
<dependency>
<groupId>org.jboss.portletbridge</groupId>
13 years, 2 months
gatein SVN: r7829 - components/wsrp/tags/2.1.0-Beta08/admin-gui.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2011-10-21 10:26:07 -0400 (Fri, 21 Oct 2011)
New Revision: 7829
Modified:
components/wsrp/tags/2.1.0-Beta08/admin-gui/pom.xml
Log:
Correct version of portletbridge
Modified: components/wsrp/tags/2.1.0-Beta08/admin-gui/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-Beta08/admin-gui/pom.xml 2011-10-21 14:03:35 UTC (rev 7828)
+++ components/wsrp/tags/2.1.0-Beta08/admin-gui/pom.xml 2011-10-21 14:26:07 UTC (rev 7829)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-EPP520-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-admin-gui</artifactId>
@@ -68,7 +68,7 @@
<dependency>
<groupId>org.jboss.portletbridge</groupId>
<artifactId>portletbridge-api</artifactId>
- <version>2.2.0-CR01</version>
+ <version>2.2.0.CR01.EPP52</version>
</dependency>
<dependency>
<groupId>org.jboss.portletbridge</groupId>
13 years, 2 months
gatein SVN: r7828 - in components/wsrp/tags: 2.1.0-EPP520-Beta08 and 15 other directories.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2011-10-21 10:03:35 -0400 (Fri, 21 Oct 2011)
New Revision: 7828
Added:
components/wsrp/tags/2.1.0-EPP520-Beta08/
Modified:
components/wsrp/tags/2.1.0-EPP520-Beta08/admin-gui/pom.xml
components/wsrp/tags/2.1.0-EPP520-Beta08/api/pom.xml
components/wsrp/tags/2.1.0-EPP520-Beta08/common/pom.xml
components/wsrp/tags/2.1.0-EPP520-Beta08/consumer/pom.xml
components/wsrp/tags/2.1.0-EPP520-Beta08/hibernate-impl/pom.xml
components/wsrp/tags/2.1.0-EPP520-Beta08/jcr-impl/pom.xml
components/wsrp/tags/2.1.0-EPP520-Beta08/pom.xml
components/wsrp/tags/2.1.0-EPP520-Beta08/producer/pom.xml
components/wsrp/tags/2.1.0-EPP520-Beta08/test/pom.xml
components/wsrp/tags/2.1.0-EPP520-Beta08/ws-security/jboss5/pom.xml
components/wsrp/tags/2.1.0-EPP520-Beta08/ws-security/pom.xml
components/wsrp/tags/2.1.0-EPP520-Beta08/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml
components/wsrp/tags/2.1.0-EPP520-Beta08/ws-security/wss/pom.xml
components/wsrp/tags/2.1.0-EPP520-Beta08/wsrp-producer-war/pom.xml
components/wsrp/tags/2.1.0-EPP520-Beta08/wsrp1-ws/pom.xml
components/wsrp/tags/2.1.0-EPP520-Beta08/wsrp2-ws/pom.xml
Log:
Release for EPP
Property changes on: components/wsrp/tags/2.1.0-EPP520-Beta08
___________________________________________________________________
Added: svn:ignore
+ target
.project
.classpath
.settings
.idea
*.iml
Added: svn:mergeinfo
+ /components/wsrp/branches/clustering:7284-7390
Modified: components/wsrp/tags/2.1.0-EPP520-Beta08/admin-gui/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-Beta08/admin-gui/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
+++ components/wsrp/tags/2.1.0-EPP520-Beta08/admin-gui/pom.xml 2011-10-21 14:03:35 UTC (rev 7828)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-EPP520-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-admin-gui</artifactId>
@@ -68,7 +68,7 @@
<dependency>
<groupId>org.jboss.portletbridge</groupId>
<artifactId>portletbridge-api</artifactId>
- <version>2.2.0-CR01</version>
+ <version>2.2.0-CR01.EPP52</version>
</dependency>
<dependency>
<groupId>org.jboss.portletbridge</groupId>
Modified: components/wsrp/tags/2.1.0-EPP520-Beta08/api/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-Beta08/api/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
+++ components/wsrp/tags/2.1.0-EPP520-Beta08/api/pom.xml 2011-10-21 14:03:35 UTC (rev 7828)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-EPP520-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-integration-api</artifactId>
Modified: components/wsrp/tags/2.1.0-EPP520-Beta08/common/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-Beta08/common/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
+++ components/wsrp/tags/2.1.0-EPP520-Beta08/common/pom.xml 2011-10-21 14:03:35 UTC (rev 7828)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-EPP520-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-common</artifactId>
Modified: components/wsrp/tags/2.1.0-EPP520-Beta08/consumer/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-Beta08/consumer/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
+++ components/wsrp/tags/2.1.0-EPP520-Beta08/consumer/pom.xml 2011-10-21 14:03:35 UTC (rev 7828)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-EPP520-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-consumer</artifactId>
Modified: components/wsrp/tags/2.1.0-EPP520-Beta08/hibernate-impl/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-Beta08/hibernate-impl/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
+++ components/wsrp/tags/2.1.0-EPP520-Beta08/hibernate-impl/pom.xml 2011-10-21 14:03:35 UTC (rev 7828)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-EPP520-Beta08</version>
</parent>
<groupId>org.gatein.wsrp</groupId>
Modified: components/wsrp/tags/2.1.0-EPP520-Beta08/jcr-impl/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-Beta08/jcr-impl/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
+++ components/wsrp/tags/2.1.0-EPP520-Beta08/jcr-impl/pom.xml 2011-10-21 14:03:35 UTC (rev 7828)
@@ -26,7 +26,7 @@
<parent>
<artifactId>wsrp-parent</artifactId>
<groupId>org.gatein.wsrp</groupId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-EPP520-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/tags/2.1.0-EPP520-Beta08/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-Beta08/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
+++ components/wsrp/tags/2.1.0-EPP520-Beta08/pom.xml 2011-10-21 14:03:35 UTC (rev 7828)
@@ -36,7 +36,7 @@
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-EPP520-Beta08</version>
<packaging>pom</packaging>
Modified: components/wsrp/tags/2.1.0-EPP520-Beta08/producer/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-Beta08/producer/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
+++ components/wsrp/tags/2.1.0-EPP520-Beta08/producer/pom.xml 2011-10-21 14:03:35 UTC (rev 7828)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-EPP520-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-producer-lib</artifactId>
Modified: components/wsrp/tags/2.1.0-EPP520-Beta08/test/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-Beta08/test/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
+++ components/wsrp/tags/2.1.0-EPP520-Beta08/test/pom.xml 2011-10-21 14:03:35 UTC (rev 7828)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-EPP520-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/tags/2.1.0-EPP520-Beta08/ws-security/jboss5/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-Beta08/ws-security/jboss5/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
+++ components/wsrp/tags/2.1.0-EPP520-Beta08/ws-security/jboss5/pom.xml 2011-10-21 14:03:35 UTC (rev 7828)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-wss-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-EPP520-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wss-jboss5</artifactId>
Modified: components/wsrp/tags/2.1.0-EPP520-Beta08/ws-security/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-Beta08/ws-security/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
+++ components/wsrp/tags/2.1.0-EPP520-Beta08/ws-security/pom.xml 2011-10-21 14:03:35 UTC (rev 7828)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-EPP520-Beta08</version>
</parent>
<artifactId>wsrp-wss-parent</artifactId>
Modified: components/wsrp/tags/2.1.0-EPP520-Beta08/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-Beta08/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
+++ components/wsrp/tags/2.1.0-EPP520-Beta08/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml 2011-10-21 14:03:35 UTC (rev 7828)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-wss-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-EPP520-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-producer-jb5wss</artifactId>
Modified: components/wsrp/tags/2.1.0-EPP520-Beta08/ws-security/wss/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-Beta08/ws-security/wss/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
+++ components/wsrp/tags/2.1.0-EPP520-Beta08/ws-security/wss/pom.xml 2011-10-21 14:03:35 UTC (rev 7828)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-wss-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-EPP520-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wss</artifactId>
Modified: components/wsrp/tags/2.1.0-EPP520-Beta08/wsrp-producer-war/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-Beta08/wsrp-producer-war/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
+++ components/wsrp/tags/2.1.0-EPP520-Beta08/wsrp-producer-war/pom.xml 2011-10-21 14:03:35 UTC (rev 7828)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-EPP520-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/tags/2.1.0-EPP520-Beta08/wsrp1-ws/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-Beta08/wsrp1-ws/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
+++ components/wsrp/tags/2.1.0-EPP520-Beta08/wsrp1-ws/pom.xml 2011-10-21 14:03:35 UTC (rev 7828)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-EPP520-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wsrp1-ws</artifactId>
Modified: components/wsrp/tags/2.1.0-EPP520-Beta08/wsrp2-ws/pom.xml
===================================================================
--- components/wsrp/tags/2.1.0-Beta08/wsrp2-ws/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
+++ components/wsrp/tags/2.1.0-EPP520-Beta08/wsrp2-ws/pom.xml 2011-10-21 14:03:35 UTC (rev 7828)
@@ -26,7 +26,7 @@
<parent>
<artifactId>wsrp-parent</artifactId>
<groupId>org.gatein.wsrp</groupId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-EPP520-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wsrp2-ws</artifactId>
13 years, 2 months
gatein SVN: r7827 - in components/wsrp/trunk: admin-gui and 14 other directories.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2011-10-21 08:05:40 -0400 (Fri, 21 Oct 2011)
New Revision: 7827
Modified:
components/wsrp/trunk/admin-gui/pom.xml
components/wsrp/trunk/api/pom.xml
components/wsrp/trunk/common/pom.xml
components/wsrp/trunk/consumer/pom.xml
components/wsrp/trunk/hibernate-impl/pom.xml
components/wsrp/trunk/jcr-impl/pom.xml
components/wsrp/trunk/pom.xml
components/wsrp/trunk/producer/pom.xml
components/wsrp/trunk/test/pom.xml
components/wsrp/trunk/ws-security/jboss5/pom.xml
components/wsrp/trunk/ws-security/pom.xml
components/wsrp/trunk/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml
components/wsrp/trunk/ws-security/wss/pom.xml
components/wsrp/trunk/wsrp-producer-war/pom.xml
components/wsrp/trunk/wsrp1-ws/pom.xml
components/wsrp/trunk/wsrp2-ws/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: components/wsrp/trunk/admin-gui/pom.xml
===================================================================
--- components/wsrp/trunk/admin-gui/pom.xml 2011-10-21 12:05:26 UTC (rev 7826)
+++ components/wsrp/trunk/admin-gui/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-Beta09-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-admin-gui</artifactId>
Modified: components/wsrp/trunk/api/pom.xml
===================================================================
--- components/wsrp/trunk/api/pom.xml 2011-10-21 12:05:26 UTC (rev 7826)
+++ components/wsrp/trunk/api/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-Beta09-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-integration-api</artifactId>
Modified: components/wsrp/trunk/common/pom.xml
===================================================================
--- components/wsrp/trunk/common/pom.xml 2011-10-21 12:05:26 UTC (rev 7826)
+++ components/wsrp/trunk/common/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-Beta09-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-common</artifactId>
Modified: components/wsrp/trunk/consumer/pom.xml
===================================================================
--- components/wsrp/trunk/consumer/pom.xml 2011-10-21 12:05:26 UTC (rev 7826)
+++ components/wsrp/trunk/consumer/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-Beta09-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-consumer</artifactId>
Modified: components/wsrp/trunk/hibernate-impl/pom.xml
===================================================================
--- components/wsrp/trunk/hibernate-impl/pom.xml 2011-10-21 12:05:26 UTC (rev 7826)
+++ components/wsrp/trunk/hibernate-impl/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-Beta09-SNAPSHOT</version>
</parent>
<groupId>org.gatein.wsrp</groupId>
Modified: components/wsrp/trunk/jcr-impl/pom.xml
===================================================================
--- components/wsrp/trunk/jcr-impl/pom.xml 2011-10-21 12:05:26 UTC (rev 7826)
+++ components/wsrp/trunk/jcr-impl/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
@@ -26,7 +26,7 @@
<parent>
<artifactId>wsrp-parent</artifactId>
<groupId>org.gatein.wsrp</groupId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-Beta09-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/trunk/pom.xml
===================================================================
--- components/wsrp/trunk/pom.xml 2011-10-21 12:05:26 UTC (rev 7826)
+++ components/wsrp/trunk/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
@@ -36,7 +36,7 @@
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-Beta09-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.0-...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/wsrp/tags/2.1.0-Beta08</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/components/wsrp/tags/2.1.0-Beta08</url>
+ <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>
</scm>
<properties>
Modified: components/wsrp/trunk/producer/pom.xml
===================================================================
--- components/wsrp/trunk/producer/pom.xml 2011-10-21 12:05:26 UTC (rev 7826)
+++ components/wsrp/trunk/producer/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-Beta09-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-producer-lib</artifactId>
Modified: components/wsrp/trunk/test/pom.xml
===================================================================
--- components/wsrp/trunk/test/pom.xml 2011-10-21 12:05:26 UTC (rev 7826)
+++ components/wsrp/trunk/test/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-Beta09-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/trunk/ws-security/jboss5/pom.xml
===================================================================
--- components/wsrp/trunk/ws-security/jboss5/pom.xml 2011-10-21 12:05:26 UTC (rev 7826)
+++ components/wsrp/trunk/ws-security/jboss5/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-wss-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-Beta09-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wss-jboss5</artifactId>
Modified: components/wsrp/trunk/ws-security/pom.xml
===================================================================
--- components/wsrp/trunk/ws-security/pom.xml 2011-10-21 12:05:26 UTC (rev 7826)
+++ components/wsrp/trunk/ws-security/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-Beta09-SNAPSHOT</version>
</parent>
<artifactId>wsrp-wss-parent</artifactId>
Modified: components/wsrp/trunk/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml
===================================================================
--- components/wsrp/trunk/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml 2011-10-21 12:05:26 UTC (rev 7826)
+++ components/wsrp/trunk/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-wss-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-Beta09-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-producer-jb5wss</artifactId>
Modified: components/wsrp/trunk/ws-security/wss/pom.xml
===================================================================
--- components/wsrp/trunk/ws-security/wss/pom.xml 2011-10-21 12:05:26 UTC (rev 7826)
+++ components/wsrp/trunk/ws-security/wss/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-wss-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-Beta09-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wss</artifactId>
Modified: components/wsrp/trunk/wsrp-producer-war/pom.xml
===================================================================
--- components/wsrp/trunk/wsrp-producer-war/pom.xml 2011-10-21 12:05:26 UTC (rev 7826)
+++ components/wsrp/trunk/wsrp-producer-war/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-Beta09-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/trunk/wsrp1-ws/pom.xml
===================================================================
--- components/wsrp/trunk/wsrp1-ws/pom.xml 2011-10-21 12:05:26 UTC (rev 7826)
+++ components/wsrp/trunk/wsrp1-ws/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-Beta09-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wsrp1-ws</artifactId>
Modified: components/wsrp/trunk/wsrp2-ws/pom.xml
===================================================================
--- components/wsrp/trunk/wsrp2-ws/pom.xml 2011-10-21 12:05:26 UTC (rev 7826)
+++ components/wsrp/trunk/wsrp2-ws/pom.xml 2011-10-21 12:05:40 UTC (rev 7827)
@@ -26,7 +26,7 @@
<parent>
<artifactId>wsrp-parent</artifactId>
<groupId>org.gatein.wsrp</groupId>
- <version>2.1.0-Beta08</version>
+ <version>2.1.0-Beta09-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wsrp2-ws</artifactId>
13 years, 2 months
gatein SVN: r7826 - components/wsrp/tags.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2011-10-21 08:05:26 -0400 (Fri, 21 Oct 2011)
New Revision: 7826
Added:
components/wsrp/tags/2.1.0-Beta08/
Log:
[maven-release-plugin] copy for tag 2.1.0-Beta08
13 years, 2 months
gatein SVN: r7825 - in components/wsrp/trunk: admin-gui and 14 other directories.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2011-10-21 08:05:14 -0400 (Fri, 21 Oct 2011)
New Revision: 7825
Modified:
components/wsrp/trunk/admin-gui/pom.xml
components/wsrp/trunk/api/pom.xml
components/wsrp/trunk/common/pom.xml
components/wsrp/trunk/consumer/pom.xml
components/wsrp/trunk/hibernate-impl/pom.xml
components/wsrp/trunk/jcr-impl/pom.xml
components/wsrp/trunk/pom.xml
components/wsrp/trunk/producer/pom.xml
components/wsrp/trunk/test/pom.xml
components/wsrp/trunk/ws-security/jboss5/pom.xml
components/wsrp/trunk/ws-security/pom.xml
components/wsrp/trunk/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml
components/wsrp/trunk/ws-security/wss/pom.xml
components/wsrp/trunk/wsrp-producer-war/pom.xml
components/wsrp/trunk/wsrp1-ws/pom.xml
components/wsrp/trunk/wsrp2-ws/pom.xml
Log:
[maven-release-plugin] prepare release 2.1.0-Beta08
Modified: components/wsrp/trunk/admin-gui/pom.xml
===================================================================
--- components/wsrp/trunk/admin-gui/pom.xml 2011-10-21 11:37:12 UTC (rev 7824)
+++ components/wsrp/trunk/admin-gui/pom.xml 2011-10-21 12:05:14 UTC (rev 7825)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08-SNAPSHOT</version>
+ <version>2.1.0-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-admin-gui</artifactId>
Modified: components/wsrp/trunk/api/pom.xml
===================================================================
--- components/wsrp/trunk/api/pom.xml 2011-10-21 11:37:12 UTC (rev 7824)
+++ components/wsrp/trunk/api/pom.xml 2011-10-21 12:05:14 UTC (rev 7825)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08-SNAPSHOT</version>
+ <version>2.1.0-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-integration-api</artifactId>
Modified: components/wsrp/trunk/common/pom.xml
===================================================================
--- components/wsrp/trunk/common/pom.xml 2011-10-21 11:37:12 UTC (rev 7824)
+++ components/wsrp/trunk/common/pom.xml 2011-10-21 12:05:14 UTC (rev 7825)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08-SNAPSHOT</version>
+ <version>2.1.0-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-common</artifactId>
Modified: components/wsrp/trunk/consumer/pom.xml
===================================================================
--- components/wsrp/trunk/consumer/pom.xml 2011-10-21 11:37:12 UTC (rev 7824)
+++ components/wsrp/trunk/consumer/pom.xml 2011-10-21 12:05:14 UTC (rev 7825)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08-SNAPSHOT</version>
+ <version>2.1.0-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-consumer</artifactId>
Modified: components/wsrp/trunk/hibernate-impl/pom.xml
===================================================================
--- components/wsrp/trunk/hibernate-impl/pom.xml 2011-10-21 11:37:12 UTC (rev 7824)
+++ components/wsrp/trunk/hibernate-impl/pom.xml 2011-10-21 12:05:14 UTC (rev 7825)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08-SNAPSHOT</version>
+ <version>2.1.0-Beta08</version>
</parent>
<groupId>org.gatein.wsrp</groupId>
Modified: components/wsrp/trunk/jcr-impl/pom.xml
===================================================================
--- components/wsrp/trunk/jcr-impl/pom.xml 2011-10-21 11:37:12 UTC (rev 7824)
+++ components/wsrp/trunk/jcr-impl/pom.xml 2011-10-21 12:05:14 UTC (rev 7825)
@@ -26,7 +26,7 @@
<parent>
<artifactId>wsrp-parent</artifactId>
<groupId>org.gatein.wsrp</groupId>
- <version>2.1.0-Beta08-SNAPSHOT</version>
+ <version>2.1.0-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/trunk/pom.xml
===================================================================
--- components/wsrp/trunk/pom.xml 2011-10-21 11:37:12 UTC (rev 7824)
+++ components/wsrp/trunk/pom.xml 2011-10-21 12:05:14 UTC (rev 7825)
@@ -21,8 +21,7 @@
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
-<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>
@@ -37,7 +36,7 @@
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08-SNAPSHOT</version>
+ <version>2.1.0-Beta08</version>
<packaging>pom</packaging>
@@ -48,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/tags/2.1.0-...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/wsrp/tags/2.1.0-Beta08</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/components/wsrp/tags/2.1.0-Beta08</url>
</scm>
<properties>
Modified: components/wsrp/trunk/producer/pom.xml
===================================================================
--- components/wsrp/trunk/producer/pom.xml 2011-10-21 11:37:12 UTC (rev 7824)
+++ components/wsrp/trunk/producer/pom.xml 2011-10-21 12:05:14 UTC (rev 7825)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08-SNAPSHOT</version>
+ <version>2.1.0-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-producer-lib</artifactId>
Modified: components/wsrp/trunk/test/pom.xml
===================================================================
--- components/wsrp/trunk/test/pom.xml 2011-10-21 11:37:12 UTC (rev 7824)
+++ components/wsrp/trunk/test/pom.xml 2011-10-21 12:05:14 UTC (rev 7825)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08-SNAPSHOT</version>
+ <version>2.1.0-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/trunk/ws-security/jboss5/pom.xml
===================================================================
--- components/wsrp/trunk/ws-security/jboss5/pom.xml 2011-10-21 11:37:12 UTC (rev 7824)
+++ components/wsrp/trunk/ws-security/jboss5/pom.xml 2011-10-21 12:05:14 UTC (rev 7825)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-wss-parent</artifactId>
- <version>2.1.0-Beta08-SNAPSHOT</version>
+ <version>2.1.0-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wss-jboss5</artifactId>
Modified: components/wsrp/trunk/ws-security/pom.xml
===================================================================
--- components/wsrp/trunk/ws-security/pom.xml 2011-10-21 11:37:12 UTC (rev 7824)
+++ components/wsrp/trunk/ws-security/pom.xml 2011-10-21 12:05:14 UTC (rev 7825)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08-SNAPSHOT</version>
+ <version>2.1.0-Beta08</version>
</parent>
<artifactId>wsrp-wss-parent</artifactId>
Modified: components/wsrp/trunk/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml
===================================================================
--- components/wsrp/trunk/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml 2011-10-21 11:37:12 UTC (rev 7824)
+++ components/wsrp/trunk/ws-security/wsrp-producer-jb5wss-producer-war/pom.xml 2011-10-21 12:05:14 UTC (rev 7825)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-wss-parent</artifactId>
- <version>2.1.0-Beta08-SNAPSHOT</version>
+ <version>2.1.0-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-producer-jb5wss</artifactId>
Modified: components/wsrp/trunk/ws-security/wss/pom.xml
===================================================================
--- components/wsrp/trunk/ws-security/wss/pom.xml 2011-10-21 11:37:12 UTC (rev 7824)
+++ components/wsrp/trunk/ws-security/wss/pom.xml 2011-10-21 12:05:14 UTC (rev 7825)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-wss-parent</artifactId>
- <version>2.1.0-Beta08-SNAPSHOT</version>
+ <version>2.1.0-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wss</artifactId>
Modified: components/wsrp/trunk/wsrp-producer-war/pom.xml
===================================================================
--- components/wsrp/trunk/wsrp-producer-war/pom.xml 2011-10-21 11:37:12 UTC (rev 7824)
+++ components/wsrp/trunk/wsrp-producer-war/pom.xml 2011-10-21 12:05:14 UTC (rev 7825)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08-SNAPSHOT</version>
+ <version>2.1.0-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: components/wsrp/trunk/wsrp1-ws/pom.xml
===================================================================
--- components/wsrp/trunk/wsrp1-ws/pom.xml 2011-10-21 11:37:12 UTC (rev 7824)
+++ components/wsrp/trunk/wsrp1-ws/pom.xml 2011-10-21 12:05:14 UTC (rev 7825)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.wsrp</groupId>
<artifactId>wsrp-parent</artifactId>
- <version>2.1.0-Beta08-SNAPSHOT</version>
+ <version>2.1.0-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wsrp1-ws</artifactId>
Modified: components/wsrp/trunk/wsrp2-ws/pom.xml
===================================================================
--- components/wsrp/trunk/wsrp2-ws/pom.xml 2011-10-21 11:37:12 UTC (rev 7824)
+++ components/wsrp/trunk/wsrp2-ws/pom.xml 2011-10-21 12:05:14 UTC (rev 7825)
@@ -26,7 +26,7 @@
<parent>
<artifactId>wsrp-parent</artifactId>
<groupId>org.gatein.wsrp</groupId>
- <version>2.1.0-Beta08-SNAPSHOT</version>
+ <version>2.1.0-Beta08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wsrp-wsrp2-ws</artifactId>
13 years, 2 months