JBossWS SVN: r17464 - in container/jboss71/branches/jbossws-jboss713: server-integration/src/main/java/org/jboss/as/webservices/publish and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2013-04-08 05:08:50 -0400 (Mon, 08 Apr 2013)
New Revision: 17464
Modified:
container/jboss71/branches/jbossws-jboss713/pom.xml
container/jboss71/branches/jbossws-jboss713/server-integration/src/main/java/org/jboss/as/webservices/publish/EndpointPublisherImpl.java
container/jboss71/branches/jbossws-jboss713/server-integration/src/main/java/org/jboss/as/webservices/publish/WSEndpointDeploymentUnit.java
container/jboss71/branches/jbossws-jboss713/server-integration/src/main/java/org/jboss/as/webservices/service/EndpointPublishService.java
Log:
[JBWS-3611]:fix the jboss713 IL and upgrade the spi and common
Modified: container/jboss71/branches/jbossws-jboss713/pom.xml
===================================================================
--- container/jboss71/branches/jbossws-jboss713/pom.xml 2013-04-08 09:06:14 UTC (rev 17463)
+++ container/jboss71/branches/jbossws-jboss713/pom.xml 2013-04-08 09:08:50 UTC (rev 17464)
@@ -51,8 +51,8 @@
<properties>
<jbossws.api.version>1.0.1.Final</jbossws.api.version>
- <jbossws.spi.version>2.1.1-SNAPSHOT</jbossws.spi.version>
- <jbossws.common.version>2.1.1-SNAPSHOT</jbossws.common.version>
+ <jbossws.spi.version>2.2.0-SNAPSHOT</jbossws.spi.version>
+ <jbossws.common.version>2.2.0-SNAPSHOT</jbossws.common.version>
<jboss.msc.version>1.0.2.GA</jboss.msc.version>
<jboss.version>7.1.3.Final</jboss.version>
<jboss.jaxws.api.version>2.0.1.Final</jboss.jaxws.api.version>
Modified: container/jboss71/branches/jbossws-jboss713/server-integration/src/main/java/org/jboss/as/webservices/publish/EndpointPublisherImpl.java
===================================================================
--- container/jboss71/branches/jbossws-jboss713/server-integration/src/main/java/org/jboss/as/webservices/publish/EndpointPublisherImpl.java 2013-04-08 09:06:14 UTC (rev 17463)
+++ container/jboss71/branches/jbossws-jboss713/server-integration/src/main/java/org/jboss/as/webservices/publish/EndpointPublisherImpl.java 2013-04-08 09:08:50 UTC (rev 17464)
@@ -58,6 +58,7 @@
import org.jboss.wsf.spi.deployment.DeploymentAspectManager;
import org.jboss.wsf.spi.deployment.Endpoint;
import org.jboss.wsf.spi.deployment.WSFServlet;
+import org.jboss.wsf.spi.metadata.webservices.JBossWebservicesMetaData;
import org.jboss.wsf.spi.metadata.webservices.WebservicesMetaData;
import org.jboss.wsf.spi.publish.Context;
import org.jboss.wsf.spi.publish.EndpointPublisher;
@@ -83,18 +84,28 @@
this.runningInService = runningInService;
}
+
@Override
public Context publish(String context, ClassLoader loader, Map<String, String> urlPatternToClassNameMap) throws Exception {
- return publish(getBaseTarget(), context, loader, urlPatternToClassNameMap, null);
+ return publish(getBaseTarget(), context, loader, urlPatternToClassNameMap, null, null, null);
}
@Override
public Context publish(String context, ClassLoader loader, Map<String, String> urlPatternToClassNameMap, WebservicesMetaData metadata) throws Exception {
- return publish(getBaseTarget(), context, loader, urlPatternToClassNameMap, metadata);
+ return publish(getBaseTarget(), context, loader, urlPatternToClassNameMap, null, metadata, null);
}
+
- public Context publish(ServiceTarget target, String context, ClassLoader loader, Map<String, String> urlPatternToClassNameMap, WebservicesMetaData metadata) throws Exception {
- WSEndpointDeploymentUnit unit = new WSEndpointDeploymentUnit(loader, context, urlPatternToClassNameMap, metadata);
+ @Override
+ public Context publish(String context, ClassLoader loader, Map<String, String> urlPatternToClassNameMap,
+ WebservicesMetaData metadata, JBossWebservicesMetaData jbwsMetadata) throws Exception {
+ return publish(getBaseTarget(), context, loader, urlPatternToClassNameMap, null, metadata, jbwsMetadata);
+ }
+
+ public Context publish(ServiceTarget target, String context, ClassLoader loader,
+ Map<String, String> urlPatternToClassNameMap, JBossWebMetaData jbwmd, WebservicesMetaData metadata, JBossWebservicesMetaData jbwsMetadata)
+ throws Exception {
+ WSEndpointDeploymentUnit unit = new WSEndpointDeploymentUnit(loader, context, urlPatternToClassNameMap, jbwmd, metadata, jbwsMetadata);
return new Context(context, publish(target, unit));
}
@@ -279,4 +290,6 @@
public void destroyInstance(Object o) throws IllegalAccessException, InvocationTargetException {
}
}
+
+
}
Modified: container/jboss71/branches/jbossws-jboss713/server-integration/src/main/java/org/jboss/as/webservices/publish/WSEndpointDeploymentUnit.java
===================================================================
--- container/jboss71/branches/jbossws-jboss713/server-integration/src/main/java/org/jboss/as/webservices/publish/WSEndpointDeploymentUnit.java 2013-04-08 09:06:14 UTC (rev 17463)
+++ container/jboss71/branches/jbossws-jboss713/server-integration/src/main/java/org/jboss/as/webservices/publish/WSEndpointDeploymentUnit.java 2013-04-08 09:08:50 UTC (rev 17464)
@@ -35,6 +35,7 @@
import org.jboss.metadata.web.jboss.JBossWebMetaData;
import org.jboss.msc.service.ServiceName;
import org.jboss.msc.service.ServiceRegistry;
+import org.jboss.wsf.spi.metadata.webservices.JBossWebservicesMetaData;
import org.jboss.wsf.spi.metadata.webservices.WebservicesMetaData;
public class WSEndpointDeploymentUnit extends SimpleAttachable implements DeploymentUnit {
@@ -42,32 +43,35 @@
private String deploymentName;
public WSEndpointDeploymentUnit(ClassLoader loader, String context, Map<String,String> urlPatternToClassName, WebservicesMetaData metadata) {
- this(loader, context, urlPatternToClassName, new JBossWebMetaData(), metadata);
- }
+ this(loader, context, urlPatternToClassName, new JBossWebMetaData(), metadata, null);
+ }
- public WSEndpointDeploymentUnit(ClassLoader loader, String context, Map<String, String> urlPatternToClassName,
- JBossWebMetaData jbossWebMetaData, WebservicesMetaData metadata) {
- this.deploymentName = context + ".deployment";
+ public WSEndpointDeploymentUnit(ClassLoader loader, String context, Map<String, String> urlPatternToClassName,
+ JBossWebMetaData jbossWebMetaData, WebservicesMetaData metadata, JBossWebservicesMetaData jbwsMetaData) {
+ this.deploymentName = context + ".deployment";
- JAXWSDeployment jaxwsDeployment = new JAXWSDeployment();
- if (jbossWebMetaData == null) {
- jbossWebMetaData = new JBossWebMetaData();
- }
- jbossWebMetaData.setContextRoot(context);
- String endpointName = null;
- String className = null;
- for (String urlPattern : urlPatternToClassName.keySet()) {
- className = urlPatternToClassName.get(urlPattern);
- endpointName = getShortName(className, urlPattern);
- addEndpoint(jbossWebMetaData, jaxwsDeployment, endpointName, className, urlPattern);
- }
- this.putAttachment(WSAttachmentKeys.CLASSLOADER_KEY, loader);
- this.putAttachment(WSAttachmentKeys.JAXWS_ENDPOINTS_KEY, jaxwsDeployment);
- this.putAttachment(WSAttachmentKeys.JBOSSWEB_METADATA_KEY, jbossWebMetaData);
- if (metadata != null) {
- this.putAttachment(WSAttachmentKeys.WEBSERVICES_METADATA_KEY, metadata);
- }
- }
+ JAXWSDeployment jaxwsDeployment = new JAXWSDeployment();
+ if (jbossWebMetaData == null) {
+ jbossWebMetaData = new JBossWebMetaData();
+ }
+ jbossWebMetaData.setContextRoot(context);
+ String endpointName = null;
+ String className = null;
+ for (String urlPattern : urlPatternToClassName.keySet()) {
+ className = urlPatternToClassName.get(urlPattern);
+ endpointName = getShortName(className, urlPattern);
+ addEndpoint(jbossWebMetaData, jaxwsDeployment, endpointName, className, urlPattern);
+ }
+ this.putAttachment(WSAttachmentKeys.CLASSLOADER_KEY, loader);
+ this.putAttachment(WSAttachmentKeys.JAXWS_ENDPOINTS_KEY, jaxwsDeployment);
+ this.putAttachment(WSAttachmentKeys.JBOSSWEB_METADATA_KEY, jbossWebMetaData);
+ if (metadata != null) {
+ this.putAttachment(WSAttachmentKeys.WEBSERVICES_METADATA_KEY, metadata);
+ }
+ if (jbwsMetaData != null) {
+ this.putAttachment(WSAttachmentKeys.JBOSS_WEBSERVICES_METADATA_KEY, jbwsMetaData);
+ }
+ }
private String getShortName(String className, String urlPattern) {
final StringTokenizer st = new StringTokenizer(urlPattern, "/*");
Modified: container/jboss71/branches/jbossws-jboss713/server-integration/src/main/java/org/jboss/as/webservices/service/EndpointPublishService.java
===================================================================
--- container/jboss71/branches/jbossws-jboss713/server-integration/src/main/java/org/jboss/as/webservices/service/EndpointPublishService.java 2013-04-08 09:06:14 UTC (rev 17463)
+++ container/jboss71/branches/jbossws-jboss713/server-integration/src/main/java/org/jboss/as/webservices/service/EndpointPublishService.java 2013-04-08 09:08:50 UTC (rev 17464)
@@ -29,6 +29,7 @@
import org.jboss.as.web.WebSubsystemServices;
import org.jboss.as.webservices.publish.EndpointPublisherImpl;
import org.jboss.as.webservices.util.WSServices;
+import org.jboss.metadata.web.jboss.JBossWebMetaData;
import org.jboss.msc.service.Service;
import org.jboss.msc.service.ServiceBuilder;
import org.jboss.msc.service.ServiceBuilder.DependencyType;
@@ -39,6 +40,8 @@
import org.jboss.msc.service.StartException;
import org.jboss.msc.service.StopContext;
import org.jboss.msc.value.InjectedValue;
+import org.jboss.wsf.spi.metadata.webservices.JBossWebservicesMetaData;
+import org.jboss.wsf.spi.metadata.webservices.WebservicesMetaData;
import org.jboss.wsf.spi.publish.Context;
/**
@@ -55,16 +58,22 @@
private final ClassLoader loader;
private final String context;
private final Map<String,String> urlPatternToClassName;
+ private final JBossWebMetaData jbwmd;
+ private final WebservicesMetaData wsmd;
+ private final JBossWebservicesMetaData jbwsmd;
private final InjectedValue<VirtualHost> hostInjector = new InjectedValue<VirtualHost>();
-
+
private EndpointPublishService(final String context, final ClassLoader loader,
- final Map<String,String> urlPatternToClassName) {
- this.name = WSServices.ENDPOINT_PUBLISH_SERVICE.append(context);
- this.loader = loader;
- this.context = context;
- this.urlPatternToClassName = urlPatternToClassName;
- }
+ final Map<String,String> urlPatternToClassName, JBossWebMetaData jbwmd, WebservicesMetaData wsmd, JBossWebservicesMetaData jbwsmd) {
+ this.name = WSServices.ENDPOINT_PUBLISH_SERVICE.append(context);
+ this.loader = loader;
+ this.context = context;
+ this.urlPatternToClassName = urlPatternToClassName;
+ this.jbwmd = jbwmd;
+ this.wsmd = wsmd;
+ this.jbwsmd = jbwsmd;
+ }
@Override
public Context getValue() {
@@ -84,7 +93,7 @@
ROOT_LOGGER.starting(name);
try {
EndpointPublisherImpl publisher = new EndpointPublisherImpl(hostInjector.getValue().getHost(), true);
- wsctx = publisher.publish(ctx.getChildTarget(), context, loader, urlPatternToClassName, null);
+ wsctx = publisher.publish(ctx.getChildTarget(), context, loader, urlPatternToClassName, jbwmd, wsmd, jbwsmd);
} catch (Exception e) {
throw new StartException(e);
}
@@ -101,22 +110,29 @@
}
}
- public static ServiceBuilder<Context> createServiceBuilder(final ServiceTarget serviceTarget, final String context,
- final ClassLoader loader, final String hostName, final Map<String,String> urlPatternToClassName) {
- final EndpointPublishService service = new EndpointPublishService(context, loader, urlPatternToClassName);
- final ServiceBuilder<Context> builder = serviceTarget.addService(service.getName(), service);
- builder.addDependency(DependencyType.REQUIRED, WSServices.CONFIG_SERVICE);
- builder.addDependency(DependencyType.REQUIRED, WSServices.REGISTRY_SERVICE);
- builder.addDependency(WebSubsystemServices.JBOSS_WEB_HOST.append(hostName), VirtualHost.class,
- service.getHostInjector());
- return builder;
- }
+ public static ServiceBuilder<Context> createServiceBuilder(final ServiceTarget serviceTarget, final String context, final ClassLoader loader, final String hostName,
+ final Map<String, String> urlPatternToClassName)
+ {
+ return createServiceBuilder(serviceTarget, context, loader, hostName, urlPatternToClassName, null, null, null);
+ }
- public static void install(final ServiceTarget serviceTarget, final String context, final ClassLoader loader,
- final String hostName, final Map<String,String> urlPatternToClassName) {
- ServiceBuilder<Context> builder = createServiceBuilder(serviceTarget, context, loader, hostName, urlPatternToClassName);
- builder.setInitialMode(Mode.ACTIVE);
- builder.install();
- }
+ public static ServiceBuilder<Context> createServiceBuilder(final ServiceTarget serviceTarget, final String context, final ClassLoader loader, final String hostName,
+ final Map<String, String> urlPatternToClassName, JBossWebMetaData jbwmd, WebservicesMetaData wsmd, JBossWebservicesMetaData jbwsmd)
+ {
+ final EndpointPublishService service = new EndpointPublishService(context, loader, urlPatternToClassName, jbwmd, wsmd, jbwsmd);
+ final ServiceBuilder<Context> builder = serviceTarget.addService(service.getName(), service);
+ builder.addDependency(DependencyType.REQUIRED, WSServices.CONFIG_SERVICE);
+ builder.addDependency(DependencyType.REQUIRED, WSServices.REGISTRY_SERVICE);
+ builder.addDependency(WebSubsystemServices.JBOSS_WEB_HOST.append(hostName), VirtualHost.class, service.getHostInjector());
+ return builder;
+ }
+ public static void install(final ServiceTarget serviceTarget, final String context, final ClassLoader loader, final String hostName,
+ final Map<String, String> urlPatternToClassName)
+ {
+ ServiceBuilder<Context> builder = createServiceBuilder(serviceTarget, context, loader, hostName, urlPatternToClassName);
+ builder.setInitialMode(Mode.ACTIVE);
+ builder.install();
+ }
+
}
11 years, 11 months
JBossWS SVN: r17463 - in container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices: metadata and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2013-04-08 05:06:14 -0400 (Mon, 08 Apr 2013)
New Revision: 17463
Added:
container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/metadata/JBossWebservicesPropertyReplaceFactory.java
container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/metadata/WebservicesPropertyReplaceFactory.java
Modified:
container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/deployers/JBossWebservicesDescriptorDeploymentProcessor.java
container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/deployers/WebservicesDescriptorDeploymentProcessor.java
Log:
[JBWS-3524]:fix the jboss712 IL
Modified: container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/deployers/JBossWebservicesDescriptorDeploymentProcessor.java
===================================================================
--- container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/deployers/JBossWebservicesDescriptorDeploymentProcessor.java 2013-04-08 09:04:06 UTC (rev 17462)
+++ container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/deployers/JBossWebservicesDescriptorDeploymentProcessor.java 2013-04-08 09:06:14 UTC (rev 17463)
@@ -21,16 +21,17 @@
*/
package org.jboss.as.webservices.deployers;
+import org.jboss.as.ee.structure.JBossDescriptorPropertyReplacement;
import org.jboss.as.server.deployment.Attachments;
import org.jboss.as.server.deployment.DeploymentPhaseContext;
import org.jboss.as.server.deployment.DeploymentUnit;
import org.jboss.as.server.deployment.DeploymentUnitProcessingException;
import org.jboss.as.server.deployment.DeploymentUnitProcessor;
import org.jboss.as.server.deployment.module.ResourceRoot;
+import org.jboss.as.webservices.metadata.JBossWebservicesPropertyReplaceFactory;
import org.jboss.as.webservices.util.VirtualFileAdaptor;
import org.jboss.as.webservices.util.WSAttachmentKeys;
import org.jboss.wsf.spi.deployment.UnifiedVirtualFile;
-import org.jboss.wsf.spi.metadata.webservices.JBossWebservicesFactory;
import org.jboss.wsf.spi.metadata.webservices.JBossWebservicesMetaData;
/**
@@ -44,10 +45,14 @@
final DeploymentUnit unit = phaseContext.getDeploymentUnit();
final ResourceRoot deploymentRoot = unit.getAttachment(Attachments.DEPLOYMENT_ROOT);
final UnifiedVirtualFile virtualFile = new VirtualFileAdaptor(deploymentRoot.getRoot());
- final JBossWebservicesMetaData jbossWebservicesMD = JBossWebservicesFactory.loadFromVFSRoot(virtualFile);
+ final JBossWebservicesPropertyReplaceFactory webservicesFactory = new JBossWebservicesPropertyReplaceFactory(
+ null, JBossDescriptorPropertyReplacement.propertyReplacer(unit));
+ final JBossWebservicesMetaData jbossWebservicesMD = webservicesFactory.loadFromVFSRoot(virtualFile);
if (jbossWebservicesMD != null) {
unit.putAttachment(WSAttachmentKeys.JBOSS_WEBSERVICES_METADATA_KEY, jbossWebservicesMD);
}
+
+
}
public void undeploy(final DeploymentUnit unit) {
Modified: container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/deployers/WebservicesDescriptorDeploymentProcessor.java
===================================================================
--- container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/deployers/WebservicesDescriptorDeploymentProcessor.java 2013-04-08 09:04:06 UTC (rev 17462)
+++ container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/deployers/WebservicesDescriptorDeploymentProcessor.java 2013-04-08 09:06:14 UTC (rev 17463)
@@ -21,16 +21,17 @@
*/
package org.jboss.as.webservices.deployers;
+import org.jboss.as.ee.structure.JBossDescriptorPropertyReplacement;
import org.jboss.as.server.deployment.Attachments;
import org.jboss.as.server.deployment.DeploymentPhaseContext;
import org.jboss.as.server.deployment.DeploymentUnit;
import org.jboss.as.server.deployment.DeploymentUnitProcessingException;
import org.jboss.as.server.deployment.DeploymentUnitProcessor;
import org.jboss.as.server.deployment.module.ResourceRoot;
+import org.jboss.as.webservices.metadata.WebservicesPropertyReplaceFactory;
import org.jboss.as.webservices.util.VirtualFileAdaptor;
import org.jboss.as.webservices.util.WSAttachmentKeys;
import org.jboss.wsf.spi.deployment.UnifiedVirtualFile;
-import org.jboss.wsf.spi.metadata.webservices.WebservicesFactory;
import org.jboss.wsf.spi.metadata.webservices.WebservicesMetaData;
/**
@@ -45,7 +46,9 @@
final DeploymentUnit unit = phaseContext.getDeploymentUnit();
final ResourceRoot deploymentRoot = unit.getAttachment(Attachments.DEPLOYMENT_ROOT);
final UnifiedVirtualFile virtualFile = new VirtualFileAdaptor(deploymentRoot.getRoot());
- final WebservicesMetaData webservicesMD = WebservicesFactory.loadFromVFSRoot(virtualFile);
+ final WebservicesPropertyReplaceFactory webservicesFactory = new WebservicesPropertyReplaceFactory(
+ null, JBossDescriptorPropertyReplacement.propertyReplacer(unit));
+ final WebservicesMetaData webservicesMD = webservicesFactory.loadFromVFSRoot(virtualFile);
if (webservicesMD != null) {
unit.putAttachment(WSAttachmentKeys.WEBSERVICES_METADATA_KEY, webservicesMD);
}
Added: container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/metadata/JBossWebservicesPropertyReplaceFactory.java
===================================================================
--- container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/metadata/JBossWebservicesPropertyReplaceFactory.java (rev 0)
+++ container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/metadata/JBossWebservicesPropertyReplaceFactory.java 2013-04-08 09:06:14 UTC (rev 17463)
@@ -0,0 +1,56 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2013, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file 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.jboss.as.webservices.metadata;
+
+import static org.jboss.wsf.spi.util.StAXUtils.elementAsString;
+
+import java.net.URL;
+
+import javax.xml.stream.XMLStreamException;
+import javax.xml.stream.XMLStreamReader;
+
+import org.jboss.metadata.property.PropertyReplacer;
+import org.jboss.wsf.spi.metadata.webservices.JBossWebservicesFactory;
+
+/**
+ * @author <a href="mailto:ema@redhat.com">Jim Ma</a>
+ */
+public class JBossWebservicesPropertyReplaceFactory extends JBossWebservicesFactory {
+
+ private PropertyReplacer replacer;
+
+
+ public JBossWebservicesPropertyReplaceFactory(final URL descriptorURL, final PropertyReplacer propertyReplacer) {
+ super(descriptorURL);
+ replacer = propertyReplacer;
+ }
+
+ @Override
+ public String getElementText(XMLStreamReader reader) throws XMLStreamException {
+ String res = elementAsString(reader);
+ if (res != null && replacer != null) {
+ res = replacer.replaceProperties(res);
+ }
+ return res;
+ }
+
+}
Property changes on: container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/metadata/JBossWebservicesPropertyReplaceFactory.java
___________________________________________________________________
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/metadata/WebservicesPropertyReplaceFactory.java
===================================================================
--- container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/metadata/WebservicesPropertyReplaceFactory.java (rev 0)
+++ container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/metadata/WebservicesPropertyReplaceFactory.java 2013-04-08 09:06:14 UTC (rev 17463)
@@ -0,0 +1,56 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2013, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file 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.jboss.as.webservices.metadata;
+
+import static org.jboss.wsf.spi.util.StAXUtils.elementAsString;
+
+import java.net.URL;
+
+import javax.xml.stream.XMLStreamException;
+import javax.xml.stream.XMLStreamReader;
+
+import org.jboss.metadata.property.PropertyReplacer;
+import org.jboss.wsf.spi.metadata.webservices.WebservicesFactory;
+
+/**
+ * @author <a href="mailto:ema@redhat.com">Jim Ma</a>
+ */
+public class WebservicesPropertyReplaceFactory extends WebservicesFactory {
+
+ private PropertyReplacer replacer;
+
+
+ public WebservicesPropertyReplaceFactory(final URL descriptorURL, final PropertyReplacer propertyReplacer) {
+ super(descriptorURL);
+ replacer = propertyReplacer;
+ }
+
+ @Override
+ public String getElementText(XMLStreamReader reader) throws XMLStreamException {
+ String res = elementAsString(reader);
+ if (res != null && replacer != null) {
+ res = replacer.replaceProperties(res);
+ }
+ return res;
+ }
+
+}
Property changes on: container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/metadata/WebservicesPropertyReplaceFactory.java
___________________________________________________________________
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
11 years, 11 months
JBossWS SVN: r17462 - in container/jboss71/branches/jbossws-jboss712: server-integration/src/main/java/org/jboss/as/webservices/publish and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2013-04-08 05:04:06 -0400 (Mon, 08 Apr 2013)
New Revision: 17462
Modified:
container/jboss71/branches/jbossws-jboss712/pom.xml
container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/publish/EndpointPublisherImpl.java
container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/publish/WSEndpointDeploymentUnit.java
container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/service/EndpointPublishService.java
Log:
[JBWS-3611]:fix the jboss712 IL and upgrade the spi and common
Modified: container/jboss71/branches/jbossws-jboss712/pom.xml
===================================================================
--- container/jboss71/branches/jbossws-jboss712/pom.xml 2013-04-08 05:10:27 UTC (rev 17461)
+++ container/jboss71/branches/jbossws-jboss712/pom.xml 2013-04-08 09:04:06 UTC (rev 17462)
@@ -51,8 +51,8 @@
<properties>
<jbossws.api.version>1.0.1.Final</jbossws.api.version>
- <jbossws.spi.version>2.1.1-SNAPSHOT</jbossws.spi.version>
- <jbossws.common.version>2.1.1-SNAPSHOT</jbossws.common.version>
+ <jbossws.spi.version>2.2.0-SNAPSHOT</jbossws.spi.version>
+ <jbossws.common.version>2.2.0-SNAPSHOT</jbossws.common.version>
<jboss.msc.version>1.0.2.GA</jboss.msc.version>
<jboss.version>7.1.2.Final</jboss.version>
<jboss.jaxws.api.version>2.0.1.Final</jboss.jaxws.api.version>
Modified: container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/publish/EndpointPublisherImpl.java
===================================================================
--- container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/publish/EndpointPublisherImpl.java 2013-04-08 05:10:27 UTC (rev 17461)
+++ container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/publish/EndpointPublisherImpl.java 2013-04-08 09:04:06 UTC (rev 17462)
@@ -58,6 +58,7 @@
import org.jboss.wsf.spi.deployment.DeploymentAspectManager;
import org.jboss.wsf.spi.deployment.Endpoint;
import org.jboss.wsf.spi.deployment.WSFServlet;
+import org.jboss.wsf.spi.metadata.webservices.JBossWebservicesMetaData;
import org.jboss.wsf.spi.metadata.webservices.WebservicesMetaData;
import org.jboss.wsf.spi.publish.Context;
import org.jboss.wsf.spi.publish.EndpointPublisher;
@@ -83,18 +84,28 @@
this.runningInService = runningInService;
}
+
@Override
public Context publish(String context, ClassLoader loader, Map<String, String> urlPatternToClassNameMap) throws Exception {
- return publish(getBaseTarget(), context, loader, urlPatternToClassNameMap, null);
+ return publish(getBaseTarget(), context, loader, urlPatternToClassNameMap, null, null, null);
}
@Override
public Context publish(String context, ClassLoader loader, Map<String, String> urlPatternToClassNameMap, WebservicesMetaData metadata) throws Exception {
- return publish(getBaseTarget(), context, loader, urlPatternToClassNameMap, metadata);
+ return publish(getBaseTarget(), context, loader, urlPatternToClassNameMap, null, metadata, null);
}
+
- public Context publish(ServiceTarget target, String context, ClassLoader loader, Map<String, String> urlPatternToClassNameMap, WebservicesMetaData metadata) throws Exception {
- WSEndpointDeploymentUnit unit = new WSEndpointDeploymentUnit(loader, context, urlPatternToClassNameMap, metadata);
+ @Override
+ public Context publish(String context, ClassLoader loader, Map<String, String> urlPatternToClassNameMap,
+ WebservicesMetaData metadata, JBossWebservicesMetaData jbwsMetadata) throws Exception {
+ return publish(getBaseTarget(), context, loader, urlPatternToClassNameMap, null, metadata, jbwsMetadata);
+ }
+
+ public Context publish(ServiceTarget target, String context, ClassLoader loader,
+ Map<String, String> urlPatternToClassNameMap, JBossWebMetaData jbwmd, WebservicesMetaData metadata, JBossWebservicesMetaData jbwsMetadata)
+ throws Exception {
+ WSEndpointDeploymentUnit unit = new WSEndpointDeploymentUnit(loader, context, urlPatternToClassNameMap, jbwmd, metadata, jbwsMetadata);
return new Context(context, publish(target, unit));
}
@@ -279,4 +290,6 @@
public void destroyInstance(Object o) throws IllegalAccessException, InvocationTargetException {
}
}
+
+
}
Modified: container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/publish/WSEndpointDeploymentUnit.java
===================================================================
--- container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/publish/WSEndpointDeploymentUnit.java 2013-04-08 05:10:27 UTC (rev 17461)
+++ container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/publish/WSEndpointDeploymentUnit.java 2013-04-08 09:04:06 UTC (rev 17462)
@@ -35,6 +35,7 @@
import org.jboss.metadata.web.jboss.JBossWebMetaData;
import org.jboss.msc.service.ServiceName;
import org.jboss.msc.service.ServiceRegistry;
+import org.jboss.wsf.spi.metadata.webservices.JBossWebservicesMetaData;
import org.jboss.wsf.spi.metadata.webservices.WebservicesMetaData;
public class WSEndpointDeploymentUnit extends SimpleAttachable implements DeploymentUnit {
@@ -42,32 +43,35 @@
private String deploymentName;
public WSEndpointDeploymentUnit(ClassLoader loader, String context, Map<String,String> urlPatternToClassName, WebservicesMetaData metadata) {
- this(loader, context, urlPatternToClassName, new JBossWebMetaData(), metadata);
- }
+ this(loader, context, urlPatternToClassName, new JBossWebMetaData(), metadata, null);
+ }
- public WSEndpointDeploymentUnit(ClassLoader loader, String context, Map<String, String> urlPatternToClassName,
- JBossWebMetaData jbossWebMetaData, WebservicesMetaData metadata) {
- this.deploymentName = context + ".deployment";
+ public WSEndpointDeploymentUnit(ClassLoader loader, String context, Map<String, String> urlPatternToClassName,
+ JBossWebMetaData jbossWebMetaData, WebservicesMetaData metadata, JBossWebservicesMetaData jbwsMetaData) {
+ this.deploymentName = context + ".deployment";
- JAXWSDeployment jaxwsDeployment = new JAXWSDeployment();
- if (jbossWebMetaData == null) {
- jbossWebMetaData = new JBossWebMetaData();
- }
- jbossWebMetaData.setContextRoot(context);
- String endpointName = null;
- String className = null;
- for (String urlPattern : urlPatternToClassName.keySet()) {
- className = urlPatternToClassName.get(urlPattern);
- endpointName = getShortName(className, urlPattern);
- addEndpoint(jbossWebMetaData, jaxwsDeployment, endpointName, className, urlPattern);
- }
- this.putAttachment(WSAttachmentKeys.CLASSLOADER_KEY, loader);
- this.putAttachment(WSAttachmentKeys.JAXWS_ENDPOINTS_KEY, jaxwsDeployment);
- this.putAttachment(WSAttachmentKeys.JBOSSWEB_METADATA_KEY, jbossWebMetaData);
- if (metadata != null) {
- this.putAttachment(WSAttachmentKeys.WEBSERVICES_METADATA_KEY, metadata);
- }
- }
+ JAXWSDeployment jaxwsDeployment = new JAXWSDeployment();
+ if (jbossWebMetaData == null) {
+ jbossWebMetaData = new JBossWebMetaData();
+ }
+ jbossWebMetaData.setContextRoot(context);
+ String endpointName = null;
+ String className = null;
+ for (String urlPattern : urlPatternToClassName.keySet()) {
+ className = urlPatternToClassName.get(urlPattern);
+ endpointName = getShortName(className, urlPattern);
+ addEndpoint(jbossWebMetaData, jaxwsDeployment, endpointName, className, urlPattern);
+ }
+ this.putAttachment(WSAttachmentKeys.CLASSLOADER_KEY, loader);
+ this.putAttachment(WSAttachmentKeys.JAXWS_ENDPOINTS_KEY, jaxwsDeployment);
+ this.putAttachment(WSAttachmentKeys.JBOSSWEB_METADATA_KEY, jbossWebMetaData);
+ if (metadata != null) {
+ this.putAttachment(WSAttachmentKeys.WEBSERVICES_METADATA_KEY, metadata);
+ }
+ if (jbwsMetaData != null) {
+ this.putAttachment(WSAttachmentKeys.JBOSS_WEBSERVICES_METADATA_KEY, jbwsMetaData);
+ }
+ }
private String getShortName(String className, String urlPattern) {
final StringTokenizer st = new StringTokenizer(urlPattern, "/*");
Modified: container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/service/EndpointPublishService.java
===================================================================
--- container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/service/EndpointPublishService.java 2013-04-08 05:10:27 UTC (rev 17461)
+++ container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/service/EndpointPublishService.java 2013-04-08 09:04:06 UTC (rev 17462)
@@ -29,6 +29,7 @@
import org.jboss.as.web.WebSubsystemServices;
import org.jboss.as.webservices.publish.EndpointPublisherImpl;
import org.jboss.as.webservices.util.WSServices;
+import org.jboss.metadata.web.jboss.JBossWebMetaData;
import org.jboss.msc.service.Service;
import org.jboss.msc.service.ServiceBuilder;
import org.jboss.msc.service.ServiceBuilder.DependencyType;
@@ -39,6 +40,8 @@
import org.jboss.msc.service.StartException;
import org.jboss.msc.service.StopContext;
import org.jboss.msc.value.InjectedValue;
+import org.jboss.wsf.spi.metadata.webservices.JBossWebservicesMetaData;
+import org.jboss.wsf.spi.metadata.webservices.WebservicesMetaData;
import org.jboss.wsf.spi.publish.Context;
/**
@@ -55,16 +58,22 @@
private final ClassLoader loader;
private final String context;
private final Map<String,String> urlPatternToClassName;
+ private final JBossWebMetaData jbwmd;
+ private final WebservicesMetaData wsmd;
+ private final JBossWebservicesMetaData jbwsmd;
private final InjectedValue<VirtualHost> hostInjector = new InjectedValue<VirtualHost>();
-
+
private EndpointPublishService(final String context, final ClassLoader loader,
- final Map<String,String> urlPatternToClassName) {
- this.name = WSServices.ENDPOINT_PUBLISH_SERVICE.append(context);
- this.loader = loader;
- this.context = context;
- this.urlPatternToClassName = urlPatternToClassName;
- }
+ final Map<String,String> urlPatternToClassName, JBossWebMetaData jbwmd, WebservicesMetaData wsmd, JBossWebservicesMetaData jbwsmd) {
+ this.name = WSServices.ENDPOINT_PUBLISH_SERVICE.append(context);
+ this.loader = loader;
+ this.context = context;
+ this.urlPatternToClassName = urlPatternToClassName;
+ this.jbwmd = jbwmd;
+ this.wsmd = wsmd;
+ this.jbwsmd = jbwsmd;
+ }
@Override
public Context getValue() {
@@ -84,7 +93,7 @@
ROOT_LOGGER.starting(name);
try {
EndpointPublisherImpl publisher = new EndpointPublisherImpl(hostInjector.getValue().getHost(), true);
- wsctx = publisher.publish(ctx.getChildTarget(), context, loader, urlPatternToClassName, null);
+ wsctx = publisher.publish(ctx.getChildTarget(), context, loader, urlPatternToClassName, jbwmd, wsmd, jbwsmd);
} catch (Exception e) {
throw new StartException(e);
}
@@ -101,22 +110,29 @@
}
}
- public static ServiceBuilder<Context> createServiceBuilder(final ServiceTarget serviceTarget, final String context,
- final ClassLoader loader, final String hostName, final Map<String,String> urlPatternToClassName) {
- final EndpointPublishService service = new EndpointPublishService(context, loader, urlPatternToClassName);
- final ServiceBuilder<Context> builder = serviceTarget.addService(service.getName(), service);
- builder.addDependency(DependencyType.REQUIRED, WSServices.CONFIG_SERVICE);
- builder.addDependency(DependencyType.REQUIRED, WSServices.REGISTRY_SERVICE);
- builder.addDependency(WebSubsystemServices.JBOSS_WEB_HOST.append(hostName), VirtualHost.class,
- service.getHostInjector());
- return builder;
- }
+ public static ServiceBuilder<Context> createServiceBuilder(final ServiceTarget serviceTarget, final String context, final ClassLoader loader, final String hostName,
+ final Map<String, String> urlPatternToClassName)
+ {
+ return createServiceBuilder(serviceTarget, context, loader, hostName, urlPatternToClassName, null, null, null);
+ }
- public static void install(final ServiceTarget serviceTarget, final String context, final ClassLoader loader,
- final String hostName, final Map<String,String> urlPatternToClassName) {
- ServiceBuilder<Context> builder = createServiceBuilder(serviceTarget, context, loader, hostName, urlPatternToClassName);
- builder.setInitialMode(Mode.ACTIVE);
- builder.install();
- }
+ public static ServiceBuilder<Context> createServiceBuilder(final ServiceTarget serviceTarget, final String context, final ClassLoader loader, final String hostName,
+ final Map<String, String> urlPatternToClassName, JBossWebMetaData jbwmd, WebservicesMetaData wsmd, JBossWebservicesMetaData jbwsmd)
+ {
+ final EndpointPublishService service = new EndpointPublishService(context, loader, urlPatternToClassName, jbwmd, wsmd, jbwsmd);
+ final ServiceBuilder<Context> builder = serviceTarget.addService(service.getName(), service);
+ builder.addDependency(DependencyType.REQUIRED, WSServices.CONFIG_SERVICE);
+ builder.addDependency(DependencyType.REQUIRED, WSServices.REGISTRY_SERVICE);
+ builder.addDependency(WebSubsystemServices.JBOSS_WEB_HOST.append(hostName), VirtualHost.class, service.getHostInjector());
+ return builder;
+ }
+ public static void install(final ServiceTarget serviceTarget, final String context, final ClassLoader loader, final String hostName,
+ final Map<String, String> urlPatternToClassName)
+ {
+ ServiceBuilder<Context> builder = createServiceBuilder(serviceTarget, context, loader, hostName, urlPatternToClassName);
+ builder.setInitialMode(Mode.ACTIVE);
+ builder.install();
+ }
+
}
11 years, 11 months
JBossWS SVN: r17461 - in common/branches/jbossws-common-2.1.x: src/main/java/org/jboss/ws/common/deployment and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2013-04-08 01:10:27 -0400 (Mon, 08 Apr 2013)
New Revision: 17461
Modified:
common/branches/jbossws-common-2.1.x/pom.xml
common/branches/jbossws-common-2.1.x/src/main/java/org/jboss/ws/common/deployment/JBossWebservicesDescriptorParserImpl.java
common/branches/jbossws-common-2.1.x/src/main/java/org/jboss/ws/common/deployment/WebservicesDescriptorParserImpl.java
Log:
[JBWS-3524]:Update common
Modified: common/branches/jbossws-common-2.1.x/pom.xml
===================================================================
--- common/branches/jbossws-common-2.1.x/pom.xml 2013-04-08 05:10:01 UTC (rev 17460)
+++ common/branches/jbossws-common-2.1.x/pom.xml 2013-04-08 05:10:27 UTC (rev 17461)
@@ -27,7 +27,7 @@
<!-- Properties -->
<properties>
- <jbossws.spi.version>2.1.2-SNAPSHOT</jbossws.spi.version>
+ <jbossws.spi.version>2.1.3-SNAPSHOT</jbossws.spi.version>
<jboss.jaxbintros.version>1.0.2.GA</jboss.jaxbintros.version>
<jboss.common.core.version>2.2.17.GA</jboss.common.core.version>
<jboss-logging.version>3.1.2.GA</jboss-logging.version>
Modified: common/branches/jbossws-common-2.1.x/src/main/java/org/jboss/ws/common/deployment/JBossWebservicesDescriptorParserImpl.java
===================================================================
--- common/branches/jbossws-common-2.1.x/src/main/java/org/jboss/ws/common/deployment/JBossWebservicesDescriptorParserImpl.java 2013-04-08 05:10:01 UTC (rev 17460)
+++ common/branches/jbossws-common-2.1.x/src/main/java/org/jboss/ws/common/deployment/JBossWebservicesDescriptorParserImpl.java 2013-04-08 05:10:27 UTC (rev 17461)
@@ -54,7 +54,7 @@
@Override
public JBossWebservicesMetaData parse(URL url)
{
- return JBossWebservicesFactory.load(url);
+ return new JBossWebservicesFactory(url).load(url);
}
}
Modified: common/branches/jbossws-common-2.1.x/src/main/java/org/jboss/ws/common/deployment/WebservicesDescriptorParserImpl.java
===================================================================
--- common/branches/jbossws-common-2.1.x/src/main/java/org/jboss/ws/common/deployment/WebservicesDescriptorParserImpl.java 2013-04-08 05:10:01 UTC (rev 17460)
+++ common/branches/jbossws-common-2.1.x/src/main/java/org/jboss/ws/common/deployment/WebservicesDescriptorParserImpl.java 2013-04-08 05:10:27 UTC (rev 17461)
@@ -55,6 +55,6 @@
@Override
public WebservicesMetaData parse(URL url)
{
- return WebservicesFactory.load(url);
+ return new WebservicesFactory(url).load(url);
}
}
11 years, 11 months
JBossWS SVN: r17460 - in spi/branches/jbossws-spi-2.1.x/src: test/java/org/jboss/test/wsf/spi/metadata/webservices and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2013-04-08 01:10:01 -0400 (Mon, 08 Apr 2013)
New Revision: 17460
Modified:
spi/branches/jbossws-spi-2.1.x/src/main/java/org/jboss/wsf/spi/metadata/webservices/JBossWebservicesFactory.java
spi/branches/jbossws-spi-2.1.x/src/main/java/org/jboss/wsf/spi/metadata/webservices/WebservicesFactory.java
spi/branches/jbossws-spi-2.1.x/src/test/java/org/jboss/test/wsf/spi/metadata/webservices/WebServiceFactoryTestCase.java
Log:
[JBWS-3524]:Update spi
Modified: spi/branches/jbossws-spi-2.1.x/src/main/java/org/jboss/wsf/spi/metadata/webservices/JBossWebservicesFactory.java
===================================================================
--- spi/branches/jbossws-spi-2.1.x/src/main/java/org/jboss/wsf/spi/metadata/webservices/JBossWebservicesFactory.java 2013-04-08 03:01:19 UTC (rev 17459)
+++ spi/branches/jbossws-spi-2.1.x/src/main/java/org/jboss/wsf/spi/metadata/webservices/JBossWebservicesFactory.java 2013-04-08 05:10:01 UTC (rev 17460)
@@ -83,7 +83,7 @@
* @param root virtual file root
* @return JBossWebservicesMetaData or <code>null</code> if it cannot be found
*/
- public static JBossWebservicesMetaData loadFromVFSRoot(final UnifiedVirtualFile root) {
+ public JBossWebservicesMetaData loadFromVFSRoot(final UnifiedVirtualFile root) {
JBossWebservicesMetaData webservices = null;
UnifiedVirtualFile wsdd = root.findChildFailSafe("META-INF/jboss-webservices.xml");
@@ -101,7 +101,7 @@
return webservices;
}
- public static JBossWebservicesMetaData load(final URL wsddUrl) {
+ public JBossWebservicesMetaData load(final URL wsddUrl) {
InputStream is = null;
try {
is = wsddUrl.openStream();
@@ -118,11 +118,11 @@
}
}
- public static JBossWebservicesMetaData parse(final InputStream is) {
+ public JBossWebservicesMetaData parse(final InputStream is) {
return parse(is, null);
}
- public static JBossWebservicesMetaData parse(final InputStream is, final URL descriptorURL) {
+ public JBossWebservicesMetaData parse(final InputStream is, final URL descriptorURL) {
try {
final XMLStreamReader xmlr = StAXUtils.createXMLStreamReader(is);
return parse(xmlr, descriptorURL);
@@ -131,11 +131,11 @@
}
}
- public static JBossWebservicesMetaData parse(final XMLStreamReader reader) throws XMLStreamException {
+ public JBossWebservicesMetaData parse(final XMLStreamReader reader) throws XMLStreamException {
return parse(reader, null);
}
- private static JBossWebservicesMetaData parse(final XMLStreamReader reader, final URL descriptorURL)
+ private JBossWebservicesMetaData parse(final XMLStreamReader reader, final URL descriptorURL)
throws XMLStreamException {
int iterate;
try {
@@ -154,8 +154,7 @@
if (match(reader, JBOSSEE_NS, WEBSERVICES)) {
String nsUri = reader.getNamespaceURI();
- JBossWebservicesFactory factory = new JBossWebservicesFactory(descriptorURL);
- metadata = factory.parseWebservices(reader, nsUri, descriptorURL);
+ metadata = parseWebservices(reader, nsUri, descriptorURL);
} else {
throw MESSAGES.unexpectedElement(descriptorURL != null ? descriptorURL.toString() : "jboss-webservices.xml", reader.getLocalName());
}
@@ -178,11 +177,11 @@
}
case XMLStreamConstants.START_ELEMENT: {
if (match(reader, nsUri, CONTEXT_ROOT)) {
- metadata.setContextRoot(elementAsString(reader));
+ metadata.setContextRoot(getElementText(reader));
} else if (match(reader, nsUri, CONFIG_NAME)) {
- metadata.setConfigName(elementAsString(reader));
+ metadata.setConfigName(getElementText(reader));
} else if (match(reader, nsUri, CONFIG_FILE)) {
- metadata.setConfigFile(elementAsString(reader));
+ metadata.setConfigFile(getElementText(reader));
} else if (match(reader, nsUri, PROPERTY)) {
parseProperty(reader, nsUri, metadata);
} else if (match(reader, nsUri, PORT_COMPONENT)) {
@@ -211,15 +210,15 @@
}
case XMLStreamConstants.START_ELEMENT: {
if (match(reader, nsUri, EJB_NAME)) {
- pc.setEjbName(elementAsString(reader));
+ pc.setEjbName(getElementText(reader));
} else if (match(reader, nsUri, PORT_COMPONENT_NAME)) {
- pc.setPortComponentName(elementAsString(reader));
+ pc.setPortComponentName(getElementText(reader));
} else if (match(reader, nsUri, PORT_COMPONENT_URI)) {
- pc.setPortComponentURI(elementAsString(reader));
+ pc.setPortComponentURI(getElementText(reader));
} else if (match(reader, nsUri, AUTH_METHOD)) {
- pc.setAuthMethod(elementAsString(reader));
+ pc.setAuthMethod(getElementText(reader));
} else if (match(reader, nsUri, TRANSPORT_GUARANTEE)) {
- pc.setTransportGuarantee(elementAsString(reader));
+ pc.setTransportGuarantee(getElementText(reader));
} else if (match(reader, nsUri, SECURE_WSDL_ACCESS)) {
pc.setSecureWSDLAccess(elementAsBoolean(reader));
} else {
@@ -245,9 +244,9 @@
}
case XMLStreamConstants.START_ELEMENT: {
if (match(reader, nsUri, WEBSERVICE_DESCRIPTION_NAME)) {
- description.setWebserviceDescriptionName(elementAsString(reader));
+ description.setWebserviceDescriptionName(getElementText(reader));
} else if (match(reader, nsUri, WSDL_PUBLISH_LOCATION)) {
- description.setWsdlPublishLocation(elementAsString(reader));
+ description.setWsdlPublishLocation(getElementText(reader));
} else {
throw MESSAGES.unexpectedElement(getDescriptorForLogs(), reader.getLocalName());
}
@@ -282,10 +281,10 @@
}
case XMLStreamConstants.START_ELEMENT : {
if (match(reader, nsUri, NAME)) {
- name = elementAsString(reader);
+ name = getElementText(reader);
}
else if (match(reader, nsUri, VALUE)) {
- value = elementAsString(reader);
+ value = getElementText(reader);
}
else
{
@@ -297,6 +296,10 @@
throw MESSAGES.reachedEndOfXMLDocUnexpectedly(getDescriptorForLogs());
}
+ protected String getElementText(XMLStreamReader reader) throws XMLStreamException {
+ return elementAsString(reader);
+ }
+
private String getDescriptorForLogs() {
return descriptorURL != null ? descriptorURL.toString() : "jboss-webservices.xml";
}
Modified: spi/branches/jbossws-spi-2.1.x/src/main/java/org/jboss/wsf/spi/metadata/webservices/WebservicesFactory.java
===================================================================
--- spi/branches/jbossws-spi-2.1.x/src/main/java/org/jboss/wsf/spi/metadata/webservices/WebservicesFactory.java 2013-04-08 03:01:19 UTC (rev 17459)
+++ spi/branches/jbossws-spi-2.1.x/src/main/java/org/jboss/wsf/spi/metadata/webservices/WebservicesFactory.java 2013-04-08 05:10:01 UTC (rev 17460)
@@ -92,7 +92,7 @@
* @param root virtual file root
* @return WebservicesMetaData or <code>null</code> if it cannot be found
*/
- public static WebservicesMetaData loadFromVFSRoot(UnifiedVirtualFile root)
+ public WebservicesMetaData loadFromVFSRoot(UnifiedVirtualFile root)
{
WebservicesMetaData webservices = null;
@@ -113,7 +113,7 @@
return webservices;
}
- public static WebservicesMetaData load(URL wsddUrl)
+ public WebservicesMetaData load(URL wsddUrl)
{
InputStream is = null;
try
@@ -136,12 +136,12 @@
}
}
- public static WebservicesMetaData parse(InputStream is)
+ public WebservicesMetaData parse(InputStream is)
{
return parse(is, null);
}
- public static WebservicesMetaData parse(InputStream is, URL descriptorURL)
+ public WebservicesMetaData parse(InputStream is, URL descriptorURL)
{
try
{
@@ -154,12 +154,12 @@
}
}
- public static WebservicesMetaData parse(XMLStreamReader reader) throws XMLStreamException
+ public WebservicesMetaData parse(XMLStreamReader reader) throws XMLStreamException
{
return parse(reader, null);
}
- private static WebservicesMetaData parse(XMLStreamReader reader, URL descriptorURL) throws XMLStreamException
+ private WebservicesMetaData parse(XMLStreamReader reader, URL descriptorURL) throws XMLStreamException
{
int iterate;
try
@@ -183,8 +183,7 @@
if (match(reader, JAVAEE_NS, WEBSERVICES) || match(reader, J2EE_NS, WEBSERVICES))
{
String nsUri = reader.getNamespaceURI();
- WebservicesFactory factory = new WebservicesFactory(descriptorURL);
- metadata = factory.parseWebservices(reader, nsUri, descriptorURL);
+ metadata = parseWebservices(reader, nsUri, descriptorURL);
}
else
{
@@ -217,7 +216,7 @@
metadata.addWebserviceDescription(parseWebserviceDescription(reader, nsUri, metadata));
} else if (match(reader, nsUri, "description") || match(reader, nsUri, "display-name")) {
//skip to parse
- elementAsString(reader);
+ getElementText(reader);
} else if (match(reader, nsUri, "icon")) {
//skip icon
while (reader.hasNext() && !(reader.nextTag() == XMLStreamConstants.END_ELEMENT && match(reader, nsUri, "icon"))) {
@@ -254,13 +253,13 @@
}
case XMLStreamConstants.START_ELEMENT : {
if (match(reader, nsUri, WEBSERVICE_DESCRIPTION_NAME)) {
- description.setWebserviceDescriptionName(elementAsString(reader));
+ description.setWebserviceDescriptionName(getElementText(reader));
}
else if (match(reader, nsUri, WSDL_FILE)) {
- description.setWsdlFile(elementAsString(reader));
+ description.setWsdlFile(getElementText(reader));
}
else if (match(reader, nsUri, JAXRPC_MAPPING_FILE)) {
- description.setJaxrpcMappingFile(elementAsString(reader));
+ description.setJaxrpcMappingFile(getElementText(reader));
}
else if (match(reader, nsUri, PORT_COMPONENT)) {
description.addPortComponent(parsePortComponent(reader, nsUri, description));
@@ -294,11 +293,11 @@
}
case XMLStreamConstants.START_ELEMENT : {
if (match(reader, nsUri, PORT_COMPONENT_NAME)) {
- pc.setPortComponentName(elementAsString(reader));
+ pc.setPortComponentName(getElementText(reader));
}
else if (match(reader, nsUri, "description") || match(reader, nsUri, "display-name")) {
//skip to parse
- elementAsString(reader);
+ getElementText(reader);
} else if (match(reader, nsUri, "icon")) {
//skip icon
while (reader.hasNext() && !(reader.nextTag() == XMLStreamConstants.END_ELEMENT && match(reader, nsUri, "icon"))) {
@@ -324,10 +323,10 @@
parseRespectBinding(reader, nsUri, pc);
}
else if (match(reader, nsUri, PROTOCOL_BINDING)) {
- pc.setProtocolBinding(elementAsString(reader));
+ pc.setProtocolBinding(getElementText(reader));
}
else if (match(reader, nsUri, SERVICE_ENDPOINT_INTERFACE)) {
- pc.setServiceEndpointInterface(elementAsString(reader));
+ pc.setServiceEndpointInterface(getElementText(reader));
}
else if (match(reader, nsUri, SERVICE_IMPL_BEAN)) {
parseServiceImplBean(reader, nsUri, pc);
@@ -348,6 +347,10 @@
throw MESSAGES.reachedEndOfXMLDocUnexpectedly(getDescriptorForLogs());
}
+ protected String getElementText(XMLStreamReader reader) throws XMLStreamException {
+ return elementAsString(reader);
+ }
+
private void parseAddressing(XMLStreamReader reader, String nsUri, PortComponentMetaData pc) throws XMLStreamException
{
while (reader.hasNext())
@@ -372,7 +375,7 @@
pc.setAddressingRequired(elementAsBoolean(reader));
}
else if (match(reader, nsUri, ADDRESSING_RESPONSES)) {
- pc.setAddressingResponses(elementAsString(reader));
+ pc.setAddressingResponses(getElementText(reader));
}
else
{
@@ -432,10 +435,10 @@
}
case XMLStreamConstants.START_ELEMENT : {
if (match(reader, nsUri, SERVLET_LINK)) {
- pc.setServletLink(elementAsString(reader));
+ pc.setServletLink(getElementText(reader));
}
else if (match(reader, nsUri, EJB_LINK)) {
- pc.setEjbLink(elementAsString(reader));
+ pc.setEjbLink(getElementText(reader));
}
else
{
Modified: spi/branches/jbossws-spi-2.1.x/src/test/java/org/jboss/test/wsf/spi/metadata/webservices/WebServiceFactoryTestCase.java
===================================================================
--- spi/branches/jbossws-spi-2.1.x/src/test/java/org/jboss/test/wsf/spi/metadata/webservices/WebServiceFactoryTestCase.java 2013-04-08 03:01:19 UTC (rev 17459)
+++ spi/branches/jbossws-spi-2.1.x/src/test/java/org/jboss/test/wsf/spi/metadata/webservices/WebServiceFactoryTestCase.java 2013-04-08 05:10:01 UTC (rev 17460)
@@ -53,7 +53,7 @@
File file = new File("src/test/resources/metadata/webservices/test-webservices.xml");
InputStream is = new FileInputStream(file);
URL url = file.toURI().toURL();
- WebservicesMetaData metadata = WebservicesFactory.parse(is, url);
+ WebservicesMetaData metadata = new WebservicesFactory(url).parse(is, url);
assertEquals(url, metadata.getDescriptorURL());
assertEquals(2, metadata.getWebserviceDescriptions().length);
testDescription1(metadata.getWebserviceDescriptions()[0], metadata);
11 years, 11 months
JBossWS SVN: r17459 - container/jboss72/branches/jbossws-jboss720/tests-integration/src/main/java/org/jboss/as/webservices/deployer.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2013-04-07 23:01:19 -0400 (Sun, 07 Apr 2013)
New Revision: 17459
Modified:
container/jboss72/branches/jbossws-jboss720/tests-integration/src/main/java/org/jboss/as/webservices/deployer/RemoteDeployer.java
Log:
[JBWS-3619]:Backport the RemoteDeployer timeout setting to 7.x integration layer
Modified: container/jboss72/branches/jbossws-jboss720/tests-integration/src/main/java/org/jboss/as/webservices/deployer/RemoteDeployer.java
===================================================================
--- container/jboss72/branches/jbossws-jboss720/tests-integration/src/main/java/org/jboss/as/webservices/deployer/RemoteDeployer.java 2013-04-05 23:00:54 UTC (rev 17458)
+++ container/jboss72/branches/jbossws-jboss720/tests-integration/src/main/java/org/jboss/as/webservices/deployer/RemoteDeployer.java 2013-04-08 03:01:19 UTC (rev 17459)
@@ -95,6 +95,7 @@
private static final String JBWS_DEPLOYER_AUTH_USER = "jbossws.deployer.authentication.username";
private static final String JBWS_DEPLOYER_AUTH_PWD = "jbossws.deployer.authentication.password";
private static final CallbackHandler callbackHandler = getCallbackHandler();
+ private static final int TIMEOUT = 60000;
private static InetAddress address;
private static Integer port;
private final Map<URL, String> url2Id = new HashMap<URL, String>();
@@ -124,12 +125,13 @@
} else {
archiveCounters.put(k, 1);
}
- final ServerDeploymentManager deploymentManager = newDeploymentManager();
+ final ModelControllerClient client = newModelControllerClient();
+ final ServerDeploymentManager deploymentManager = newDeploymentManager(client);
final DeploymentPlanBuilder builder = deploymentManager.newDeploymentPlan().add(archiveURL).andDeploy();
final DeploymentPlan plan = builder.build();
final DeploymentAction deployAction = builder.getLastAction();
final String uniqueId = deployAction.getDeploymentUnitUniqueName();
- executeDeploymentPlan(plan, deployAction, deploymentManager);
+ executeDeploymentPlan(plan, deployAction, client, deploymentManager);
url2Id.put(archiveURL, uniqueId);
}
}
@@ -150,14 +152,15 @@
LOGGER.warn("Trying to undeploy archive " + archiveURL + " which is not currently deployed!");
return;
}
- final ServerDeploymentManager deploymentManager = newDeploymentManager();
+ final ModelControllerClient client = newModelControllerClient();
+ final ServerDeploymentManager deploymentManager = newDeploymentManager(client);
final DeploymentPlanBuilder builder = deploymentManager.newDeploymentPlan();
final String uniqueName = url2Id.get(archiveURL);
if (uniqueName != null) {
final DeploymentPlan plan = builder.undeploy(uniqueName).remove(uniqueName).build();
final DeploymentAction deployAction = builder.getLastAction();
try {
- executeDeploymentPlan(plan, deployAction, deploymentManager);
+ executeDeploymentPlan(plan, deployAction, client, deploymentManager);
} finally {
url2Id.remove(archiveURL);
}
@@ -166,7 +169,7 @@
}
private void executeDeploymentPlan(final DeploymentPlan plan, final DeploymentAction deployAction,
- final ServerDeploymentManager deploymentManager) throws Exception {
+ final ModelControllerClient client, final ServerDeploymentManager deploymentManager) throws Exception {
try {
final ServerDeploymentPlanResult planResult = deploymentManager.execute(plan).get();
@@ -182,6 +185,7 @@
LOGGER.fatal(e.getMessage(), e);
throw e;
} finally {
+ client.close();
deploymentManager.close();
}
}
@@ -378,11 +382,12 @@
return AccessController.doPrivileged(action);
}
- private static ModelControllerClient newModelControllerClient() {
- return ModelControllerClient.Factory.create(address, port, callbackHandler);
+ private static ModelControllerClient newModelControllerClient() throws Exception {
+ return ModelControllerClient.Factory.create(address.getHostAddress(), port, callbackHandler, null, TIMEOUT);
}
- private static ServerDeploymentManager newDeploymentManager() {
- return ServerDeploymentManager.Factory.create(address, port, callbackHandler);
+ private static ServerDeploymentManager newDeploymentManager(ModelControllerClient client) throws Exception {
+ return ServerDeploymentManager.Factory.create(client);
}
}
+
11 years, 11 months
JBossWS SVN: r17458 - stack/cxf/branches/jbossws-cxf-3.1.2.SP13-JBPAPP-10701/modules/server/src/main/java/org/jboss/wsf/stack/cxf.
by jbossws-commits@lists.jboss.org
Author: klape
Date: 2013-04-05 19:00:54 -0400 (Fri, 05 Apr 2013)
New Revision: 17458
Modified:
stack/cxf/branches/jbossws-cxf-3.1.2.SP13-JBPAPP-10701/modules/server/src/main/java/org/jboss/wsf/stack/cxf/DescriptorDeploymentAspect.java
Log:
[JBPAPP-10701] Fix for ClassNotFoundException when enabling the fix for CVE-2012-2319
Modified: stack/cxf/branches/jbossws-cxf-3.1.2.SP13-JBPAPP-10701/modules/server/src/main/java/org/jboss/wsf/stack/cxf/DescriptorDeploymentAspect.java
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2.SP13-JBPAPP-10701/modules/server/src/main/java/org/jboss/wsf/stack/cxf/DescriptorDeploymentAspect.java 2013-04-05 22:59:58 UTC (rev 17457)
+++ stack/cxf/branches/jbossws-cxf-3.1.2.SP13-JBPAPP-10701/modules/server/src/main/java/org/jboss/wsf/stack/cxf/DescriptorDeploymentAspect.java 2013-04-05 23:00:54 UTC (rev 17458)
@@ -234,26 +234,28 @@
}
for (String ep : endpoints)
{
- Class<?> clazz = cl.loadClass(ep);
- String wl = null;
- if (clazz.isAnnotationPresent(WebService.class)) {
- WebService wsa = clazz.getAnnotation(WebService.class);
- wl = wsa.wsdlLocation();
- String epIf = wsa.endpointInterface();
- if(epIf != null && !epIf.isEmpty()) {
- Class<?> epIfClass = cl.loadClass(epIf);
- WebService epIfWsa = epIfClass.getAnnotation(WebService.class);
- if (epIfWsa != null && epIfWsa.wsdlLocation() != null && !epIfWsa.wsdlLocation().isEmpty()) {
- wl = epIfWsa.wsdlLocation();
+ if (!ep.startsWith("#")) {
+ Class<?> clazz = cl.loadClass(ep);
+ String wl = null;
+ if (clazz.isAnnotationPresent(WebService.class)) {
+ WebService wsa = clazz.getAnnotation(WebService.class);
+ wl = wsa.wsdlLocation();
+ String epIf = wsa.endpointInterface();
+ if(epIf != null && !epIf.isEmpty()) {
+ Class<?> epIfClass = cl.loadClass(epIf);
+ WebService epIfWsa = epIfClass.getAnnotation(WebService.class);
+ if (epIfWsa != null && epIfWsa.wsdlLocation() != null && !epIfWsa.wsdlLocation().isEmpty()) {
+ wl = epIfWsa.wsdlLocation();
+ }
}
+ } else {
+ WebServiceProvider wsp = clazz.getAnnotation(WebServiceProvider.class);
+ wl = wsp.wsdlLocation();
}
- } else {
- WebServiceProvider wsp = clazz.getAnnotation(WebServiceProvider.class);
- wl = wsp.wsdlLocation();
+ if (wl != null && !wl.trim().isEmpty()) {
+ wsdlLocations.add(wl);
+ }
}
- if (wl != null && !wl.trim().isEmpty()) {
- wsdlLocations.add(wl);
- }
}
//then check wsdl files for contract first endpoints
for (String w : wsdlLocations) {
@@ -297,6 +299,14 @@
{
endpoints.add(reader.getAttributeValue(null, searchAttributeName).trim());
}
+
+ else if (search && StAXUtils.match(reader, "http://www.springframework.org/schema/beans", "bean"))
+ {
+ if (reader.getAttributeValue(null, "id") != null)
+ {
+ endpoints.add(reader.getAttributeValue(null, "class").trim());
+ }
+ }
}
}
}
11 years, 11 months
JBossWS SVN: r17457 - stack/cxf/branches.
by jbossws-commits@lists.jboss.org
Author: klape
Date: 2013-04-05 18:59:58 -0400 (Fri, 05 Apr 2013)
New Revision: 17457
Added:
stack/cxf/branches/jbossws-cxf-3.1.2.SP13-JBPAPP-10701/
Log:
[JBPAPP-10701] creating one-off branch
11 years, 11 months
JBossWS SVN: r17456 - in thirdparty/cxf/branches/cxf-2.6.6: api and 166 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2013-04-05 12:09:59 -0400 (Fri, 05 Apr 2013)
New Revision: 17456
Modified:
thirdparty/cxf/branches/cxf-2.6.6/api/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/common/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/common/wstx-msv-validation/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/common/xerces-xsd-validation/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/manifest/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/aegis/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/aegis_standalone/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/callback/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/configuration_interceptor/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/corba/bank/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/corba/bank_ws_addressing/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/corba/hello_world/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/groovy_spring_support/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/in_jvm_transport/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_jaxws/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_jaxws_factory_bean/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_jms/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_pojo/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_spring_support/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/basic/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/basic_https/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/content_negotiation/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/minimal_osgi/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/spring_security/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_server_aegis_client/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jaxws_async/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jaxws_dispatch_provider/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jaxws_handlers/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_pubsub/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_queue/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_spec_demo/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_spring_config/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_browser_client_java_first/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_browser_client_simple/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_client/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_provider/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/logbrowser/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/mtom/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/oauth/client/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/oauth/server/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/restful_dispatch/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ruby_spring_support/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/soap_header/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/sts/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_addressing/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_notification/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_policy/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_rm/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/sign_enc/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/ut/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/ut_policy/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/ut_sign/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_dynamic_client/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_https/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_pure_xml/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_rpclit/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_soap12/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_xml_wrapped/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_xmlbeans/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/integration/jca/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/integration/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/cxf-jaxrs-service/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/codegen-plugin/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/corba/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/java2ws-plugin/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/wadl2java-plugin/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/wsdl-validator-plugin/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/all/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/compatible/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/jaxrs/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/minimal/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/commands/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/features/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/parent/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/coloc/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/corba/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/object/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/soap/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/xml/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/core/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/aegis/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/jaxb/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/jibx/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/sdo/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/xmlbeans/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/features/clustering/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/jaxrs/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/jaxws/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/js/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/simple/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/javascript-rt/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/javascript-tests/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/management-web/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/management/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/rs/extensions/providers/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/rs/extensions/search/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/cors/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/oauth/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/oauth2/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/sso/saml/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/xml/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/transports/http-jetty/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/transports/http/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/transports/jms/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/transports/local/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/ws/addr/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/ws/mex/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/ws/policy/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/ws/rm/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/ws/security/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/services/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/services/sts/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/services/sts/sts-core/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/services/sts/sts-war/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/advanced/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/basic/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/services/wsn/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-api/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-core/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-osgi/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/grizzly/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/webapp/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/databinding/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/jaxrs/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/jaxws/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/rs-security/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/transport-jms/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/transports/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/uncategorized/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/ws-rm/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/ws-security-examples/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/ws-security/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/ws-specs/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/codegen/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/java2ws/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/testutils/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/common/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/corba/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/javato/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/javato/ws/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/validator/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/wadlto/jaxrs/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/wadlto/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/core/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/databinding/jaxb/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/frontend/javascript/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/frontend/jaxws/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/misc/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/test/pom.xml
Log:
Moving to next version
Modified: thirdparty/cxf/branches/cxf-2.6.6/api/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/api/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/api/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -23,13 +23,13 @@
<packaging>jar</packaging>
<name>Apache CXF API</name>
<description>Apache CXF API</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/common/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/common/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/common/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common</artifactId>
<packaging>pom</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Common</name>
<description>Apache CXF Common</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/common/wstx-msv-validation/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/common/wstx-msv-validation/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/common/wstx-msv-validation/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-wstx-msv-validation</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Woodstox/MSV Schema Validation</name>
<description>Apache CXF Woodstox/MSV Schema Validation</description>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<dependencies>
Modified: thirdparty/cxf/branches/cxf-2.6.6/common/xerces-xsd-validation/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/common/xerces-xsd-validation/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/common/xerces-xsd-validation/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xerces-xsd-validation</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF XML Schema Validation with Xerces</name>
<description>Apache CXF XML Schema Validation with Xerces</description>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<dependencies>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/manifest/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/manifest/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/manifest/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -24,13 +24,13 @@
<packaging>jar</packaging>
<name>Apache CXF Manifest Jar</name>
<description>Apache CXF Manifest Jar</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -23,13 +23,13 @@
<packaging>pom</packaging>
<name>Apache CXF Distribution</name>
<description>Apache CXF Distribution</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/aegis/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/aegis/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/aegis/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>aegis</artifactId>
<name>CXF sample using code first POJO's and the Aegis Binding</name>
<description>CXF sample using code first POJO's and the Aegis Binding</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
@@ -103,24 +103,24 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-databinding-aegis</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- The server example in here launches the embedded jetty. Not needed
if you deploy a WAR. -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/aegis_standalone/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/aegis_standalone/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/aegis_standalone/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>aegis-standalone</artifactId>
<name>CXF sample using the Aegis Binding without any webservice</name>
<description>CXF sample using the Aegis Binding without any webservice</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -101,7 +101,7 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-databinding-aegis</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>net.java.dev.stax-utils</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/callback/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/callback/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/callback/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>callback</artifactId>
<name>CXF sample using a callback object</name>
<description>CXF sample using a callback object</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -150,17 +150,17 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/configuration_interceptor/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/configuration_interceptor/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/configuration_interceptor/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>configuration_interceptor</artifactId>
<name>CXF Sample of Stream GZIP Interceptor</name>
<description>CXF Sample of Stream GZIP Interceptor</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -130,22 +130,22 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-management</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/corba/bank/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/corba/bank/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/corba/bank/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -24,12 +24,12 @@
<name>Bank sample using JAX-WS API's to talk via CORBA/IIOP</name>
<description>Bank sample using JAX-WS API's to talk via CORBA/IIOP</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<properties>
@@ -132,17 +132,17 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-bindings-corba</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-common</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/corba/bank_ws_addressing/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/corba/bank_ws_addressing/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/corba/bank_ws_addressing/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -24,12 +24,12 @@
<name>Bank sample using JAX-WS API's to talk via CORBA/IIOP</name>
<description>Bank sample using JAX-WS API's to talk via CORBA/IIOP</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<properties>
@@ -208,17 +208,17 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-bindings-corba</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-common</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/corba/hello_world/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/corba/hello_world/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/corba/hello_world/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -24,12 +24,12 @@
<name>hello-world sample using JAX-WS API's to talk via CORBA/IIOP</name>
<description>hello-world sample using JAX-WS API's to talk via CORBA/IIOP</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<properties>
@@ -253,17 +253,17 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-bindings-corba</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-common</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/groovy_spring_support/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/groovy_spring_support/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/groovy_spring_support/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -23,12 +23,12 @@
<packaging>war</packaging>
<name>Spring HTTP Servlet demo with groovy support</name>
<description>Spring HTTP Servlet demo with groovy support</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -111,18 +111,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/in_jvm_transport/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/in_jvm_transport/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/in_jvm_transport/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>in_jvm_transport</artifactId>
<name>Colocated Demo using Document/Literal Style</name>
<description>Colocated Demo using Document/Literal Style</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
@@ -97,23 +97,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-bindings-coloc</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_jaxws/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_jaxws/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_jaxws/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -23,12 +23,12 @@
<packaging>war</packaging>
<name>Java First demo using JAX-WS APIs</name>
<description>Java First demo using JAX-WS APIs</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -125,12 +125,12 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_jaxws_factory_bean/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_jaxws_factory_bean/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_jaxws_factory_bean/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>java_first_jaxws_factory_bean</artifactId>
<name>Java First demo service using the JAXWSFactoryBeans</name>
<description>Java First demo service using the JAXWSFactoryBeans</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -95,18 +95,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_jms/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_jms/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_jms/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -24,12 +24,12 @@
<artifactId>java_first_jms</artifactId>
<name>Java First demo using JMS</name>
<description>Java First demo using JMS</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
@@ -119,12 +119,12 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_pojo/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_pojo/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_pojo/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>java_first_pojo</artifactId>
<name>Java First POJO Sample</name>
<description>Java First POJO Sample</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
@@ -96,18 +96,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_spring_support/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_spring_support/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_spring_support/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -20,7 +20,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>java_first_spring_support</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Spring HTTP Sample</name>
<description>Spring HTTP Sample</description>
<packaging>war</packaging>
@@ -28,7 +28,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -98,17 +98,17 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/basic/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/basic/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/basic/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>jax_rs_basic</artifactId>
<name>JAX-RS Basic Demo</name>
<description>JAX-RS Basic Demo</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<properties>
@@ -97,18 +97,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- This dependency is needed if you're using the Jetty container -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/basic_https/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/basic_https/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/basic_https/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>jax_rs_basic_https</artifactId>
<name>JAX-RS Basic Demo With HTTPS communications</name>
<description>JAX-RS Basic Demo With HTTPS communications</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
@@ -99,12 +99,12 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/content_negotiation/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/content_negotiation/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/content_negotiation/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>jax_rs_content_negotiation</artifactId>
<name>JAX-RS Content Negotiation Demo</name>
<description>JAX-RS Content Negotiation Demo</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<properties>
@@ -97,23 +97,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- This dependency is needed if you're using the Jetty container -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-extension-providers</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.codehaus.jettison</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/minimal_osgi/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/minimal_osgi/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/minimal_osgi/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -23,12 +23,12 @@
<artifactId>jax_rs_minimal_osgi</artifactId>
<name>JAX-RS Minimal OSGI Demo</name>
<description>JAX-RS Minimal OSGI Demo</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
@@ -154,7 +154,7 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-jaxrs</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<exclusions>
<!-- CXF's dependency tree includes JARs that are not OSGI bundles; we'll import the correct lines later -->
<exclusion>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/spring_security/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/spring_security/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/spring_security/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>jax_rs_spring_security</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>JAX-RS Spring Security Demo</name>
<description>JAX-RS Spring Security Demo</description>
<packaging>war</packaging>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<properties>
@@ -91,18 +91,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- This dependency is needed if you're using the Jetty container -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_server_aegis_client/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_server_aegis_client/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_server_aegis_client/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,11 +22,11 @@
<artifactId>jax_service_aegis_client</artifactId>
<name>Sample of JAX-* Service Using an Aegis Client</name>
<description>Sample of JAX-* Service Using an Aegis Client</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
@@ -95,23 +95,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-databinding-aegis</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jaxws_async/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jaxws_async/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jaxws_async/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,13 +22,13 @@
<artifactId>jaxws_async</artifactId>
<name>JAX-WS Asynchronous Demo using Document/Literal Style</name>
<description>JAX-WS Asynchronous Demo using Document/Literal Style</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<packaging>war</packaging>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
@@ -137,12 +137,12 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
@@ -155,7 +155,7 @@
<!-- Not needed if deploying to a Servlet 3 based container or non-jetty container -->
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>org.eclipse.jetty</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jaxws_dispatch_provider/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jaxws_dispatch_provider/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jaxws_dispatch_provider/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>jaxws_dispatch_provider</artifactId>
<name>JAX-WS Dispatch/Provider Demo</name>
<description>JAX-WS Dispatch/Provider Demo</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -124,18 +124,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jaxws_handlers/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jaxws_handlers/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jaxws_handlers/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,11 +22,11 @@
<artifactId>jaxws_handlers</artifactId>
<name>JAX-WS Handler Demo</name>
<description>JAX-WS Handler Demo</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
@@ -125,18 +125,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_pubsub/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_pubsub/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_pubsub/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,11 +22,11 @@
<artifactId>jms_pubsub</artifactId>
<name>JMS Transport Publish/Subscribe Demo using Document-Literal Style</name>
<description>JMS Transport Publish/Subscribe Demo using Document-Literal Style</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
@@ -46,7 +46,7 @@
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -147,12 +147,12 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_queue/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_queue/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_queue/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>jms_queue</artifactId>
<name>JMS Transport Queue Demo using Document-Literal Style</name>
<description>JMS Transport Queue Demo using Document-Literal Style</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
@@ -148,12 +148,12 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_spec_demo/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_spec_demo/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_spec_demo/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>jms_spec_demo</artifactId>
<name>SOAP/JMS Transport Specification Demo using Document-Literal Style</name>
<description>SOAP/JMS Transport Specification Demo using Document-Literal Style</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
@@ -147,12 +147,12 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_spring_config/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_spring_config/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_spring_config/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -23,12 +23,12 @@
<packaging>jar</packaging>
<name>WSDL first demo using the jms transport and jmsConfigFeature</name>
<description>WSDL first demo using the jms transport and jmsConfigFeature</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
@@ -186,12 +186,12 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf.xjc-utils</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_browser_client_java_first/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_browser_client_java_first/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_browser_client_java_first/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>js_browser_client_java</artifactId>
<name>Generated JavaScript Sample using JAX-WS and JSR-181</name>
<description>Generated JavaScript Sample using JAX-WS and JSR-181</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
@@ -73,22 +73,22 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-javascript</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_browser_client_simple/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_browser_client_simple/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_browser_client_simple/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>js_browser_client_simple</artifactId>
<name>JavaScript Client Demo using Document/Literal Style</name>
<description>JavaScript Client Demo using Document/Literal Style</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
@@ -122,22 +122,22 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-javascript</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_client/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_client/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_client/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>js_client</artifactId>
<name>Hello World Client Demo using JavaScript</name>
<description>Hello World Client Demo using JavaScript</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
@@ -123,22 +123,22 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-javascript</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>rhino</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_provider/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_provider/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_provider/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>js_provider</artifactId>
<name>Hello world javascript demo</name>
<description>Hello world javascript demo</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -143,18 +143,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-js</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/logbrowser/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/logbrowser/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/logbrowser/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>logbrowser</artifactId>
<name>LogBrowser</name>
<description>LogBrowser</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/mtom/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/mtom/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/mtom/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>mtom</artifactId>
<name>MTOM Demo for SWA and XOP</name>
<description>MTOM Demo for SWA and XOP</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
@@ -128,18 +128,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/oauth/client/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/oauth/client/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/oauth/client/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/oauth/server/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/oauth/server/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/oauth/server/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
<packaging>pom</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Samples</name>
<description>Apache CXF Samples</description>
<url>http://cxf.apache.org</url>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/restful_dispatch/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/restful_dispatch/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/restful_dispatch/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>restful_dispatch</artifactId>
<name>RESTful Hello World Demo</name>
<description>RESTful Hello World Demo</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -96,23 +96,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ruby_spring_support/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ruby_spring_support/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ruby_spring_support/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -23,12 +23,12 @@
<packaging>war</packaging>
<name>Spring HTTP Servlet demo with ruby support</name>
<description>Spring HTTP Servlet demo with ruby support</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -111,18 +111,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jruby</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/soap_header/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/soap_header/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/soap_header/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>soap_header</artifactId>
<name>Sample using SOAP Headers</name>
<description>Sample using SOAP Headers</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
@@ -123,18 +123,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/sts/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/sts/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/sts/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>sts</artifactId>
<name>CXF STS Demo</name>
<description>CXF STS Demo</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_addressing/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_addressing/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_addressing/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>ws_addressing</artifactId>
<name>WS-Addressing Demo</name>
<description>WS-Addressing Demo</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
@@ -129,17 +129,17 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_notification/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_notification/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_notification/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>ws_notification</artifactId>
<name>WS-Notification Demo</name>
<description>WS-Notification Demo</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -95,32 +95,32 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-addr</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf.services.wsn</groupId>
<artifactId>cxf-services-wsn-core</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_policy/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_policy/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_policy/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>ws_policy</artifactId>
<name>WS-Policy Demo</name>
<description>WS-Policy Demo</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
@@ -124,17 +124,17 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_rm/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_rm/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_rm/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>ws_rm</artifactId>
<name>WS-RM Demo</name>
<description>WS-RM Demo</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -118,23 +118,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-rm</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/sign_enc/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/sign_enc/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/sign_enc/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>wssec_sign_enc</artifactId>
<name>CXF WS-Security Sign Encoding Demo</name>
<description>CXF WS-Security Sign Encoding Demo</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
@@ -129,38 +129,38 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-rm</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-addr</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/ut/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/ut/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/ut/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>wssec_ut</artifactId>
<name>CXF WS-Security UT Demo</name>
<description>CXF WS-Security UT Demo</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<properties>
@@ -118,23 +118,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/ut_policy/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/ut_policy/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/ut_policy/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>wssec_ut_policy</artifactId>
<name>WS-Security UT Policy Demo</name>
<description>WS-Security UT Policy Demo</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
@@ -155,27 +155,27 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/ut_sign/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/ut_sign/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/ut_sign/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>wssec_ut_sign</artifactId>
<name>WS-Security UT Sign Demo</name>
<description>WS-Security UT Sign Demo</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
@@ -130,38 +130,38 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-rm</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-addr</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -23,12 +23,12 @@
<packaging>war</packaging>
<name>WSDL first demo using Document/Literal Style</name>
<description>WSDL first demo using Document/Literal Style</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -168,12 +168,12 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf.xjc-utils</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_dynamic_client/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_dynamic_client/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_dynamic_client/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>wsdl_first_dynamic_client</artifactId>
<name>CXF Dynamic Client Sample</name>
<description>CXF Dynamic Client Sample</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -122,18 +122,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_https/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_https/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_https/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>wsdl_first_https</artifactId>
<name>WSDL first demo using HTTPS</name>
<description>WSDL first demo using HTTPS</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
@@ -209,17 +209,17 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_pure_xml/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_pure_xml/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_pure_xml/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>wsdl_first_pure_xml</artifactId>
<name>WSDL first demo using BARE Style in XML Binding (pure XML over HTTP)</name>
<description>WSDL first demo using BARE Style in XML Binding (pure XML over HTTP)</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -122,18 +122,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_rpclit/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_rpclit/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_rpclit/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>wsdl_first_rpclit</artifactId>
<name>WSDL first demo using RPC-Literal Style</name>
<description>WSDL first demo using RPC-Literal Style</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
@@ -124,18 +124,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_soap12/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_soap12/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_soap12/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>wsdl_first_soap12</artifactId>
<name>WSDL first demo using SOAP12 in Document/Literal Style</name>
<description>WSDL first demo using SOAP12 in Document/Literal Style</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -148,18 +148,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_xml_wrapped/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_xml_wrapped/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_xml_wrapped/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>wsdl_first_xml_wrapped</artifactId>
<name>CXF sample using WRAPPED Style in XML Binding (pure XML over HTTP)</name>
<description>CXF sample using WRAPPED Style in XML Binding (pure XML over HTTP)</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
@@ -149,18 +149,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_xmlbeans/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_xmlbeans/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_xmlbeans/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,12 +22,12 @@
<artifactId>wsdl_first_xmlbeans</artifactId>
<name>WSDL first demo using Document/Literal Style and XMLBeans DataBinding</name>
<description>WSDL first demo using Document/Literal Style and XMLBeans DataBinding</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -134,23 +134,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-databinding-xmlbeans</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/integration/jca/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/integration/jca/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/integration/jca/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-integration-jca</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF JCA Connection</name>
<description>Apache CXF JCA Connection</description>
<url>http://cxf.apache.org</url>
@@ -30,7 +30,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/integration/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/integration/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/integration/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-integration</artifactId>
<packaging>pom</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Integration</name>
<description>Apache CXF Integration</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/cxf-jaxrs-service/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/cxf-jaxrs-service/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/cxf-jaxrs-service/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -23,13 +23,13 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<groupId>org.apache.cxf.archetype</groupId>
<artifactId>cxf-jaxrs-service</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<packaging>maven-archetype</packaging>
<name>Apache CXF Archetype - Simple JAX-RS webapp</name>
Modified: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -23,13 +23,13 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<groupId>org.apache.cxf.archetype</groupId>
<artifactId>cxf-jaxws-javafirst</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<packaging>maven-archetype</packaging>
<name>Apache CXF Archetype - Simple JAX-WS Java First</name>
Modified: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-archetypes</artifactId>
<packaging>pom</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Maven Archetypes</name>
<description>Apache CXF Maven Archetypes</description>
<url>http://cxf.apache.org</url>
@@ -30,7 +30,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-maven-plugins</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/codegen-plugin/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/codegen-plugin/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/codegen-plugin/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Code Generation Maven2 Plugins</name>
<description>Apache CXF Code Generation Maven2 Plugins</description>
<url>http://cxf.apache.org</url>
@@ -30,7 +30,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-maven-plugins</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
Modified: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/corba/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/corba/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/corba/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-corbatools-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF CORBA Tools Maven2 Plugins</name>
<description>Apache CXF CORBA Tools Maven2 Plugins</description>
<url>http://cxf.apache.org</url>
@@ -30,7 +30,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-maven-plugins</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<cxf.manifest.location />
Modified: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/java2ws-plugin/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/java2ws-plugin/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/java2ws-plugin/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-java2ws-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Java2WS Maven2 Plugin</name>
<description>Apache CXF Java2WS Maven2 Plugin</description>
<url>http://cxf.apache.org</url>
@@ -31,7 +31,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-maven-plugins</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<cxf.manifest.location />
Modified: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-maven-plugins</artifactId>
<packaging>pom</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Maven Plugins</name>
<description>Apache CXF Maven Plugins</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/wadl2java-plugin/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/wadl2java-plugin/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/wadl2java-plugin/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-wadl2java-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF WADL2Java Code Generation Maven2 Plugin</name>
<description>Apache CXF WADL2Java Code Generation Maven2 Plugin</description>
<url>http://cxf.apache.org</url>
@@ -31,7 +31,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-maven-plugins</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<cxf.manifest.location />
Modified: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/wsdl-validator-plugin/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/wsdl-validator-plugin/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/wsdl-validator-plugin/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-wsdl-validator-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF WSDL Validator Maven2 Plugin</name>
<description>Apache CXF WSDL Validator Maven2 Plugin</description>
<url>http://cxf.apache.org</url>
@@ -30,7 +30,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-maven-plugins</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<cxf.manifest.location />
Modified: thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/all/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/all/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/all/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -24,13 +24,13 @@
<packaging>bundle</packaging>
<name>Apache CXF Bundle Jar</name>
<description>Apache CXF Bundle Jar</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<bundle.symbolic.name>${project.groupId}.bundle</bundle.symbolic.name>
Modified: thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/compatible/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/compatible/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/compatible/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -24,13 +24,13 @@
<packaging>bundle</packaging>
<name>Apache CXF Compatibility Bundle Jar</name>
<description>Apache CXF Compatibility Bundle Jar</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<cxf.osgi.symbolic.name>${project.groupId}.bundle</cxf.osgi.symbolic.name>
Modified: thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/jaxrs/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/jaxrs/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/jaxrs/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -24,13 +24,13 @@
<packaging>bundle</packaging>
<name>Apache CXF JAX-RS Bundle Jar</name>
<description>Apache CXF JAX-RS Bundle Jar</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<bundle.symbolic.name>${project.groupId}.bundle-jaxrs</bundle.symbolic.name>
Modified: thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/minimal/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/minimal/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/minimal/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -24,13 +24,13 @@
<packaging>bundle</packaging>
<name>Apache CXF Minimal Bundle Jar</name>
<description>Apache CXF Minimal Bundle Jar</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<properties>
<bundle.symbolic.name>${project.groupId}.bundle-minimal</bundle.symbolic.name>
Modified: thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -24,13 +24,13 @@
<packaging>pom</packaging>
<name>Apache CXF Bundle Parent</name>
<description>Apache CXF Bundle Parent</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/commands/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/commands/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/commands/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.karaf</groupId>
<artifactId>karaf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<groupId>org.apache.cxf.karaf</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/features/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/features/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/features/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.karaf</groupId>
<artifactId>karaf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<groupId>org.apache.cxf.karaf</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -23,14 +23,14 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent</relativePath>
</parent>
<groupId>org.apache.cxf.karaf</groupId>
<artifactId>karaf-parent</artifactId>
<packaging>pom</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Karaf Parent</name>
<description>Apache CXF Karaf Parent</description>
Modified: thirdparty/cxf/branches/cxf-2.6.6/parent/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/parent/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/parent/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -19,13 +19,13 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Parent</name>
<description>Apache CXF Parent POM</description>
<url>http://cxf.apache.org</url>
Modified: thirdparty/cxf/branches/cxf-2.6.6/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF</name>
<description>Apache CXF is an open-source services framework that aids in
the development of services using front-end programming APIs, like JAX-WS
@@ -31,9 +31,9 @@
<packaging>pom</packaging>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossws/thirdparty/cxf/tags/cxf-2....</connection>
- <developerConnection>scm:svn:http://anonsvn.jboss.org/repos/jbossws/thirdparty/cxf/tags/cxf-2....</developerConnection>
- <url>http://fisheye.jboss.com/viewrep/JBossWS/thirdparty/cxf/tags/2.6.6.jbosso...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossws/thirdparty/cxf/tags/cxf-2....</connection>
+ <developerConnection>scm:svn:http://anonsvn.jboss.org/repos/jbossws/thirdparty/cxf/tags/cxf-2....</developerConnection>
+ <url>http://fisheye.jboss.com/viewrep/JBossWS/thirdparty/cxf/tags/2.6.6.jbosso...</url>
</scm>
<issueManagement>
<system>jira</system>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/coloc/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/coloc/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/coloc/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/corba/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/corba/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/corba/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/object/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/object/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/object/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/soap/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/soap/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/soap/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/xml/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/xml/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/xml/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/core/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/core/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/core/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-core</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Runtime Core</name>
<description>Apache CXF Runtime Core</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/aegis/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/aegis/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/aegis/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/jaxb/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/jaxb/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/jaxb/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<properties>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/jibx/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/jibx/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/jibx/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/sdo/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/sdo/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/sdo/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/xmlbeans/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/xmlbeans/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/xmlbeans/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/features/clustering/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/features/clustering/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/features/clustering/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-features-clustering</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Runtime Clustering</name>
<description>Failover and loadbalancing support</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/jaxrs/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/jaxrs/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/jaxrs/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Runtime JAX-RS Frontend</name>
<description>Apache CXF Runtime JAX-RS Frontend</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/jaxws/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/jaxws/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/jaxws/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Runtime JAX-WS Frontend</name>
<description>Apache CXF Runtime JAX-WS Frontend</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/js/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/js/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/js/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-js</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Runtime JavaScript Frontend</name>
<description>Apache CXF Runtime JavaScript Frontend</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/simple/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/simple/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/simple/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-simple</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Runtime Simple Frontend</name>
<description>Apache CXF Runtime Simple Frontend</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/javascript-rt/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/javascript-rt/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/javascript-rt/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-runtime-javascript</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<dependencies>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/javascript-tests/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/javascript-tests/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/javascript-tests/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-runtime-javascript</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<dependencies>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/management/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/management/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/management/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-management</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Runtime Management</name>
<description>Apache CXF Runtime Management</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/management-web/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/management-web/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/management-web/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-management-web</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Runtime Web Management</name>
<description>Apache CXF Runtime Web Management</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt</artifactId>
<packaging>pom</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Runtime</name>
<description>Apache CXF Runtime</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/rs/extensions/providers/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/rs/extensions/providers/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/rs/extensions/providers/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-extension-providers</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF JAX-RS Extensions: Providers</name>
<description>Apache CXF JAX-RS Extensions: Providers</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/rs/extensions/search/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/rs/extensions/search/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/rs/extensions/search/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-extension-search</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF JAX-RS Extensions: Search</name>
<description>Apache CXF JAX-RS Extensions: Search</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/cors/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/cors/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/cors/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-security-cors</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF RS Cross-Origin Resource Sharing</name>
<description>Apache CXF RS XML Security</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/oauth/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/oauth/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/oauth/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-security-oauth</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Apache CXF Runtime OAuth 1.0a</name>
@@ -31,7 +31,7 @@
<parent>
<artifactId>cxf-rt-rs-security-oauth-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<properties>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/oauth2/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/oauth2/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/oauth2/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-security-oauth2</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Apache CXF Runtime OAuth 2.0</name>
@@ -31,7 +31,7 @@
<parent>
<artifactId>cxf-rt-rs-security-oauth-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-security-oauth-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Apache CXF Runtime RS Security OAuth Parent</name>
<description>Apache CXF Runtime RS Security OAuth Parent</description>
@@ -30,7 +30,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
<properties>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/sso/saml/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/sso/saml/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/sso/saml/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-security-sso-saml</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF RS SSO SAML</name>
<description>Apache CXF RS SSO SAML</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/xml/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/xml/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/xml/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-security-xml</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF RS XML Security</name>
<description>Apache CXF RS XML Security</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/transports/http/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/transports/http/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/transports/http/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Runtime HTTP Transport</name>
<description>Apache CXF Runtime HTTP Transport</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<properties>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/transports/http-jetty/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/transports/http-jetty/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/transports/http-jetty/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Runtime HTTP Jetty Transport</name>
<description>Apache CXF Runtime HTTP Jetty Transport</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<properties>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/transports/jms/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/transports/jms/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/transports/jms/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Runtime JMS Transport</name>
<description>Apache CXF Runtime JMS Transport</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/transports/local/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/transports/local/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/transports/local/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-local</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Runtime Local Transport</name>
<description>Apache CXF Runtime Local Transport</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/ws/addr/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/ws/addr/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/ws/addr/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/ws/mex/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/ws/mex/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/ws/mex/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/ws/policy/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/ws/policy/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/ws/policy/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/ws/rm/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/ws/rm/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/ws/rm/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/ws/security/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/ws/security/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/ws/security/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<properties>
Modified: thirdparty/cxf/branches/cxf-2.6.6/services/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/services/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/services/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf.services</groupId>
<artifactId>cxf-services</artifactId>
<packaging>pom</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Services</name>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
<relativePath>../pom.xml</relativePath>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/services/sts/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/services/sts/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/services/sts/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.services.sts</groupId>
<artifactId>cxf-services-sts</artifactId>
<packaging>pom</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF STS service</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf.services</groupId>
<artifactId>cxf-services</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/services/sts/sts-core/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/services/sts/sts-core/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/services/sts/sts-core/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/services/sts/sts-war/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/services/sts/sts-war/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/services/sts/sts-war/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/advanced/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/advanced/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/advanced/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/basic/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/basic/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/basic/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.services.sts</groupId>
<artifactId>cxf-services-sts-systests</artifactId>
<packaging>pom</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF STS systests</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf.services.sts</groupId>
<artifactId>cxf-services-sts</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/services/wsn/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/services/wsn/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/services/wsn/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.services.wsn</groupId>
<artifactId>cxf-services-wsn</artifactId>
<packaging>pom</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF WSN service</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf.services</groupId>
<artifactId>cxf-services</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-api/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-api/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-api/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf.services.wsn</groupId>
<artifactId>cxf-services-wsn-api</artifactId>
<packaging>bundle</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF WSN API</name>
<description>Apache CXF WSN API</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-core/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-core/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-core/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf.services.wsn</groupId>
<artifactId>cxf-services-wsn-core</artifactId>
<packaging>bundle</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF WSN Core</name>
<description>Apache CXF WSN Core Service</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-osgi/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-osgi/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-osgi/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf.services.wsn</groupId>
<artifactId>cxf-services-wsn-osgi</artifactId>
<packaging>bundle</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF WSN OSGi</name>
<description>Apache CXF WSN Full OSGi</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/grizzly/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/grizzly/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/grizzly/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,14 +22,14 @@
<parent>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-container-integration</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-ci-grizzly</artifactId>
<name>Apache CXF Container Integration Test Grizzly</name>
<description>Apache CXF Container Integration Test Grizzly</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<repositories>
<repository>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -29,7 +29,7 @@
<artifactId>cxf-systests-container-integration</artifactId>
<name>Apache CXF Container Integration System Tests</name>
<description>Apache CXF Container Integration System Tests</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<packaging>pom</packaging>
<url>http://cxf.apache.org</url>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/webapp/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/webapp/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/webapp/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,14 +22,14 @@
<parent>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-container-integration</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-ci-webapp</artifactId>
<name>Apache CXF Container Integration Test Webapp</name>
<description>Apache CXF Container Integration Test Webapp</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<packaging>war</packaging>
<dependencies>
<dependency>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/databinding/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/databinding/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/databinding/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -29,7 +29,7 @@
<artifactId>cxf-systests-databinding</artifactId>
<name>Apache CXF Databinding System Tests</name>
<description>Apache CXF Databinding System Tests</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/jaxrs/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/jaxrs/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/jaxrs/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -29,7 +29,7 @@
<artifactId>cxf-systests-jaxrs</artifactId>
<name>Apache CXF JAX-RS System Tests</name>
<description>Apache CXF JAX-RS System Tests</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<dependencies>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/jaxws/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/jaxws/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/jaxws/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -29,7 +29,7 @@
<artifactId>cxf-systests-jaxws</artifactId>
<name>Apache CXF JAX-WS System Tests</name>
<description>Apache CXF JAX-WS System Tests</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<build>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests</artifactId>
<packaging>pom</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF System Tests</name>
<description>Apache CXF System Tests</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/rs-security/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/rs-security/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/rs-security/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -29,7 +29,7 @@
<artifactId>cxf-systests-rs-security</artifactId>
<name>Apache CXF JAX-RS System Advanced Security Tests</name>
<description>Apache CXF JAX-RS System Advanced Security Tests</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/transport-jms/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/transport-jms/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/transport-jms/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -29,7 +29,7 @@
<artifactId>cxf-systests-transport-jms</artifactId>
<name>Apache CXF Transport System Tests JMS</name>
<description>Apache CXF Transport System Tests JMS</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<build>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/transports/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/transports/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/transports/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -29,7 +29,7 @@
<artifactId>cxf-systests-transports</artifactId>
<name>Apache CXF Transport System Tests</name>
<description>Apache CXF Transport System Tests</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/uncategorized/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/uncategorized/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/uncategorized/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -29,7 +29,7 @@
<artifactId>cxf-systests-uncategorized</artifactId>
<name>Apache CXF Uncategorized System Tests</name>
<description>Apache CXF Uncategorized System Tests</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/ws-rm/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/ws-rm/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/ws-rm/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -29,7 +29,7 @@
<artifactId>cxf-systests-ws-rm</artifactId>
<name>Apache CXF WS-RM Specifications System Tests</name>
<description>Apache CXF WS-RM Specifications System Tests</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<dependencies>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/ws-security/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/ws-security/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/ws-security/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -20,7 +20,7 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -28,7 +28,7 @@
<artifactId>cxf-systests-ws-security</artifactId>
<name>Apache CXF WS-Security System Tests</name>
<description>Apache CXF WS-Security System Tests</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<build>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/ws-security-examples/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/ws-security-examples/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/ws-security-examples/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -20,7 +20,7 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -28,7 +28,7 @@
<artifactId>cxf-systests-ws-security-examples</artifactId>
<name>Apache CXF WS-Security Interop System Tests</name>
<description>Apache CXF WS-Security Interop System Tests</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<build>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/ws-specs/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/ws-specs/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/ws-specs/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -29,7 +29,7 @@
<artifactId>cxf-systests-ws-specs</artifactId>
<name>Apache CXF WS-* Specifications System Tests</name>
<description>Apache CXF WS-* Specifications System Tests</description>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/codegen/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/codegen/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/codegen/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -20,13 +20,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.systests.wsdl_maven</groupId>
<artifactId>cxf-systests-codegen</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Test for generating code from wsdl in repo</name>
<description>Test for generating code from wsdl in repo</description>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<build>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/java2ws/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/java2ws/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/java2ws/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -20,13 +20,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.systests.wsdl_maven</groupId>
<artifactId>cxf-systests-java2ws</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Test for writing wsdl to repo</name>
<description>Test for writing wsdl to repo</description>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<build>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-wsdl-maven</artifactId>
<packaging>pom</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF System Tests for Maven Plugins</name>
<description>Apache CXF System Tests for Maven Plugins</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/testutils/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/testutils/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/testutils/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-testutils</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Test Utilities</name>
<description>Apache CXF Test Utilities</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/common/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/common/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/common/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-common</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Command Line Tools Common</name>
<description>Apache CXF Command Line Tools Common</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/corba/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/corba/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/corba/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-corba</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Command Line Tools CORBA</name>
<description>Apache CXF Command Line Tools CORBA</description>
<url>http://cxf.apache.org</url>
@@ -30,7 +30,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/javato/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/javato/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/javato/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-javato</artifactId>
<packaging>pom</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Command Line Tools JavaTo</name>
<description>Apache CXF Command Line Tools JavaTo</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/javato/ws/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/javato/ws/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/javato/ws/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-java2ws</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Command Line Tools JavaTo WS</name>
<description>Apache CXF Command Line Tools JavaTo WS</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools</artifactId>
<packaging>pom</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Command Line Tools</name>
<description>Apache CXF Command Line Tools</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/validator/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/validator/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/validator/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-validator</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Command Line Tools Validator</name>
<description>Apache CXF Command Line Tools Validator</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/wadlto/jaxrs/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/wadlto/jaxrs/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/wadlto/jaxrs/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wadlto-jaxrs</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Command Line Tools WADLTo JAXRS Frontend</name>
<description>Apache CXF Command Line Tools WADLTo JAXRS Frontend</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/wadlto/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/wadlto/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/wadlto/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wadlto</artifactId>
<packaging>pom</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Command Line Tools WADLTo</name>
<description>Apache CXF Command Line Tools WADLTo</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/core/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/core/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/core/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-core</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Command Line Tools WSDLTo Core</name>
<description>Apache CXF Command Line Tools WSDLTo Core</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/databinding/jaxb/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/databinding/jaxb/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/databinding/jaxb/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-databinding-jaxb</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Command Line Tools WSDLTo JAXB Databinding</name>
<description>Apache CXF Command Line Tools WSDLTo JAXB Databinding</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/frontend/javascript/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/frontend/javascript/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/frontend/javascript/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-frontend-javascript</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Command Line Tools WSDL to JavaScript Front End</name>
<description>Apache CXF Command Line Tools WSDL to JavaScript Front End</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/frontend/jaxws/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/frontend/jaxws/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/frontend/jaxws/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-frontend-jaxws</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Command Line Tools WSDLTo JAXWS Frontend</name>
<description>Apache CXF Command Line Tools WSDLTo JAXWS Frontend</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/misc/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/misc/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/misc/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-misctools</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Command Line Tools WSDLTo Misctools</name>
<description>Apache CXF Command Line Tools WSDLTo Misctools</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto</artifactId>
<packaging>pom</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Command Line Tools WSDLTo</name>
<description>Apache CXF Command Line Tools WSDLTo</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/test/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/test/pom.xml 2013-04-05 16:01:07 UTC (rev 17455)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/test/pom.xml 2013-04-05 16:09:59 UTC (rev 17456)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-test</artifactId>
<packaging>jar</packaging>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<name>Apache CXF Command Line Tools WSDLTo Test</name>
<description>Apache CXF Command Line Tools WSDLTo Test</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6.jbossorg-1-SNAPSHOT</version>
+ <version>2.6.6.jbossorg-2-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
11 years, 11 months
JBossWS SVN: r17455 - stack/cxf/branches/jbossws-cxf-4.1.x.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2013-04-05 12:01:07 -0400 (Fri, 05 Apr 2013)
New Revision: 17455
Modified:
stack/cxf/branches/jbossws-cxf-4.1.x/
Log:
Blocked revisions 17415,17427,17434,17453 via svnmerge
.......
r17415 | alessio.soldano(a)jboss.com | 2013-03-26 11:34:23 +0100 (Tue, 26 Mar 2013) | 2 lines
[JBWS-3614] Moving to wss4j 1.6.10
.......
r17427 | alessio.soldano(a)jboss.com | 2013-03-28 15:08:00 +0100 (Thu, 28 Mar 2013) | 2 lines
[JBWS-3618] Adding wstx dependency in org.apache.cxf AS module
.......
r17434 | alessio.soldano(a)jboss.com | 2013-04-04 00:35:17 +0200 (Thu, 04 Apr 2013) | 2 lines
[JBWS-3566] Moving to CXF 2.7.4
.......
r17453 | alessio.soldano(a)jboss.com | 2013-04-05 17:21:12 +0200 (Fri, 05 Apr 2013) | 2 lines
[JBWS-3618] no need for importing services
.......
Property changes on: stack/cxf/branches/jbossws-cxf-4.1.x
___________________________________________________________________
Modified: svnmerge-blocked
- /stack/cxf/trunk:17219-17220,17224,17226,17243,17246,17256-17258,17335,17346-17347,17351,17362,17365-17366,17380-17381
+ /stack/cxf/trunk:17219-17220,17224,17226,17243,17246,17256-17258,17335,17346-17347,17351,17362,17365-17366,17380-17381,17415,17427,17434,17453
11 years, 11 months