JBossWS SVN: r12731 - in stack/cxf/trunk: modules/server and 3 other directories.
by jbossws-commits@lists.jboss.org
Author: sergeyb
Date: 2010-08-04 09:44:58 -0400 (Wed, 04 Aug 2010)
New Revision: 12731
Added:
stack/cxf/trunk/modules/server/src/main/resources/jbossws-cxf-jms-config-as6.xml
Modified:
stack/cxf/trunk/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml
stack/cxf/trunk/modules/server/pom.xml
stack/cxf/trunk/modules/server/src/main/resources/jbossws-cxf-config-as6.xml
stack/cxf/trunk/modules/server/src/main/scripts/antrun-beans-config.xml
stack/cxf/trunk/src/main/distro/build-deploy.xml
Log:
[JBWS-3094] Updating build scripts to ignore JMS related resources for non-Spring deployments
Modified: stack/cxf/trunk/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml
===================================================================
--- stack/cxf/trunk/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml 2010-08-04 13:33:47 UTC (rev 12730)
+++ stack/cxf/trunk/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml 2010-08-04 13:44:58 UTC (rev 12731)
@@ -29,6 +29,7 @@
<include name="**/commons-collections.jar"/>
<include name="**/commons-lang.jar"/>
<include name="**/cxf-*.jar"/>
+ <exclude name="**/cxf-rt-transports-jms.jar"/>
<include name="**/jaxb-api.jar"/>
<include name="**/jaxb-impl.jar"/>
<include name="**/jaxb-xjc.jar"/>
@@ -69,6 +70,7 @@
<include name="**/asm.jar"/>
<include name="**/commons-beanutils.jar"/>
<include name="**/cxf-*.jar"/>
+ <exclude name="**/cxf-rt-transports-jms.jar"/>
<include name="**/FastInfoset.jar"/>
<include name="**/jaxrpc-api.jar"/>
<include name="**/jaxws-api.jar"/>
@@ -103,6 +105,10 @@
<include name="**/spring-tx.jar"/>
</patternset>
+ <patternset id="cxf.jms.patternset">
+ <include name="**/cxf-rt-transports-jms.jar"/>
+ </patternset>
+
<!-- ================================================================== -->
<!-- Deploy Bin -->
<!-- ================================================================== -->
@@ -354,6 +360,28 @@
</target>
<!-- ================================================================== -->
+ <!-- Install CXF JMS component which depends on Spring -->
+ <!-- ================================================================== -->
+
+ <macrodef name="macro-install-cxf-jms">
+ <attribute name="thirdpartydir"/>
+ <attribute name="targetdir"/>
+ <sequential>
+ <mkdir dir="@{targetdir}"/>
+ <copy todir="@{targetdir}" flatten="true" overwrite="true">
+ <fileset dir="@{thirdpartydir}">
+ <patternset refid="cxf.jms.patternset"/>
+ </fileset>
+ </copy>
+ </sequential>
+ </macrodef>
+
+ <target name="deploy-cxf-jms">
+ <macro-install-cxf-jms targetdir="${installserver}/client" thirdpartydir="${thirdpartydir}"/>
+ <macro-install-cxf-jms targetdir="${installserver}/common/lib" thirdpartydir="${thirdpartydir}"/>
+ </target>
+
+ <!-- ================================================================== -->
<!-- Undeploy JBossWS -->
<!-- ================================================================== -->
Modified: stack/cxf/trunk/modules/server/pom.xml
===================================================================
--- stack/cxf/trunk/modules/server/pom.xml 2010-08-04 13:33:47 UTC (rev 12730)
+++ stack/cxf/trunk/modules/server/pom.xml 2010-08-04 13:44:58 UTC (rev 12731)
@@ -333,7 +333,9 @@
</goals>
<configuration>
<tasks>
- <ant antfile="src/main/scripts/antrun-beans-config.xml" />
+ <ant antfile="src/main/scripts/antrun-beans-config.xml">
+ <property name="spring" value="${spring}"/>
+ </ant>
</tasks>
</configuration>
</execution>
@@ -385,6 +387,17 @@
</plugins>
</build>
</profile>
+
+ <!--
+ Name: spring
+ Descr: indicates if Spring will be required for deployments to succeed
+ -->
+ <profile>
+ <id>spring</id>
+ <properties>
+ <spring>true</spring>
+ </properties>
+ </profile>
</profiles>
</project>
Modified: stack/cxf/trunk/modules/server/src/main/resources/jbossws-cxf-config-as6.xml
===================================================================
--- stack/cxf/trunk/modules/server/src/main/resources/jbossws-cxf-config-as6.xml 2010-08-04 13:33:47 UTC (rev 12730)
+++ stack/cxf/trunk/modules/server/src/main/resources/jbossws-cxf-config-as6.xml 2010-08-04 13:44:58 UTC (rev 12731)
@@ -86,16 +86,5 @@
<property name="requires">ResourceResolver,StackDescriptor</property>
<property name="forJaxRpc">false</property>
</bean>
-
- <!---JMSEndpoints Deployment Aspect-->
- <bean name="JMSEndpointDeploymentAspect" class="org.jboss.wsf.stack.cxf.deployment.aspect.JMSEndpointDeploymentAspect">
- <property name="provides">BusHolder</property>
- <property name="forJaxRpc">false</property>
- </bean>
-
- <bean name="JMSEndpointRegistryDeploymentAspect" class="org.jboss.wsf.stack.cxf.deployment.aspect.JMSEndpointRegistryDeploymentAspect">
- <property name="requires">BusHolder</property>
- <property name="forJaxRpc">false</property>
- </bean>
-
-</deployment>
\ No newline at end of file
+
+</deployment>
Added: stack/cxf/trunk/modules/server/src/main/resources/jbossws-cxf-jms-config-as6.xml
===================================================================
--- stack/cxf/trunk/modules/server/src/main/resources/jbossws-cxf-jms-config-as6.xml (rev 0)
+++ stack/cxf/trunk/modules/server/src/main/resources/jbossws-cxf-jms-config-as6.xml 2010-08-04 13:44:58 UTC (rev 12731)
@@ -0,0 +1,101 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<deployment xmlns="urn:jboss:bean-deployer:2.0">
+
+ <!-- The registry for web service endpoints -->
+ <bean name="WSEndpointRegistry" class="org.jboss.wsf.framework.management.ManagedEndpointRegistry">
+ <property name="mbeanServer"><inject bean="WSMBeanServerLocator" property="mbeanServer"/></property>
+ </bean>
+
+ <!-- Logging redirector -->
+ <bean name="JDKLogRedirector" class="org.jboss.wsf.common.logging.JDKLogRedirector">
+ <property name="namespaces">
+ <list class="java.util.LinkedList" elementClass="java.lang.String">
+ <value>org.apache.cxf</value>
+ </list>
+ </property>
+ </bean>
+
+ <bean name="CXFJMSDescriptorProcessor" class="org.jboss.wsf.stack.cxf.deployment.jms.JMSDescriptorProcessorImpl">
+ <property name="validating">false</property>
+ <property name="descriptorName">jbossws-cxf.xml</property>
+ </bean>
+
+ <!-- Installed Record Processors-->
+ <bean name="WSMemoryBufferRecorder" class="org.jboss.wsf.framework.management.recording.MemoryBufferRecorder">
+ <property name="recording">false</property>
+ </bean>
+ <bean name="WSLogRecorder" class="org.jboss.wsf.framework.management.recording.LogRecorder">
+ <property name="recording">false</property>
+ </bean>
+
+ <!-- The stack specific deployment aspects -->
+ <bean name="WSCXFContextPropertiesDeploymentAspect" class="org.jboss.wsf.framework.deployment.ContextPropertiesDeploymentAspect">
+ <property name="provides">ContextProperties</property>
+ <property name="contextProperties">
+ <map keyClass="java.lang.String" valueClass="java.lang.String">
+ <entry>
+ <key>stack.transport.class.provider</key>
+ <value>org.jboss.wsf.stack.cxf.deployment.CXFServletClassProvider</value>
+ </entry>
+ </map>
+ </property>
+ <property name="forJaxRpc">false</property>
+ </bean>
+
+ <bean name="WSCXFDescriptorDeploymentAspect" class="org.jboss.wsf.stack.cxf.deployment.aspect.DescriptorDeploymentAspect">
+ <property name="requires">EndpointAddress,JAXBIntros</property>
+ <property name="provides">StackDescriptor</property>
+ <property name="invokerEJB3">org.jboss.wsf.stack.cxf.InvokerEJB3</property>
+ <property name="invokerJSE">org.jboss.wsf.stack.cxf.InvokerJSE</property>
+ <property name="forJaxRpc">false</property>
+ </bean>
+
+ <bean name="WSCXFResourceResolverDeploymentAspect" class="org.jboss.wsf.stack.cxf.deployment.aspect.ResourceResolverDeploymentAspect">
+ <property name="requires">JmsEndpointAddress</property>
+ <property name="provides">ResourceResolver</property>
+ <property name="forJaxRpc">false</property>
+ </bean>
+
+ <bean name="WSCXFEndpointHandlerDeploymentAspect" class="org.jboss.wsf.framework.deployment.EndpointHandlerDeploymentAspect">
+ <property name="requires">ContainerMetaData</property>
+ <property name="provides">StackEndpointHandler</property>
+ <property name="forJaxRpc">false</property>
+ </bean>
+
+ <bean name="WSCXFEndpointRecordProcessorDeploymentAspect" class="org.jboss.wsf.framework.deployment.EndpointRecordProcessorDeploymentAspect">
+ <property name="mbeanServer"><inject bean="WSMBeanServerLocator" property="mbeanServer"/></property>
+ <property name="requires">RegisteredEndpoint</property>
+ <property name="provides">EndpointRecordProcessors</property>
+ <property name="processors">
+ <list class="java.util.ArrayList" elementClass="org.jboss.wsf.spi.management.recording.RecordProcessor">
+ <inject bean="WSMemoryBufferRecorder"/>
+ <inject bean="WSLogRecorder"/>
+ </list>
+ </property>
+ <property name="forJaxRpc">false</property>
+ </bean>
+
+ <bean name="WSCXFJAXBIntroDeploymentAspect" class="org.jboss.wsf.framework.deployment.JAXBIntroDeploymentAspect">
+ <property name="provides">JAXBIntros</property>
+ <property name="forJaxRpc">false</property>
+ </bean>
+
+ <bean name="WSCXFBusDeploymentAspect" class="org.jboss.wsf.stack.cxf.deployment.aspect.BusDeploymentAspect">
+ <property name="provides">BusHolder</property>
+ <property name="requires">ResourceResolver,StackDescriptor</property>
+ <property name="forJaxRpc">false</property>
+ </bean>
+
+ <!---JMSEndpoints Deployment Aspect-->
+ <bean name="JMSEndpointDeploymentAspect" class="org.jboss.wsf.stack.cxf.deployment.aspect.JMSEndpointDeploymentAspect">
+ <property name="provides">BusHolder</property>
+ <property name="forJaxRpc">false</property>
+ </bean>
+
+ <bean name="JMSEndpointRegistryDeploymentAspect" class="org.jboss.wsf.stack.cxf.deployment.aspect.JMSEndpointRegistryDeploymentAspect">
+ <property name="requires">BusHolder</property>
+ <property name="forJaxRpc">false</property>
+ </bean>
+
+</deployment>
\ No newline at end of file
Property changes on: stack/cxf/trunk/modules/server/src/main/resources/jbossws-cxf-jms-config-as6.xml
___________________________________________________________________
Name: svn:mime-type
+ text/xml
Name: svn:keywords
+ Rev Date
Name: svn:eol-style
+ native
Modified: stack/cxf/trunk/modules/server/src/main/scripts/antrun-beans-config.xml
===================================================================
--- stack/cxf/trunk/modules/server/src/main/scripts/antrun-beans-config.xml 2010-08-04 13:33:47 UTC (rev 12730)
+++ stack/cxf/trunk/modules/server/src/main/scripts/antrun-beans-config.xml 2010-08-04 13:44:58 UTC (rev 12731)
@@ -14,8 +14,19 @@
<property name="src.dir" value="${basedir}/src/main/resources"/>
<property name="dest.dir" value="${basedir}/target/resources"/>
- <target name="main">
+ <target name="check-spring">
+ <condition property="spring-required">
+ <and>
+ <istrue value="${spring}"/>
+ </and>
+ </condition>
+ </target>
+ <target name="main"
+ depends="check-spring,copy-config-as5,copy-config-as6,copy-config-as6-jms,copy-config-as6-jaxrpc"/>
+
+ <target name="copy-config-as5">
+
<copy
file="${src.dir}/jbossws-cxf-config-as5.xml"
tofile="${dest.dir}/jbossws-jboss501/jbossws.beans/META-INF/stack-specific-jboss-beans.xml"
@@ -26,6 +37,10 @@
tofile="${dest.dir}/jbossws-jboss510/jbossws.beans/META-INF/stack-specific-jboss-beans.xml"
/>
+ </target>
+
+ <target name="copy-config-as6" unless="spring-required">
+
<copy
file="${src.dir}/jbossws-cxf-config-as6.xml"
tofile="${dest.dir}/jbossws-jboss600/jbossws.beans/META-INF/stack-specific-jboss-beans.xml"
@@ -36,7 +51,26 @@
tofile="${dest.dir}/jbossws-jboss601/jbossws.beans/META-INF/stack-specific-jboss-beans.xml"
/>
+ </target>
+
+ <target name="copy-config-as6-jms" if="spring-required">
+
<copy
+ file="${src.dir}/jbossws-cxf-jms-config-as6.xml"
+ tofile="${dest.dir}/jbossws-jboss600/jbossws.beans/META-INF/stack-specific-jboss-beans.xml"
+ />
+
+ <copy
+ file="${src.dir}/jbossws-cxf-jms-config-as6.xml"
+ tofile="${dest.dir}/jbossws-jboss601/jbossws.beans/META-INF/stack-specific-jboss-beans.xml"
+ />
+
+ </target>
+
+
+ <target name="copy-config-as6-jaxrpc">
+
+ <copy
file="${src.dir}/jbossws-jaxrpc-config-as6.xml"
tofile="${dest.dir}/jbossws-jaxrpc-jboss600/jbossws.beans/META-INF/stack-specific-jboss-beans.xml"
/>
@@ -47,5 +81,4 @@
/>
</target>
-
</project>
Modified: stack/cxf/trunk/src/main/distro/build-deploy.xml
===================================================================
--- stack/cxf/trunk/src/main/distro/build-deploy.xml 2010-08-04 13:33:47 UTC (rev 12730)
+++ stack/cxf/trunk/src/main/distro/build-deploy.xml 2010-08-04 13:44:58 UTC (rev 12731)
@@ -35,7 +35,8 @@
<echo message="jbossws.integration.target=${jbossws.integration.target}" file="${target.properties.file}"/>
</target>
- <target name="deploy-jboss501" depends="undeploy-jboss501,deploy-structure-jboss50,check-spring,install-spring" description="Deploy jbossws to jboss501">
+ <target name="deploy-jboss501" depends="undeploy-jboss501,deploy-structure-jboss50,check-spring,install-spring"
+ description="Deploy jbossws to jboss501">
<macro-create-deploy-conf deploystructure="${deploy.structure}"/>
<fail message="Not available: ${jboss501.available.file}" unless="jboss501.available"/>
<copy todir="${jboss501.home}" overwrite="true" verbose="true">
@@ -77,7 +78,8 @@
<echo message="jbossws.integration.target=${jbossws.integration.target}" file="${target.properties.file}"/>
</target>
- <target name="deploy-jboss510" depends="undeploy-jboss510,deploy-structure-jboss51,check-spring,install-spring" description="Deploy jbossws to jboss510">
+ <target name="deploy-jboss510" depends="undeploy-jboss510,deploy-structure-jboss51,check-spring,install-spring"
+ description="Deploy jbossws to jboss510">
<macro-create-deploy-conf deploystructure="${deploy.structure}"/>
<fail message="Not available: ${jboss510.available.file}" unless="jboss510.available"/>
<copy todir="${jboss510.home}" overwrite="true" verbose="true">
@@ -119,7 +121,8 @@
<echo message="jbossws.integration.target=${jbossws.integration.target}" file="${target.properties.file}"/>
</target>
- <target name="deploy-jboss600" depends="undeploy-jboss600,deploy-structure-jboss600,check-spring,install-spring" description="Deploy jbossws to jboss600">
+ <target name="deploy-jboss600" depends="undeploy-jboss600,deploy-structure-jboss600,check-spring,install-spring,install-cxf-jms"
+ description="Deploy jbossws to jboss600">
<macro-create-deploy-conf deploystructure="${deploy.structure}"/>
<fail message="Not available: ${jboss600.available.file}" unless="jboss600.available"/>
<copy todir="${jboss600.home}" overwrite="true" verbose="true">
@@ -161,7 +164,8 @@
<echo message="jbossws.integration.target=${jbossws.integration.target}" file="${target.properties.file}"/>
</target>
- <target name="deploy-jboss601" depends="undeploy-jboss601,deploy-structure-jboss601,check-spring,install-spring" description="Deploy jbossws to jboss601">
+ <target name="deploy-jboss601" depends="undeploy-jboss601,deploy-structure-jboss601,check-spring,install-spring,install-cxf-jms"
+ description="Deploy jbossws to jboss601">
<macro-create-deploy-conf deploystructure="${deploy.structure}"/>
<fail message="Not available: ${jboss601.available.file}" unless="jboss601.available"/>
<copy todir="${jboss601.home}" overwrite="true" verbose="true">
@@ -197,6 +201,13 @@
</antcall>
</target>
+ <target name="install-cxf-jms" if="spring-required">
+ <antcall target="deploy-cxf-jms" inheritall="false">
+ <param name="installserver" value="${deploy.structure}"/>
+ <param name="thirdpartydir" value="${deploy.artifacts.dir}"/>
+ </antcall>
+ </target>
+
<!-- ================================================================== -->
<!-- Create jbossws-deploy.conf and jbossws-server-deploy.conf -->
<!-- ================================================================== -->
15 years, 9 months
JBossWS SVN: r12730 - stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsrm/service.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-08-04 09:33:47 -0400 (Wed, 04 Aug 2010)
New Revision: 12730
Modified:
stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsrm/service/SimpleServiceImpl.java
Log:
[JBWS-3085] No need for the @Feature to enable the policy engine, as that should already be on.
Modified: stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsrm/service/SimpleServiceImpl.java
===================================================================
--- stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsrm/service/SimpleServiceImpl.java 2010-08-04 13:25:32 UTC (rev 12729)
+++ stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsrm/service/SimpleServiceImpl.java 2010-08-04 13:33:47 UTC (rev 12730)
@@ -25,7 +25,6 @@
import javax.jws.WebMethod;
import javax.jws.WebService;
-import org.apache.cxf.feature.Features;
import org.apache.cxf.interceptor.InInterceptors;
@WebService
@@ -35,7 +34,6 @@
wsdlLocation = "WEB-INF/wsdl/SimpleService.wsdl",
targetNamespace = "http://www.jboss.org/jbossws/ws-extensions/wsrm"
)
-@Features(features = "org.apache.cxf.ws.policy.WSPolicyFeature")
@InInterceptors(interceptors="org.jboss.test.ws.jaxws.samples.wsrm.service.RMCheckInterceptor")
public class SimpleServiceImpl
{
15 years, 9 months
JBossWS SVN: r12729 - stack/cxf/branches/cxf-2.3/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/configuration.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-08-04 09:25:32 -0400 (Wed, 04 Aug 2010)
New Revision: 12729
Modified:
stack/cxf/branches/cxf-2.3/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/configuration/JBossWSNonSpringBusFactory.java
Log:
Temporarly installing a ConfiguredBeanLocator that does nothing to the Bus, in order to prevent cxf runtime from failing because of it missing when not using Spring
Modified: stack/cxf/branches/cxf-2.3/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/configuration/JBossWSNonSpringBusFactory.java
===================================================================
--- stack/cxf/branches/cxf-2.3/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/configuration/JBossWSNonSpringBusFactory.java 2010-08-04 11:50:20 UTC (rev 12728)
+++ stack/cxf/branches/cxf-2.3/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/configuration/JBossWSNonSpringBusFactory.java 2010-08-04 13:25:32 UTC (rev 12729)
@@ -21,12 +21,16 @@
*/
package org.jboss.wsf.stack.cxf.client.configuration;
+import java.util.Collection;
+import java.util.Collections;
import java.util.HashMap;
+import java.util.List;
import java.util.Map;
import org.apache.cxf.Bus;
import org.apache.cxf.bus.CXFBusFactory;
import org.apache.cxf.bus.extension.ExtensionManagerBus;
+import org.apache.cxf.configuration.ConfiguredBeanLocator;
import org.apache.cxf.configuration.Configurer;
/**
@@ -48,6 +52,8 @@
{
extensions.put(Configurer.class, new JBossWSNonSpringConfigurer(new BeanCustomizer()));
}
+
+ extensions.put(ConfiguredBeanLocator.class, new DummyBeanLocator());
Bus bus = new ExtensionManagerBus(extensions, properties);
possiblySetDefaultBus(bus);
@@ -59,4 +65,39 @@
protected void initializeBus(Bus bus) {
super.initializeBus(bus);
}
+
+ private class DummyBeanLocator implements ConfiguredBeanLocator
+ {
+
+ @Override
+ public List<String> getBeanNamesOfType(Class<?> type)
+ {
+ return Collections.emptyList();
+ }
+
+ @Override
+ public <T> Collection<? extends T> getBeansOfType(Class<T> type)
+ {
+ return Collections.emptyList();
+ }
+
+ @Override
+ public <T> T getBeanOfType(String name, Class<T> type)
+ {
+ return null;
+ }
+
+ @Override
+ public <T> boolean loadBeansOfType(Class<T> type, BeanLoaderListener<T> listener)
+ {
+ return false;
+ }
+
+ @Override
+ public boolean hasConfiguredPropertyValue(String beanName, String propertyName, String value)
+ {
+ return false;
+ }
+
+ }
}
15 years, 9 months
JBossWS SVN: r12728 - stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/configuration.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-08-04 07:50:20 -0400 (Wed, 04 Aug 2010)
New Revision: 12728
Modified:
stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/configuration/NonSpringBusHolder.java
Log:
[JBWS-3087] Removing RMManager at undeploy
Modified: stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/configuration/NonSpringBusHolder.java
===================================================================
--- stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/configuration/NonSpringBusHolder.java 2010-08-04 11:47:08 UTC (rev 12727)
+++ stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/configuration/NonSpringBusHolder.java 2010-08-04 11:50:20 UTC (rev 12728)
@@ -34,6 +34,7 @@
import org.apache.cxf.transport.ConduitInitiator;
import org.apache.cxf.transport.DestinationFactory;
import org.apache.cxf.transport.servlet.ServletTransportFactory;
+import org.apache.cxf.ws.rm.RMManager;
import org.jboss.wsf.spi.binding.BindingCustomization;
import org.jboss.wsf.spi.deployment.Endpoint;
import org.jboss.wsf.stack.cxf.client.configuration.JBossWSNonSpringBusFactory;
@@ -105,7 +106,6 @@
SOAPBinding binding = (SOAPBinding) endpoint.getBinding();
binding.setMTOMEnabled(true);
}
- //TODO!! We need to stop the endpoint on undeployment
}
configured = true;
}
@@ -113,6 +113,13 @@
@Override
public void close()
{
+ //Move this stuff to the bus (our own impl)?
+ RMManager rmManager = bus.getExtension(RMManager.class);
+ if (rmManager != null)
+ {
+ rmManager.shutdown();
+ }
+
for (EndpointImpl endpoint : endpoints)
{
endpoint.stop();
15 years, 9 months
JBossWS SVN: r12727 - stack/cxf/trunk/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/configuration.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-08-04 07:47:08 -0400 (Wed, 04 Aug 2010)
New Revision: 12727
Modified:
stack/cxf/trunk/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/configuration/JBossWSNonSpringBusFactory.java
Log:
[JBWS-3087] Enabling WS-Policy engine in NonSpring bus factory (1st step)
Modified: stack/cxf/trunk/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/configuration/JBossWSNonSpringBusFactory.java
===================================================================
--- stack/cxf/trunk/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/configuration/JBossWSNonSpringBusFactory.java 2010-08-04 10:50:26 UTC (rev 12726)
+++ stack/cxf/trunk/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/configuration/JBossWSNonSpringBusFactory.java 2010-08-04 11:47:08 UTC (rev 12727)
@@ -21,13 +21,39 @@
*/
package org.jboss.wsf.stack.cxf.client.configuration;
+import java.util.Collection;
import java.util.HashMap;
+import java.util.LinkedList;
import java.util.Map;
+import javax.xml.bind.JAXBException;
+import javax.xml.namespace.QName;
+
import org.apache.cxf.Bus;
import org.apache.cxf.bus.CXFBusFactory;
import org.apache.cxf.bus.extension.ExtensionManagerBus;
import org.apache.cxf.configuration.Configurer;
+import org.apache.cxf.ws.addressing.Names;
+import org.apache.cxf.ws.addressing.policy.AddressingAssertionBuilder;
+import org.apache.cxf.ws.addressing.policy.AddressingPolicyInterceptorProvider;
+import org.apache.cxf.ws.policy.AssertionBuilderRegistry;
+import org.apache.cxf.ws.policy.AssertionBuilderRegistryImpl;
+import org.apache.cxf.ws.policy.PolicyBuilder;
+import org.apache.cxf.ws.policy.PolicyBuilderImpl;
+import org.apache.cxf.ws.policy.PolicyEngine;
+import org.apache.cxf.ws.policy.PolicyEngineImpl;
+import org.apache.cxf.ws.policy.PolicyInterceptorProviderRegistry;
+import org.apache.cxf.ws.policy.PolicyInterceptorProviderRegistryImpl;
+import org.apache.cxf.ws.policy.PolicyProvider;
+import org.apache.cxf.ws.policy.attachment.ServiceModelPolicyProvider;
+import org.apache.cxf.ws.policy.attachment.external.DomainExpressionBuilderRegistry;
+import org.apache.cxf.ws.policy.attachment.wsdl11.Wsdl11AttachmentPolicyProvider;
+import org.apache.cxf.ws.policy.builder.primitive.PrimitiveAssertionBuilder;
+import org.apache.cxf.ws.policy.mtom.MTOMAssertionBuilder;
+import org.apache.cxf.ws.policy.mtom.MTOMPolicyInterceptorProvider;
+import org.apache.cxf.ws.rm.RMManager;
+import org.apache.cxf.ws.rm.policy.RMAssertionBuilder;
+import org.apache.cxf.ws.rm.policy.RMPolicyInterceptorProvider;
/**
*
@@ -37,7 +63,7 @@
*/
public class JBossWSNonSpringBusFactory extends CXFBusFactory
{
- @SuppressWarnings("unchecked")
+ @SuppressWarnings("rawtypes")
@Override
public Bus createBus(Map<Class, Object> extensions, Map<String, Object> properties) {
if (extensions == null)
@@ -48,13 +74,81 @@
{
extensions.put(Configurer.class, new JBossWSNonSpringConfigurer(new BeanCustomizer()));
}
+
+ preparePolicyEngine(extensions);
+
+ Bus bus = new ExtensionManagerBus(extensions, properties);
- Bus bus = new ExtensionManagerBus(extensions, properties);
+ initPolicyEngine((PolicyEngineImpl)extensions.get(PolicyEngine.class), bus);
+
possiblySetDefaultBus(bus);
initializeBus(bus);
return bus;
- }
+ }
+ @SuppressWarnings("rawtypes")
+ private static void preparePolicyEngine(Map<Class, Object> extensions)
+ {
+ PolicyEngineImpl engine = new PolicyEngineImpl(true);
+ extensions.put(PolicyEngine.class, engine);
+ DomainExpressionBuilderRegistry domainExpBuilderRegistry = new DomainExpressionBuilderRegistry();
+ extensions.put(DomainExpressionBuilderRegistry.class, domainExpBuilderRegistry);
+ }
+
+ private static void initPolicyEngine(PolicyEngineImpl engine, Bus bus)
+ {
+ engine.setBus(bus);
+ AssertionBuilderRegistry assertionBuilderRegistry = new AssertionBuilderRegistryImpl();
+ bus.setExtension(assertionBuilderRegistry, AssertionBuilderRegistry.class);
+ PolicyInterceptorProviderRegistry policyInterceptorProviderRegistry = new PolicyInterceptorProviderRegistryImpl();
+ bus.setExtension(policyInterceptorProviderRegistry, PolicyInterceptorProviderRegistry.class);
+ PolicyBuilderImpl policyBuilder = new PolicyBuilderImpl();
+ policyBuilder.setBus(bus);
+ policyBuilder.setAssertionBuilderRegistry(assertionBuilderRegistry);
+ bus.setExtension(policyBuilder, PolicyBuilder.class);
+ Collection<PolicyProvider> policyProviders = engine.getPolicyProviders();
+ Wsdl11AttachmentPolicyProvider wsdl11PolicyAttachmentProvider = new Wsdl11AttachmentPolicyProvider(bus);
+ wsdl11PolicyAttachmentProvider.setBuilder(policyBuilder);
+ wsdl11PolicyAttachmentProvider.setRegistry(engine.getRegistry());
+ policyProviders.add(wsdl11PolicyAttachmentProvider);
+ ServiceModelPolicyProvider serviceModelPolicyProvider = new ServiceModelPolicyProvider(bus);
+ serviceModelPolicyProvider.setBuilder(policyBuilder);
+ serviceModelPolicyProvider.setRegistry(engine.getRegistry());
+ policyProviders.add(serviceModelPolicyProvider);
+
+ //MTOM Policy
+ assertionBuilderRegistry.register(new MTOMAssertionBuilder());
+ policyInterceptorProviderRegistry.register(new MTOMPolicyInterceptorProvider());
+
+ //RM
+ RMManager rmManager = new RMManager();
+// rmManager.initialise();
+// rmManager.registerListeners();
+ rmManager.setBus(bus);
+
+ //RM Policy
+ policyInterceptorProviderRegistry.register(new RMPolicyInterceptorProvider(bus));
+ try
+ {
+ assertionBuilderRegistry.register(new RMAssertionBuilder());
+ }
+ catch (JAXBException e)
+ {
+ throw new RuntimeException(e);
+ }
+
+ //Addressing Policy
+ policyInterceptorProviderRegistry.register(new AddressingPolicyInterceptorProvider());
+ assertionBuilderRegistry.register(new AddressingAssertionBuilder(bus));
+ Collection<QName> addressingKnownEls = new LinkedList<QName>();
+ addressingKnownEls.add(new QName("http://schemas.xmlsoap.org/ws/2004/08/addressing/policy", Names.WSAW_USING_ADDRESSING_NAME));
+ addressingKnownEls.add(new QName(Names.WSA_NAMESPACE_WSDL_NAME_OLD, Names.WSAW_USING_ADDRESSING_NAME));
+ addressingKnownEls.add(Names.WSAW_USING_ADDRESSING_QNAME);
+ PrimitiveAssertionBuilder primitiveAssertionBuilder = new PrimitiveAssertionBuilder(addressingKnownEls);
+ primitiveAssertionBuilder.setBus(bus);
+ assertionBuilderRegistry.register(primitiveAssertionBuilder);
+ }
+
@Override
protected void initializeBus(Bus bus) {
super.initializeBus(bus);
15 years, 9 months
JBossWS SVN: r12726 - stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/configuration.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-08-04 06:50:26 -0400 (Wed, 04 Aug 2010)
New Revision: 12726
Modified:
stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/configuration/NonSpringBusHolder.java
Log:
[JBWS-3098] Properly shutting down bus together with the created endpoints
Modified: stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/configuration/NonSpringBusHolder.java
===================================================================
--- stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/configuration/NonSpringBusHolder.java 2010-08-04 07:45:29 UTC (rev 12725)
+++ stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/configuration/NonSpringBusHolder.java 2010-08-04 10:50:26 UTC (rev 12726)
@@ -21,6 +21,7 @@
*/
package org.jboss.wsf.stack.cxf.configuration;
+import java.util.LinkedList;
import java.util.List;
import javax.xml.ws.soap.SOAPBinding;
@@ -55,6 +56,7 @@
private boolean configured = false;
protected DDBeans metadata;
+ protected List<EndpointImpl> endpoints = new LinkedList<EndpointImpl>();
public NonSpringBusHolder(DDBeans metadata)
{
@@ -97,6 +99,7 @@
endpoint.setServiceName(dde.getServiceName());
endpoint.setWsdlLocation(dde.getWsdlLocation());
endpoint.publish();
+ endpoints.add(endpoint);
if (dde.isMtomEnabled())
{
SOAPBinding binding = (SOAPBinding) endpoint.getBinding();
@@ -106,6 +109,18 @@
}
configured = true;
}
+
+ @Override
+ public void close()
+ {
+ for (EndpointImpl endpoint : endpoints)
+ {
+ endpoint.stop();
+ }
+ endpoints.clear();
+ bus.shutdown(true);
+ super.close();
+ }
private static Object newInstance(String className)
{
15 years, 9 months
JBossWS SVN: r12725 - in stack/native/trunk/modules/testsuite: native-tests/scripts and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-08-04 03:45:29 -0400 (Wed, 04 Aug 2010)
New Revision: 12725
Modified:
stack/native/trunk/modules/testsuite/native-tests/scripts/antrun-wsprovide.xml
stack/native/trunk/modules/testsuite/native-tests/scripts/build-samples-jaxws.xml
stack/native/trunk/modules/testsuite/test-excludes-jboss600.txt
stack/native/trunk/modules/testsuite/test-excludes-jboss601.txt
Log:
[JBREFLECT-137][JBWS-3067] resolving remaining AS failures
Modified: stack/native/trunk/modules/testsuite/native-tests/scripts/antrun-wsprovide.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/scripts/antrun-wsprovide.xml 2010-08-03 16:19:47 UTC (rev 12724)
+++ stack/native/trunk/modules/testsuite/native-tests/scripts/antrun-wsprovide.xml 2010-08-04 07:45:29 UTC (rev 12725)
@@ -53,11 +53,13 @@
<wsprovide
sei="@{sei}"
fork="true"
+ keep="true"
genwsdl="true"
verbose="false"
classpath="@{outputDir}/test-classes"
destdir="@{outputDir}/test-classes/@{destDir}"
resourcedestdir="@{outputDir}/test-resources/@{resourcesDir}"
+ sourcedestdir="@{outputDir}/test-sources/@{resourcesDir}"
>
<jvmarg line="-Djava.endorsed.dirs=@{jbossHome}/lib/endorsed"/>
<jvmarg line="-Dlog4j.configuration=file://@{log4jConf}"/>
Modified: stack/native/trunk/modules/testsuite/native-tests/scripts/build-samples-jaxws.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/scripts/build-samples-jaxws.xml 2010-08-03 16:19:47 UTC (rev 12724)
+++ stack/native/trunk/modules/testsuite/native-tests/scripts/build-samples-jaxws.xml 2010-08-04 07:45:29 UTC (rev 12725)
@@ -310,6 +310,7 @@
<include name="org/jboss/test/ws/jaxws/samples/wssecurity/Hello.class"/>
<include name="org/jboss/test/ws/jaxws/samples/wssecurity/HelloJavaBean.class"/>
<include name="org/jboss/test/ws/jaxws/samples/wssecurity/UserType.class"/>
+ <include name="org/jboss/test/ws/jaxws/samples/wssecurity/ObjectFactory.class"/>
</classes>
<webinf dir="${tests.output.dir}/test-resources/jaxws/samples/wssecurity/simple-encrypt/WEB-INF">
<include name="jboss-wsse-server.xml"/>
@@ -326,6 +327,7 @@
<include name="org/jboss/test/ws/jaxws/samples/wssecurity/Hello.class"/>
<include name="org/jboss/test/ws/jaxws/samples/wssecurity/HelloJavaBean.class"/>
<include name="org/jboss/test/ws/jaxws/samples/wssecurity/UserType.class"/>
+ <include name="org/jboss/test/ws/jaxws/samples/wssecurity/ObjectFactory.class"/>
</classes>
<webinf dir="${tests.output.dir}/test-resources/jaxws/samples/wssecurity/simple-sign/WEB-INF">
<include name="jboss-wsse-server.xml"/>
@@ -356,6 +358,7 @@
<include name="org/jboss/test/ws/jaxws/samples/wssecurityAnnotatedpolicy/Hello.class"/>
<include name="org/jboss/test/ws/jaxws/samples/wssecurityAnnotatedpolicy/HelloJavaBean.class"/>
<include name="org/jboss/test/ws/jaxws/samples/wssecurityAnnotatedpolicy/UserType.class"/>
+ <include name="org/jboss/test/ws/jaxws/samples/wssecurityAnnotatedpolicy/ObjectFactory.class"/>
</classes>
<webinf dir="${tests.output.dir}/test-resources/jaxws/samples/wssecurityAnnotatedpolicy">
<include name="wsse.keystore"/>
@@ -373,6 +376,7 @@
<include name="org/jboss/test/ws/jaxws/samples/wssecuritypolicy/Hello.class"/>
<include name="org/jboss/test/ws/jaxws/samples/wssecuritypolicy/HelloJavaBean.class"/>
<include name="org/jboss/test/ws/jaxws/samples/wssecuritypolicy/UserType.class"/>
+ <include name="org/jboss/test/ws/jaxws/samples/wssecuritypolicy/ObjectFactory.class"/>
</classes>
<webinf dir="${tests.output.dir}/test-resources/jaxws/samples/wssecuritypolicy">
<include name="wsse.keystore"/>
@@ -382,9 +386,9 @@
<include name="wsdl/**"/>
</webinf>
</war>
-
+
<!-- Please add alphabetically -->
-
+
</target>
-
+
</project>
Modified: stack/native/trunk/modules/testsuite/test-excludes-jboss600.txt
===================================================================
--- stack/native/trunk/modules/testsuite/test-excludes-jboss600.txt 2010-08-03 16:19:47 UTC (rev 12724)
+++ stack/native/trunk/modules/testsuite/test-excludes-jboss600.txt 2010-08-04 07:45:29 UTC (rev 12725)
@@ -3,13 +3,3 @@
# [EJBTHREE-1152] service-ref in ejb-jar.xml is ignored
org/jboss/test/ws/jaxws/samples/serviceref/ServiceRefEJBTestCase.*
-
-# [JBREFLECT-137] issue with new scanning in AS trunk
-org/jboss/test/ws/jaxws/samples/wssecurity/MissingSecurityTestCase.*
-org/jboss/test/ws/jaxws/samples/wssecurity/SimpleDispatchTestCase.*
-org/jboss/test/ws/jaxws/samples/wssecurity/SimpleSignTestCase.*
-org/jboss/test/ws/jaxws/samples/wssecurity/SimpleEncryptTestCase.*
-org/jboss/test/ws/jaxws/samples/wssecurity/MissingSecurityTestCase.*
-org/jboss/test/ws/jaxws/samples/wssecurityAnnotatedpolicy/SimpleEncryptTestCase.*
-org/jboss/test/ws/jaxws/samples/wssecuritypolicy/SimpleEncryptTestCase.*
-
Modified: stack/native/trunk/modules/testsuite/test-excludes-jboss601.txt
===================================================================
--- stack/native/trunk/modules/testsuite/test-excludes-jboss601.txt 2010-08-03 16:19:47 UTC (rev 12724)
+++ stack/native/trunk/modules/testsuite/test-excludes-jboss601.txt 2010-08-04 07:45:29 UTC (rev 12725)
@@ -3,13 +3,3 @@
# [EJBTHREE-1152] service-ref in ejb-jar.xml is ignored
org/jboss/test/ws/jaxws/samples/serviceref/ServiceRefEJBTestCase.*
-
-# [JBREFLECT-137] issue with new scanning in AS trunk
-org/jboss/test/ws/jaxws/samples/wssecurity/MissingSecurityTestCase.*
-org/jboss/test/ws/jaxws/samples/wssecurity/SimpleDispatchTestCase.*
-org/jboss/test/ws/jaxws/samples/wssecurity/SimpleSignTestCase.*
-org/jboss/test/ws/jaxws/samples/wssecurity/SimpleEncryptTestCase.*
-org/jboss/test/ws/jaxws/samples/wssecurity/MissingSecurityTestCase.*
-org/jboss/test/ws/jaxws/samples/wssecurityAnnotatedpolicy/SimpleEncryptTestCase.*
-org/jboss/test/ws/jaxws/samples/wssecuritypolicy/SimpleEncryptTestCase.*
-
15 years, 9 months
JBossWS SVN: r12724 - in thirdparty/cxf/tags/cxf-2.2.6-patch-01: api and 86 other directories.
by jbossws-commits@lists.jboss.org
Author: fnasser(a)redhat.com
Date: 2010-08-03 12:19:47 -0400 (Tue, 03 Aug 2010)
New Revision: 12724
Modified:
thirdparty/cxf/tags/cxf-2.2.6-patch-01/api/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/buildtools/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/common/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/schemas/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xerces-xsd-validation/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/boolean-test/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/boolean/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/bug671/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/dv-test/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/dv/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/ts-test/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/ts/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xsd/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/distribution/bundle/all/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/distribution/bundle/jaxrs/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/distribution/bundle/minimal/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/distribution/bundle/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/distribution/manifest/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/distribution/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/integration/jbi/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/integration/jca/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/integration/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/archetypes/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/codegen-plugin/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/corba/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/java2ws-plugin/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/wsdl-validator-plugin/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/xml2fastinfoset-plugin/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/parent/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/coloc/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/corba/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/http/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/jbi/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/object/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/soap/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/xml/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/core/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/databinding/aegis/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/databinding/jaxb/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/databinding/xmlbeans/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/frontend/jaxrs/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/frontend/jaxws/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/frontend/js/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/frontend/simple/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/javascript/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/management/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/testsupport/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/transports/http-jetty/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/transports/http-osgi/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/transports/http/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/transports/jbi/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/transports/jms/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/transports/local/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/ws/addr/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/ws/policy/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/ws/rm/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/ws/security/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/databinding/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/jaxrs/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/jaxws/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/transports/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/uncategorized/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/ws-specs/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/wsdl_maven/codegen/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/wsdl_maven/java2ws/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/wsdl_maven/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/testutils/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/common/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/corba/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/javato/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/javato/ws/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/validator/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/core/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/databinding/jaxb/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/frontend/javascript/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/frontend/jaxws/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/misc/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/pom.xml
thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/test/pom.xml
Log:
Adjust version to 2.2.6-patch-01
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/api/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/api/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/api/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -22,13 +22,13 @@
<artifactId>cxf-api</artifactId>
<packaging>jar</packaging>
<name>Apache CXF API</name>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/buildtools/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/buildtools/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/buildtools/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -20,13 +20,13 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-buildtools</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Buildtools</name>
<url>http://cxf.apache.org</url>
<packaging>jar</packaging>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/common/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/common/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/common/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common-utilities</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Common Utilities</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common</artifactId>
<packaging>pom</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Common</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
</parent>
<modules>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/schemas/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/schemas/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/schemas/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -22,13 +22,13 @@
<artifactId>cxf-common-schemas</artifactId>
<packaging>jar</packaging>
<name>Apache CXF Common Schemas</name>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<url>http://cxf.apache.org/</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xerces-xsd-validation/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xerces-xsd-validation/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xerces-xsd-validation/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -22,13 +22,13 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xerces-xsd-validation</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF XML Schema Validation with Xerces</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<dependencies>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/boolean/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/boolean/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/boolean/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.xjcplugins</groupId>
<artifactId>cxf-xjc-boolean</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF XJC Boolean Getter Plugin</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/boolean-test/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/boolean-test/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/boolean-test/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.xjcplugins</groupId>
<artifactId>cxf-xjc-boolean-test</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF XJC Boolean Getter Plugin Tests</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/bug671/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/bug671/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/bug671/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.xjcplugins</groupId>
<artifactId>cxf-xjc-bug671</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF XJC Plugin To Workaround JAXB Bug 671</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/dv/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/dv/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/dv/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-dv</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF XJC Default Value Plugin</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/dv-test/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/dv-test/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/dv-test/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-dv-test</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF XJC Default Value Plugin Tests</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc</artifactId>
<packaging>pom</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF XJC Plugins</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/ts/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/ts/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/ts/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-ts</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF XJC toString Plugin</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/ts-test/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/ts-test/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xjc/ts-test/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-ts-test</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF XJC toString Plugin Tests</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xsd/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xsd/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/common/xsd/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common-xsd</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Common XSD2Java Plugins</name>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/distribution/bundle/all/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/distribution/bundle/all/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/distribution/bundle/all/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -23,13 +23,13 @@
<artifactId>cxf-bundle</artifactId>
<packaging>bundle</packaging>
<name>Apache CXF Bundle Jar</name>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
</parent>
<dependencies>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/distribution/bundle/jaxrs/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/distribution/bundle/jaxrs/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/distribution/bundle/jaxrs/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -23,13 +23,13 @@
<artifactId>cxf-bundle-jaxrs</artifactId>
<packaging>bundle</packaging>
<name>Apache CXF JAX-RS Bundle Jar</name>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/distribution/bundle/minimal/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/distribution/bundle/minimal/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/distribution/bundle/minimal/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -23,13 +23,13 @@
<artifactId>cxf-bundle-minimal</artifactId>
<packaging>bundle</packaging>
<name>Apache CXF Minimal Bundle Jar</name>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
</parent>
<dependencies>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/distribution/bundle/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/distribution/bundle/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/distribution/bundle/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -23,13 +23,13 @@
<artifactId>cxf-bundle-parent</artifactId>
<packaging>pom</packaging>
<name>Apache CXF Bundle Parent</name>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/distribution/manifest/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/distribution/manifest/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/distribution/manifest/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -23,13 +23,13 @@
<artifactId>cxf-distribution-manifest</artifactId>
<packaging>jar</packaging>
<name>Apache CXF Manifest Jar</name>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/distribution/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/distribution/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/distribution/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -22,13 +22,13 @@
<artifactId>apache-cxf</artifactId>
<packaging>pom</packaging>
<name>Apache CXF Distribution</name>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../parent</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/integration/jbi/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/integration/jbi/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/integration/jbi/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-integration-jbi</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF JBI Integration</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/integration/jca/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/integration/jca/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/integration/jca/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-integration-jca</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF JCA Connection</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/integration/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/integration/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/integration/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-integration</artifactId>
<packaging>pom</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Integration</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.archetype</groupId>
<artifactId>cxf-jaxws-javafirst</artifactId>
<name>Apache CXF Archetype - Simple JAX-WS Java First</name>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<url>http://cxf.apache.org</url>
<properties>
<maven.test.skip>true</maven.test.skip>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/archetypes/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/archetypes/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/archetypes/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-archetypes</artifactId>
<packaging>pom</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Maven Archetypes</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/codegen-plugin/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/codegen-plugin/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/codegen-plugin/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Code Generation Maven2 Plugins</name>
<url>http://cxf.apache.org</url>
@@ -30,7 +30,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/corba/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/corba/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/corba/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-corbatools-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF CORBA Tools Maven2 Plugins</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/java2ws-plugin/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/java2ws-plugin/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/java2ws-plugin/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-java2ws-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Java2WS Maven2 Plugin</name>
<url>http://cxf.apache.org</url>
@@ -30,7 +30,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-maven-plugins</artifactId>
<packaging>pom</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Maven Plugins</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
</parent>
<modules>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/wsdl-validator-plugin/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/wsdl-validator-plugin/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/wsdl-validator-plugin/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -3,7 +3,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-wsdl-validator-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF WSDL Validator Maven2 Plugin</name>
<url>http://cxf.apache.org</url>
@@ -11,7 +11,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/xml2fastinfoset-plugin/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/xml2fastinfoset-plugin/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/maven-plugins/xml2fastinfoset-plugin/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xml2fastinfoset-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF XML to FastInfoset Maven2 Plugin</name>
<url>http://cxf.apache.org</url>
<prerequisites>
@@ -32,7 +32,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/parent/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/parent/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/parent/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -20,13 +20,13 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Parent</name>
<url>http://cxf.apache.org</url>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,7 +21,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF</name>
<url>http://cxf.apache.org</url>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/coloc/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/coloc/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/coloc/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/corba/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/corba/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/corba/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/http/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/http/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/http/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/jbi/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/jbi/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/jbi/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/object/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/object/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/object/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/soap/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/soap/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/soap/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/xml/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/xml/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/bindings/xml/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/core/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/core/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/core/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-core</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Runtime Core</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/databinding/aegis/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/databinding/aegis/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/databinding/aegis/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/databinding/jaxb/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/databinding/jaxb/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/databinding/jaxb/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/databinding/xmlbeans/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/databinding/xmlbeans/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/databinding/xmlbeans/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/frontend/jaxrs/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/frontend/jaxrs/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/frontend/jaxrs/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Runtime JAX-RS Frontend</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/frontend/jaxws/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/frontend/jaxws/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/frontend/jaxws/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Runtime JAX-WS Frontend</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/frontend/js/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/frontend/js/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/frontend/js/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-js</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Runtime JavaScript Frontend</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/frontend/simple/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/frontend/simple/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/frontend/simple/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-simple</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Runtime Simple Frontend</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/javascript/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/javascript/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/javascript/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/management/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/management/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/management/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-management</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Runtime Management</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt</artifactId>
<packaging>pom</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Runtime</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
</parent>
<modules>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/testsupport/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/testsupport/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/testsupport/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -3,14 +3,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-testsupport</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Test Case Support</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/transports/http/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/transports/http/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/transports/http/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Runtime HTTP Transport</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/transports/http-jetty/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/transports/http-jetty/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/transports/http-jetty/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Runtime HTTP Jetty Transport</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/transports/http-osgi/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/transports/http-osgi/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/transports/http-osgi/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-osgi</artifactId>
<packaging>bundle</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF HTTP Transport for OSGi</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/transports/jbi/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/transports/jbi/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/transports/jbi/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jbi</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Runtime JBI Transport</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/transports/jms/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/transports/jms/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/transports/jms/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Runtime JMS Transport</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/transports/local/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/transports/local/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/transports/local/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-local</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Runtime Local Transport</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/ws/addr/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/ws/addr/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/ws/addr/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/ws/policy/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/ws/policy/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/ws/policy/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/ws/rm/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/ws/rm/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/ws/rm/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/ws/security/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/ws/security/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/rt/ws/security/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/databinding/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/databinding/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/databinding/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-databinding</artifactId>
<name>Apache CXF Databinding System Tests</name>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/jaxrs/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/jaxrs/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/jaxrs/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-jaxrs</artifactId>
<name>Apache CXF JAX-RS System Tests</name>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/jaxws/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/jaxws/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/jaxws/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-jaxws</artifactId>
<name>Apache CXF JAX-WS System Tests</name>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<url>http://cxf.apache.org</url>
<build>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests</artifactId>
<packaging>pom</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF System Tests</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
</parent>
<modules>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/transports/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/transports/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/transports/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-transports</artifactId>
<name>Apache CXF Transport System Tests</name>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/uncategorized/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/uncategorized/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/uncategorized/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-uncategorized</artifactId>
<name>Apache CXF Uncategorized System Tests</name>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/ws-specs/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/ws-specs/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/ws-specs/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-ws-specs</artifactId>
<name>Apache CXF WS-* Specifications System Tests</name>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/wsdl_maven/codegen/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/wsdl_maven/codegen/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/wsdl_maven/codegen/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -20,12 +20,12 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.systests.wsdl_maven</groupId>
<artifactId>cxf-systests-codegen</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Test for reading wsdl from repo and generating code from it</name>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<build>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/wsdl_maven/java2ws/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/wsdl_maven/java2ws/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/wsdl_maven/java2ws/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -20,12 +20,12 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.systests.wsdl_maven</groupId>
<artifactId>cxf-systests-java2ws</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Test for writing wsdl to repo</name>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<build>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/wsdl_maven/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/wsdl_maven/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/systests/wsdl_maven/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-wsdl-maven</artifactId>
<packaging>pom</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF System Tests for WSDL generation and retrieval</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
</parent>
<modules>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/testutils/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/testutils/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/testutils/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-testutils</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Test Utilities</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/common/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/common/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/common/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-common</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Command Line Tools Common</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/corba/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/corba/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/corba/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-corba</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Command Line Tools CORBA</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/javato/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/javato/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/javato/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-javato</artifactId>
<packaging>pom</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Command Line Tools JavaTo</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
</parent>
<modules>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/javato/ws/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/javato/ws/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/javato/ws/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-java2ws</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Command Line Tools JavaTo WS</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools</artifactId>
<packaging>pom</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Command Line Tools</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
</parent>
<modules>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/validator/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/validator/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/validator/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-validator</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Command Line Tools Validator</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/core/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/core/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/core/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-core</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Command Line Tools WSDLTo Core</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/databinding/jaxb/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/databinding/jaxb/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/databinding/jaxb/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-databinding-jaxb</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Command Line Tools WSDLTo JAXB Databinding</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/frontend/javascript/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/frontend/javascript/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/frontend/javascript/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-frontend-javascript</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Command Line Tools WSDL to JavaScript Front End</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/frontend/jaxws/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/frontend/jaxws/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/frontend/jaxws/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-frontend-jaxws</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Command Line Tools WSDLTo JAXWS Frontend</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/misc/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/misc/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/misc/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-misctools</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Command Line Tools WSDLTo Misctools</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto</artifactId>
<packaging>pom</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Command Line Tools WSDLTo</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
</parent>
<modules>
Modified: thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/test/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/test/pom.xml 2010-08-03 15:49:26 UTC (rev 12723)
+++ thirdparty/cxf/tags/cxf-2.2.6-patch-01/tools/wsdlto/test/pom.xml 2010-08-03 16:19:47 UTC (rev 12724)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-test</artifactId>
<packaging>jar</packaging>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<name>Apache CXF Command Line Tools WSDLTo Test</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.6</version>
+ <version>2.2.6-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
15 years, 9 months
JBossWS SVN: r12723 - thirdparty/cxf/tags.
by jbossws-commits@lists.jboss.org
Author: fnasser(a)redhat.com
Date: 2010-08-03 11:49:26 -0400 (Tue, 03 Aug 2010)
New Revision: 12723
Added:
thirdparty/cxf/tags/cxf-2.2.6-patch-01/
Log:
Tag a 2.2.6-patch-01 release
Copied: thirdparty/cxf/tags/cxf-2.2.6-patch-01 (from rev 12722, thirdparty/cxf/branches/cxf-2.2.6)
15 years, 9 months
JBossWS SVN: r12722 - thirdparty/cxf/branches/cxf-2.2.6/api/src/main/java/org/apache/cxf/endpoint.
by jbossws-commits@lists.jboss.org
Author: fnasser(a)redhat.com
Date: 2010-08-03 11:45:40 -0400 (Tue, 03 Aug 2010)
New Revision: 12722
Modified:
thirdparty/cxf/branches/cxf-2.2.6/api/src/main/java/org/apache/cxf/endpoint/ClientCallback.java
Log:
Patch for JBPAPP-4761 (Alessio Soldano)
Modified: thirdparty/cxf/branches/cxf-2.2.6/api/src/main/java/org/apache/cxf/endpoint/ClientCallback.java
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.6/api/src/main/java/org/apache/cxf/endpoint/ClientCallback.java 2010-08-03 15:44:06 UTC (rev 12721)
+++ thirdparty/cxf/branches/cxf-2.2.6/api/src/main/java/org/apache/cxf/endpoint/ClientCallback.java 2010-08-03 15:45:40 UTC (rev 12722)
@@ -35,7 +35,7 @@
protected Map<String, Object> context;
protected Object[] result;
protected Throwable exception;
- protected boolean done;
+ protected volatile boolean done;
protected boolean cancelled;
protected boolean started;
15 years, 9 months