JBossWS SVN: r17444 - in thirdparty/cxf/branches/cxf-2.6.6: api/src/main/java/org/apache/cxf/interceptor and 7 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2013-04-04 12:13:36 -0400 (Thu, 04 Apr 2013)
New Revision: 17444
Modified:
thirdparty/cxf/branches/cxf-2.6.6/api/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/api/src/main/java/org/apache/cxf/interceptor/StaxInInterceptor.java
thirdparty/cxf/branches/cxf-2.6.6/api/src/main/java/org/apache/cxf/staxutils/DepthRestrictingStreamReader.java
thirdparty/cxf/branches/cxf-2.6.6/api/src/main/java/org/apache/cxf/staxutils/StaxUtils.java
thirdparty/cxf/branches/cxf-2.6.6/parent/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/core/src/main/java/org/apache/cxf/interceptor/security/DepthRestrictingStreamInterceptor.java
thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/jaxb/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/sdo/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/xmlbeans/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/corba/pom.xml
Log:
Upgrade to woodstox 4.2.0
Modified: thirdparty/cxf/branches/cxf-2.6.6/api/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/api/pom.xml 2013-04-04 15:01:17 UTC (rev 17443)
+++ thirdparty/cxf/branches/cxf-2.6.6/api/pom.xml 2013-04-04 16:13:36 UTC (rev 17444)
@@ -102,9 +102,8 @@
<scope>provided</scope>
</dependency>
<dependency>
- <groupId>${cxf.stax.impl.groupId}</groupId>
- <artifactId>${cxf.stax.impl.artifactId}</artifactId>
- <scope>runtime</scope>
+ <groupId>org.codehaus.woodstox</groupId>
+ <artifactId>woodstox-core-asl</artifactId>
</dependency>
<dependency>
Modified: thirdparty/cxf/branches/cxf-2.6.6/api/src/main/java/org/apache/cxf/interceptor/StaxInInterceptor.java
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/api/src/main/java/org/apache/cxf/interceptor/StaxInInterceptor.java 2013-04-04 15:01:17 UTC (rev 17443)
+++ thirdparty/cxf/branches/cxf-2.6.6/api/src/main/java/org/apache/cxf/interceptor/StaxInInterceptor.java 2013-04-04 16:13:36 UTC (rev 17444)
@@ -120,16 +120,50 @@
}
}
}
+ xreader = configureRestrictions(xreader, message);
} catch (XMLStreamException e) {
throw new Fault(new org.apache.cxf.common.i18n.Message("STREAM_CREATE_EXC",
LOG,
encoding), e);
}
-
message.setContent(XMLStreamReader.class, xreader);
message.getInterceptorChain().add(StaxInEndingInterceptor.INSTANCE);
}
+ private XMLStreamReader configureRestrictions(XMLStreamReader xreader, Message message) throws XMLStreamException {
+ Integer maxChildElements = getInteger(message, StaxUtils.MAX_CHILD_ELEMENTS);
+ Integer maxElementDepth = getInteger(message, StaxUtils.MAX_ELEMENT_DEPTH);
+ Integer maxAttributeCount = getInteger(message, StaxUtils.MAX_ATTRIBUTE_COUNT);
+ Integer maxAttributeSize = getInteger(message, StaxUtils.MAX_ATTRIBUTE_SIZE);
+ Integer maxTextLength = getInteger(message, StaxUtils.MAX_TEXT_LENGTH);
+ Long maxElementCount = getLong(message, StaxUtils.MAX_ELEMENT_COUNT);
+ Long maxXMLCharacters = getLong(message, StaxUtils.MAX_XML_CHARACTERS);
+ return StaxUtils.configureReader(xreader, maxChildElements, maxElementDepth,
+ maxAttributeCount, maxAttributeSize, maxTextLength,
+ maxElementCount, maxXMLCharacters);
+ }
+ private Long getLong(Message message, String key) {
+ Object o = message.getContextualProperty(key);
+ if (o instanceof Long) {
+ return (Long)o;
+ } else if (o instanceof Number) {
+ return ((Number)o).longValue();
+ } else if (o instanceof String) {
+ return Long.valueOf(o.toString());
+ }
+ return null;
+ }
+ private Integer getInteger(Message message, String key) {
+ Object o = message.getContextualProperty(key);
+ if (o instanceof Integer) {
+ return (Integer)o;
+ } else if (o instanceof Number) {
+ return ((Number)o).intValue();
+ } else if (o instanceof String) {
+ return Integer.valueOf((String)o);
+ }
+ return null;
+ }
public static XMLInputFactory getXMLInputFactory(Message m) throws Fault {
Object o = m.getContextualProperty(XMLInputFactory.class.getName());
if (o instanceof XMLInputFactory) {
Modified: thirdparty/cxf/branches/cxf-2.6.6/api/src/main/java/org/apache/cxf/staxutils/DepthRestrictingStreamReader.java
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/api/src/main/java/org/apache/cxf/staxutils/DepthRestrictingStreamReader.java 2013-04-04 15:01:17 UTC (rev 17443)
+++ thirdparty/cxf/branches/cxf-2.6.6/api/src/main/java/org/apache/cxf/staxutils/DepthRestrictingStreamReader.java 2013-04-04 16:13:36 UTC (rev 17444)
@@ -42,10 +42,9 @@
int elementCountThreshold,
int innerElementLevelThreshold,
int innerElementCountThreshold) {
- super(reader);
- this.props = new DocumentDepthProperties(elementCountThreshold,
- innerElementLevelThreshold,
- innerElementCountThreshold);
+ this(reader, new DocumentDepthProperties(elementCountThreshold,
+ innerElementLevelThreshold,
+ innerElementCountThreshold));
}
public DepthRestrictingStreamReader(XMLStreamReader reader,
Modified: thirdparty/cxf/branches/cxf-2.6.6/api/src/main/java/org/apache/cxf/staxutils/StaxUtils.java
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/api/src/main/java/org/apache/cxf/staxutils/StaxUtils.java 2013-04-04 15:01:17 UTC (rev 17443)
+++ thirdparty/cxf/branches/cxf-2.6.6/api/src/main/java/org/apache/cxf/staxutils/StaxUtils.java 2013-04-04 16:13:36 UTC (rev 17444)
@@ -32,6 +32,7 @@
import java.util.Stack;
import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.BlockingQueue;
+import java.util.logging.Level;
import java.util.logging.Logger;
import javax.xml.namespace.NamespaceContext;
@@ -76,6 +77,8 @@
import org.xml.sax.InputSource;
import org.xml.sax.XMLReader;
+import com.ctc.wstx.stax.WstxInputFactory;
+
import org.apache.cxf.common.classloader.ClassLoaderUtils;
import org.apache.cxf.common.logging.LogUtils;
import org.apache.cxf.common.util.StringUtils;
@@ -83,8 +86,29 @@
import org.apache.cxf.helpers.CastUtils;
import org.apache.cxf.helpers.DOMUtils;
import org.apache.cxf.helpers.XMLUtils;
+import org.codehaus.stax2.XMLStreamReader2;
public final class StaxUtils {
+ // System properies for defaults, but also contextual properties usable
+ // for StaxInInterceptor
+ public static final String MAX_CHILD_ELEMENTS =
+ "org.apache.cxf.stax.maxChildElements";
+ public static final String MAX_ELEMENT_DEPTH =
+ "org.apache.cxf.stax.maxElementDepth";
+ public static final String MAX_ATTRIBUTE_COUNT =
+ "org.apache.cxf.stax.maxAttributeCount";
+ public static final String MAX_ATTRIBUTE_SIZE =
+ "org.apache.cxf.stax.maxAttributeSize";
+ public static final String MAX_TEXT_LENGTH =
+ "org.apache.cxf.stax.maxTextLength";
+ public static final String MAX_ELEMENT_COUNT =
+ "org.apache.cxf.stax.maxElementCount";
+ public static final String MAX_XML_CHARACTERS =
+ "org.apache.cxf.stax.maxXMLCharacters";
+
+ public static final String ALLOW_INSECURE_PARSER =
+ "org.apache.cxf.stax.allowInsecureParser";
+
private static final String INNER_ELEMENT_COUNT_SYSTEM_PROP =
"org.apache.cxf.staxutils.innerElementCountThreshold";
private static final String INNER_ELEMENT_LEVEL_SYSTEM_PROP =
@@ -104,51 +128,53 @@
"ns7".intern(), "ns8".intern(), "ns9".intern()
};
- private static int innerElementLevelThreshold = -1;
- private static int innerElementCountThreshold = -1;
+ private static int innerElementLevelThreshold = 100;
+ private static int innerElementCountThreshold = 50000;
+ private static int maxAttributeCount = 500;
+ private static int maxAttributeSize = 64 * 1024; //64K per attribute, likely just "list" will hit
+ private static int maxTextLength = 128 * 1024 * 1024; //128M - more than this should DEFINITLEY use MTOM
+ private static long maxElementCount = Long.MAX_VALUE;
+ private static long maxXMLCharacters = Long.MAX_VALUE;
+ //will change to false in the near future
+ private static boolean allowInsecureParser = true;
+
static {
- int i = 20;
+ int i = getInteger("org.apache.cxf.staxutils.pool-size", 20);
- try {
- String s = SystemPropertyAction.getProperty("org.apache.cxf.staxutils.pool-size",
- "-1");
- i = Integer.parseInt(s);
- } catch (Throwable t) {
- //ignore
- i = 20;
- }
- if (i <= 0) {
- i = 20;
- }
NS_AWARE_INPUT_FACTORY_POOL = new ArrayBlockingQueue<XMLInputFactory>(i);
OUTPUT_FACTORY_POOL = new ArrayBlockingQueue<XMLOutputFactory>(i);
- try {
- String s = SystemPropertyAction.getProperty(INNER_ELEMENT_LEVEL_SYSTEM_PROP, "-1");
- innerElementLevelThreshold = Integer.parseInt(s);
- } catch (Throwable t) {
- innerElementLevelThreshold = -1;
+
+ //old names
+ innerElementCountThreshold = getInteger(INNER_ELEMENT_LEVEL_SYSTEM_PROP, innerElementCountThreshold);
+ innerElementLevelThreshold = getInteger(INNER_ELEMENT_COUNT_SYSTEM_PROP, innerElementLevelThreshold);
+ //new names
+ innerElementCountThreshold = getInteger(MAX_CHILD_ELEMENTS, innerElementCountThreshold);
+ innerElementLevelThreshold = getInteger(MAX_ELEMENT_DEPTH, innerElementLevelThreshold);
+ maxAttributeCount = getInteger(MAX_ATTRIBUTE_COUNT, maxAttributeCount);
+ maxAttributeSize = getInteger(MAX_ATTRIBUTE_SIZE, maxAttributeSize);
+ maxTextLength = getInteger(MAX_TEXT_LENGTH, maxTextLength);
+ maxElementCount = getLong(MAX_ELEMENT_COUNT, maxElementCount);
+ maxXMLCharacters = getLong(MAX_XML_CHARACTERS, maxXMLCharacters);
+
+ String s = SystemPropertyAction.getPropertyOrNull(ALLOW_INSECURE_PARSER);
+ if (!StringUtils.isEmpty(s)) {
+ allowInsecureParser = "1".equals(s) || Boolean.parseBoolean(s);
}
- if (innerElementLevelThreshold <= 0) {
- innerElementLevelThreshold = -1;
- }
+
+ XMLInputFactory xif = null;
try {
- String s = SystemPropertyAction.getProperty(INNER_ELEMENT_COUNT_SYSTEM_PROP, "-1");
- innerElementCountThreshold = Integer.parseInt(s);
+ xif = createXMLInputFactory(true);
+ String xifClassName = xif.getClass().getName();
+ if (!xifClassName.contains("ctc.wstx") && !xifClassName.contains("xml.xlxp")
+ && !xifClassName.contains("xml.xlxp2") && !xifClassName.contains("bea.core")) {
+ xif = null;
+ }
} catch (Throwable t) {
- innerElementCountThreshold = -1;
+ //ignore, can always drop down to the pooled factories
+ xif = null;
}
- if (innerElementCountThreshold <= 0) {
- innerElementCountThreshold = -1;
- }
- XMLInputFactory xif = createXMLInputFactory(true);
- String xifClassName = xif.getClass().getName();
- if (xifClassName.contains("ctc.wstx") || xifClassName.contains("xml.xlxp")
- || xifClassName.contains("xml.xlxp2") || xifClassName.contains("bea.core")) {
- SAFE_INPUT_FACTORY = xif;
- } else {
- SAFE_INPUT_FACTORY = null;
- }
+ SAFE_INPUT_FACTORY = xif;
XMLOutputFactory xof = XMLOutputFactory.newInstance();
String xofClassName = xof.getClass().getName();
@@ -163,6 +189,38 @@
private StaxUtils() {
}
+ private static int getInteger(String prop, int def) {
+ try {
+ String s = SystemPropertyAction.getPropertyOrNull(prop);
+ if (StringUtils.isEmpty(s)) {
+ return def;
+ }
+ int i = Integer.parseInt(s);
+ if (i < 0) {
+ i = def;
+ }
+ return i;
+ } catch (Throwable t) {
+ //ignore
+ }
+ return def;
+ }
+ private static long getLong(String prop, long def) {
+ try {
+ String s = SystemPropertyAction.getPropertyOrNull(prop);
+ if (StringUtils.isEmpty(s)) {
+ return def;
+ }
+ long i = Long.parseLong(s);
+ if (i < 0) {
+ i = def;
+ }
+ return i;
+ } catch (Throwable t) {
+ //ignore
+ }
+ return def;
+ }
public static void setInnerElementLevelThreshold(int i) {
innerElementLevelThreshold = i;
@@ -228,10 +286,24 @@
/**
* Return a new factory so that the caller can set sticky parameters.
* @param nsAware
- * @return
+ * @throws XMLStreamException
*/
public static XMLInputFactory createXMLInputFactory(boolean nsAware) {
XMLInputFactory factory = XMLInputFactory.newInstance();
+ if (!setRestrictionProperties(factory)) {
+ try {
+ factory = createWoodstoxFactory();
+ } catch (Throwable t) {
+ //ignore for now
+ }
+ if (!setRestrictionProperties(factory)) {
+ if (allowInsecureParser) {
+ LOG.log(Level.WARNING, "INSECURE_PARSER_DETECTED", factory.getClass().getName());
+ } else {
+ throw new RuntimeException("Cannot create a secure XMLInputFactory");
+ }
+ }
+ }
setProperty(factory, XMLInputFactory.IS_NAMESPACE_AWARE, nsAware);
setProperty(factory, XMLInputFactory.SUPPORT_DTD, Boolean.FALSE);
setProperty(factory, XMLInputFactory.IS_REPLACING_ENTITY_REFERENCES, Boolean.FALSE);
@@ -243,15 +315,36 @@
throw new XMLStreamException("Reading external entities is disabled");
}
});
+
return factory;
}
- private static void setProperty(XMLInputFactory f, String p, Object o) {
+ private static XMLInputFactory createWoodstoxFactory() {
+ return new WstxInputFactory();
+ }
+ private static boolean setRestrictionProperties(XMLInputFactory factory) {
+ //For now, we can only support Woodstox 4.2.x and newer as none of the other
+ //stax parsers support these settings
+ if (setProperty(factory, "com.ctc.wstx.maxAttributesPerElement", maxAttributeCount)
+ && setProperty(factory, "com.ctc.wstx.maxAttributeSize", maxAttributeSize)
+ && setProperty(factory, "com.ctc.wstx.maxChildrenPerElement", innerElementCountThreshold)
+ && setProperty(factory, "com.ctc.wstx.maxElementCount", maxElementCount)
+ && setProperty(factory, "com.ctc.wstx.maxElementDepth", innerElementLevelThreshold)
+ && setProperty(factory, "com.ctc.wstx.maxCharacters", maxXMLCharacters)
+ && setProperty(factory, "com.ctc.wstx.maxTextLength", maxTextLength)) {
+ return true;
+ }
+ return false;
+ }
+
+ private static boolean setProperty(XMLInputFactory f, String p, Object o) {
try {
f.setProperty(p, o);
+ return true;
} catch (Throwable t) {
//ignore
}
+ return false;
}
@@ -1619,5 +1712,84 @@
}
}
}
+
+ //CHECKSTYLE:OFF - lots of params to configure
+ public static XMLStreamReader configureReader(XMLStreamReader reader, Integer maxChildElements,
+ Integer maxElementDepth, Integer maxAttributeCount,
+ Integer maxAttributeSize, Integer maxTextLength,
+ Long maxElementCount, Long maxXMLCharacters)
+ throws XMLStreamException {
+ //CHECKSTYLE:ON
+
+ // We currently ONLY support Woodstox 4.2.x for most of this other than a few things
+ // that we can handle via a wrapper.
+ try {
+ DocumentDepthProperties p = null;
+ if (maxChildElements != null) {
+ try {
+ setProperty(reader, "com.ctc.wstx.maxChildrenPerElement", maxChildElements);
+ } catch (Throwable t) {
+ //we can handle this via a wrapper
+ p = new DocumentDepthProperties();
+ p.setInnerElementCountThreshold(maxChildElements);
+ }
+ }
+ if (maxElementDepth != null) {
+ try {
+ setProperty(reader, "com.ctc.wstx.maxElementDepth", maxElementDepth);
+ } catch (Throwable t) {
+ //we can handle this via a wrapper
+ if (p == null) {
+ p = new DocumentDepthProperties();
+ }
+ p.setInnerElementLevelThreshold(maxElementDepth);
+ }
+ }
+ if (maxAttributeCount != null) {
+ setProperty(reader, "com.ctc.wstx.maxAttributeCount", maxAttributeCount);
+ }
+ if (maxAttributeSize != null) {
+ setProperty(reader, "com.ctc.wstx.maxAttributeSize", maxAttributeSize);
+ }
+ if (maxTextLength != null) {
+ setProperty(reader, "com.ctc.wstx.maxTextLength", maxTextLength);
+ }
+ if (maxElementCount != null) {
+ try {
+ setProperty(reader, "com.ctc.wstx.maxElementCount", maxElementCount);
+ } catch (Throwable t) {
+ //we can handle this via a wrapper
+ if (p == null) {
+ p = new DocumentDepthProperties();
+ }
+ p.setElementCountThreshold(maxElementCount.intValue());
+ }
+ }
+ if (maxXMLCharacters != null) {
+ setProperty(reader, "com.ctc.wstx.maxCharacters", maxXMLCharacters);
+ }
+ if (p != null) {
+ reader = new DepthRestrictingStreamReader(reader, p);
+ }
+ } catch (ClassCastException cce) {
+ //not an XMLStreamReader2
+ if (allowInsecureParser) {
+ LOG.warning("INSTANCE_NOT_XMLSTREAMREADER2");
+ } else {
+ throw new XMLStreamException(cce);
+ }
+ } catch (IllegalArgumentException cce) {
+ //not a property supported by this version of woodstox
+ if (allowInsecureParser) {
+ LOG.log(Level.WARNING, "SECURE_PROPERTY_NOT_SUPPORTED", cce.getMessage());
+ } else {
+ throw new XMLStreamException(cce);
+ }
+ }
+ return reader;
+ }
+ private static void setProperty(XMLStreamReader reader, String p, Object v) {
+ ((XMLStreamReader2)reader).setProperty(p, v);
+ }
}
Modified: thirdparty/cxf/branches/cxf-2.6.6/parent/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/parent/pom.xml 2013-04-04 15:01:17 UTC (rev 17443)
+++ thirdparty/cxf/branches/cxf-2.6.6/parent/pom.xml 2013-04-04 16:13:36 UTC (rev 17444)
@@ -145,11 +145,8 @@
<cxf.spring.osgi.version>1.2.1</cxf.spring.osgi.version>
<cxf.spring.ldap.version>1.3.1.RELEASE</cxf.spring.ldap.version>
<cxf.spring.mock>spring-test</cxf.spring.mock>
- <cxf.stax.impl.groupId>org.codehaus.woodstox</cxf.stax.impl.groupId>
- <cxf.stax.impl.artifactId>woodstox-core-asl</cxf.stax.impl.artifactId>
- <cxf.stax.impl.version>${cxf.woodstox.core.version}</cxf.stax.impl.version>
<cxf.velocity.version>1.7</cxf.velocity.version>
- <cxf.woodstox.core.version>4.1.4</cxf.woodstox.core.version>
+ <cxf.woodstox.core.version>4.2.0</cxf.woodstox.core.version>
<cxf.woodstox.stax2-api.version>3.1.1</cxf.woodstox.stax2-api.version>
<cxf.wsdl4j.version>1.6.2</cxf.wsdl4j.version>
<cxf.wss4j.version>1.6.9</cxf.wss4j.version>
@@ -718,23 +715,6 @@
</exclusion>
</exclusions>
</dependency>
- <dependency>
- <groupId>${cxf.stax.impl.groupId}</groupId>
- <artifactId>${cxf.stax.impl.artifactId}</artifactId>
- <version>${cxf.stax.impl.version}</version>
- <!-- these are motivated by Woodstox, but they can't hurt with others. -->
- <exclusions>
- <exclusion>
- <groupId>stax</groupId>
- <artifactId>stax-api</artifactId>
- </exclusion>
- <!-- this one comes from sjsxp -->
- <exclusion>
- <groupId>javax.xml.stream</groupId>
- <artifactId>stax-api</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
<dependency>
<groupId>org.slf4j</groupId>
@@ -1511,6 +1491,17 @@
<groupId>org.codehaus.woodstox</groupId>
<artifactId>woodstox-core-asl</artifactId>
<version>${cxf.woodstox.core.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>stax</groupId>
+ <artifactId>stax-api</artifactId>
+ </exclusion>
+ <!-- this one comes from sjsxp -->
+ <exclusion>
+ <groupId>javax.xml.stream</groupId>
+ <artifactId>stax-api</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>net.java.dev.msv</groupId>
@@ -1572,27 +1563,6 @@
</properties>
</profile>
<profile>
- <!-- sjsxp is really the precursor to the jaxp-ri jars. However, getting the jaxp-ri jar to work on
- Java 5 requires endorsing it which is non-trivial in maven :-(.
- -->
- <id>sjsxp</id>
- <properties>
- <cxf.stax.impl.groupId>com.sun.xml.stream</cxf.stax.impl.groupId>
- <cxf.stax.impl.artifactId>sjsxp</cxf.stax.impl.artifactId>
- <cxf.stax.impl.version>1.0.1</cxf.stax.impl.version>
- </properties>
- </profile>
- <profile>
- <!-- This really only works with Java 6 as the classes are identically named with the same classes in the Java 5 JDK
- and the Java 5 versions get picked up instead -->
- <id>jaxpri</id>
- <properties>
- <cxf.stax.impl.groupId>com.sun.xml.parsers</cxf.stax.impl.groupId>
- <cxf.stax.impl.artifactId>jaxp-ri</cxf.stax.impl.artifactId>
- <cxf.stax.impl.version>1.4.2</cxf.stax.impl.version>
- </properties>
- </profile>
- <profile>
<id>axis2-saaj</id>
<properties>
<cxf.saaj.impl.groupId>org.apache.axis2</cxf.saaj.impl.groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/core/src/main/java/org/apache/cxf/interceptor/security/DepthRestrictingStreamInterceptor.java
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/core/src/main/java/org/apache/cxf/interceptor/security/DepthRestrictingStreamInterceptor.java 2013-04-04 15:01:17 UTC (rev 17443)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/core/src/main/java/org/apache/cxf/interceptor/security/DepthRestrictingStreamInterceptor.java 2013-04-04 16:13:36 UTC (rev 17444)
@@ -25,6 +25,7 @@
import javax.xml.stream.XMLStreamReader;
+import org.apache.cxf.interceptor.StaxInInterceptor;
import org.apache.cxf.message.Message;
import org.apache.cxf.phase.AbstractPhaseInterceptor;
import org.apache.cxf.phase.Phase;
@@ -43,6 +44,7 @@
public DepthRestrictingStreamInterceptor() {
this(Phase.POST_STREAM);
+ addAfter(StaxInInterceptor.class.getName());
}
public DepthRestrictingStreamInterceptor(String phase) {
@@ -69,16 +71,16 @@
return;
}
- XMLStreamReader reader = null;
- InputStream is = message.getContent(InputStream.class);
- if (is != null) {
- reader = StaxUtils.createXMLStreamReader(is);
- message.setContent(InputStream.class, null);
- } else {
- reader = message.getContent(XMLStreamReader.class);
- }
+ XMLStreamReader reader = message.getContent(XMLStreamReader.class);
if (reader == null) {
- return;
+ InputStream is = message.getContent(InputStream.class);
+ if (is != null) {
+ reader = StaxUtils.createXMLStreamReader(is);
+ message.setContent(InputStream.class, null);
+ }
+ if (reader == null) {
+ return;
+ }
}
DepthRestrictingStreamReader dr =
new DepthRestrictingStreamReader(reader,
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/jaxb/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/jaxb/pom.xml 2013-04-04 15:01:17 UTC (rev 17443)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/jaxb/pom.xml 2013-04-04 16:13:36 UTC (rev 17444)
@@ -145,12 +145,6 @@
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-activation_1.1_spec</artifactId>
</dependency>
-
- <dependency>
- <groupId>${cxf.stax.impl.groupId}</groupId>
- <artifactId>${cxf.stax.impl.artifactId}</artifactId>
- </dependency>
-
</dependencies>
</profile>
</profiles>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/sdo/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/sdo/pom.xml 2013-04-04 15:01:17 UTC (rev 17443)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/sdo/pom.xml 2013-04-04 16:13:36 UTC (rev 17444)
@@ -68,10 +68,6 @@
<artifactId>cxf-rt-core</artifactId>
<version>${project.version}</version>
</dependency>
- <dependency>
- <groupId>${cxf.stax.impl.groupId}</groupId>
- <artifactId>${cxf.stax.impl.artifactId}</artifactId>
- </dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/xmlbeans/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/xmlbeans/pom.xml 2013-04-04 15:01:17 UTC (rev 17443)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/xmlbeans/pom.xml 2013-04-04 16:13:36 UTC (rev 17444)
@@ -193,10 +193,6 @@
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-stax-api_1.0_spec</artifactId>
</dependency>
- <dependency>
- <groupId>${cxf.stax.impl.groupId}</groupId>
- <artifactId>${cxf.stax.impl.artifactId}</artifactId>
- </dependency>
</dependencies>
</profile>
<profile>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/corba/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/corba/pom.xml 2013-04-04 15:01:17 UTC (rev 17443)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/corba/pom.xml 2013-04-04 16:13:36 UTC (rev 17444)
@@ -69,10 +69,6 @@
<artifactId>xmlschema-core</artifactId>
</dependency>
<dependency>
- <groupId>${cxf.stax.impl.groupId}</groupId>
- <artifactId>${cxf.stax.impl.artifactId}</artifactId>
- </dependency>
- <dependency>
<groupId>wsdl4j</groupId>
<artifactId>wsdl4j</artifactId>
</dependency>
11 years, 11 months
JBossWS SVN: r17443 - in thirdparty/cxf/branches/cxf-2.6.6: api and 94 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2013-04-04 11:01:17 -0400 (Thu, 04 Apr 2013)
New Revision: 17443
Modified:
thirdparty/cxf/branches/cxf-2.6.6/
thirdparty/cxf/branches/cxf-2.6.6/api/
thirdparty/cxf/branches/cxf-2.6.6/common/wstx-msv-validation/
thirdparty/cxf/branches/cxf-2.6.6/common/xerces-xsd-validation/
thirdparty/cxf/branches/cxf-2.6.6/integration/jca/
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/cxf-jaxrs-service/
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/cxf-jaxws-javafirst/
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/codegen-plugin/
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/corba/
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/java2ws-plugin/
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/wadl2java-plugin/
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/wsdl-validator-plugin/
thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/
thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/all/
thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/compatible/
thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/jaxrs/
thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/minimal/
thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/
thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/commands/
thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/features/
thirdparty/cxf/branches/cxf-2.6.6/parent/
thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/coloc/
thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/corba/
thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/object/
thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/soap/
thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/xml/
thirdparty/cxf/branches/cxf-2.6.6/rt/core/
thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/aegis/
thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/jaxb/
thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/jibx/
thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/sdo/
thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/xmlbeans/
thirdparty/cxf/branches/cxf-2.6.6/rt/features/clustering/
thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/jaxrs/
thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/jaxws/
thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/js/
thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/simple/
thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/
thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/javascript-rt/
thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/javascript-tests/
thirdparty/cxf/branches/cxf-2.6.6/rt/management-web/
thirdparty/cxf/branches/cxf-2.6.6/rt/management/
thirdparty/cxf/branches/cxf-2.6.6/rt/rs/extensions/providers/
thirdparty/cxf/branches/cxf-2.6.6/rt/rs/extensions/search/
thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/cors/
thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/
thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/oauth/
thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/oauth2/
thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/sso/saml/
thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/xml/
thirdparty/cxf/branches/cxf-2.6.6/rt/transports/http-jetty/
thirdparty/cxf/branches/cxf-2.6.6/rt/transports/http/
thirdparty/cxf/branches/cxf-2.6.6/rt/transports/jms/
thirdparty/cxf/branches/cxf-2.6.6/rt/transports/local/
thirdparty/cxf/branches/cxf-2.6.6/rt/ws/addr/
thirdparty/cxf/branches/cxf-2.6.6/rt/ws/mex/
thirdparty/cxf/branches/cxf-2.6.6/rt/ws/policy/
thirdparty/cxf/branches/cxf-2.6.6/rt/ws/rm/
thirdparty/cxf/branches/cxf-2.6.6/rt/ws/security/
thirdparty/cxf/branches/cxf-2.6.6/services/sts/sts-core/
thirdparty/cxf/branches/cxf-2.6.6/services/sts/sts-war/
thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/advanced/
thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/basic/
thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-api/
thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-core/
thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-osgi/
thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/
thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/grizzly/
thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/webapp/
thirdparty/cxf/branches/cxf-2.6.6/systests/databinding/
thirdparty/cxf/branches/cxf-2.6.6/systests/jaxrs/
thirdparty/cxf/branches/cxf-2.6.6/systests/jaxws/
thirdparty/cxf/branches/cxf-2.6.6/systests/rs-security/
thirdparty/cxf/branches/cxf-2.6.6/systests/transport-jms/
thirdparty/cxf/branches/cxf-2.6.6/systests/transports/
thirdparty/cxf/branches/cxf-2.6.6/systests/uncategorized/
thirdparty/cxf/branches/cxf-2.6.6/systests/ws-rm/
thirdparty/cxf/branches/cxf-2.6.6/systests/ws-security-examples/
thirdparty/cxf/branches/cxf-2.6.6/systests/ws-security/
thirdparty/cxf/branches/cxf-2.6.6/systests/ws-specs/
thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/codegen/
thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/java2ws/
thirdparty/cxf/branches/cxf-2.6.6/testutils/
thirdparty/cxf/branches/cxf-2.6.6/tools/common/
thirdparty/cxf/branches/cxf-2.6.6/tools/corba/
thirdparty/cxf/branches/cxf-2.6.6/tools/javato/ws/
thirdparty/cxf/branches/cxf-2.6.6/tools/validator/
thirdparty/cxf/branches/cxf-2.6.6/tools/wadlto/jaxrs/
thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/core/
thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/databinding/jaxb/
thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/frontend/javascript/
thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/frontend/jaxws/
thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/misc/
thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/test/
Log:
Setting svn:ignore
Property changes on: thirdparty/cxf/branches/cxf-2.6.6
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/api
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/common/wstx-msv-validation
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/common/xerces-xsd-validation
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/integration/jca
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/cxf-jaxrs-service
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/cxf-jaxws-javafirst
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/codegen-plugin
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/corba
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/java2ws-plugin
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/wadl2java-plugin
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/wsdl-validator-plugin
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/all
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/compatible
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/jaxrs
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/minimal
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/commands
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/features
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/parent
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/coloc
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/corba
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/object
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/soap
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/xml
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/core
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/aegis
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/jaxb
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/jibx
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/sdo
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/xmlbeans
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/features/clustering
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/jaxrs
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/jaxws
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/js
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/simple
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/javascript
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/javascript-rt
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/javascript-tests
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/management
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/management-web
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/rs/extensions/providers
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/rs/extensions/search
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/cors
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/oauth
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/oauth2
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/sso/saml
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/xml
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/transports/http
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/transports/http-jetty
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/transports/jms
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/transports/local
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/ws/addr
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/ws/mex
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/ws/policy
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/ws/rm
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/rt/ws/security
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/services/sts/sts-core
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/services/sts/sts-war
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/advanced
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/basic
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-api
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-core
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-osgi
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/grizzly
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/webapp
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/systests/databinding
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/systests/jaxrs
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/systests/jaxws
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/systests/rs-security
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/systests/transport-jms
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/systests/transports
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/systests/uncategorized
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/systests/ws-rm
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/systests/ws-security
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/systests/ws-security-examples
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/systests/ws-specs
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/codegen
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/java2ws
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/testutils
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/tools/common
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/tools/corba
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/tools/javato/ws
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/tools/validator
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/tools/wadlto/jaxrs
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/core
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/databinding/jaxb
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/frontend/javascript
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/frontend/jaxws
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/misc
___________________________________________________________________
Added: svn:ignore
+ target
Property changes on: thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/test
___________________________________________________________________
Added: svn:ignore
+ target
11 years, 11 months
JBossWS SVN: r17442 - in thirdparty/cxf/branches/cxf-2.6.6: api and 166 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2013-04-04 10:42:08 -0400 (Thu, 04 Apr 2013)
New Revision: 17442
Modified:
thirdparty/cxf/branches/cxf-2.6.6/api/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/common/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/common/wstx-msv-validation/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/common/xerces-xsd-validation/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/manifest/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/aegis/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/aegis_standalone/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/callback/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/configuration_interceptor/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/corba/bank/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/corba/bank_ws_addressing/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/corba/hello_world/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/groovy_spring_support/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/in_jvm_transport/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_jaxws/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_jaxws_factory_bean/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_jms/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_pojo/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_spring_support/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/basic/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/basic_https/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/content_negotiation/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/minimal_osgi/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/spring_security/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_server_aegis_client/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jaxws_async/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jaxws_dispatch_provider/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jaxws_handlers/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_pubsub/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_queue/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_spec_demo/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_spring_config/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_browser_client_java_first/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_browser_client_simple/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_client/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_provider/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/logbrowser/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/mtom/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/oauth/client/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/oauth/server/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/restful_dispatch/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ruby_spring_support/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/soap_header/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/sts/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_addressing/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_notification/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_policy/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_rm/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/sign_enc/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/ut/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/ut_policy/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/ut_sign/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_dynamic_client/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_https/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_pure_xml/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_rpclit/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_soap12/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_xml_wrapped/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_xmlbeans/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/integration/jca/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/integration/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/cxf-jaxrs-service/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/codegen-plugin/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/corba/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/java2ws-plugin/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/wadl2java-plugin/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/wsdl-validator-plugin/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/all/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/compatible/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/jaxrs/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/minimal/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/commands/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/features/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/parent/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/coloc/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/corba/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/object/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/soap/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/xml/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/core/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/aegis/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/jaxb/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/jibx/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/sdo/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/xmlbeans/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/features/clustering/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/jaxrs/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/jaxws/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/js/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/simple/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/javascript-rt/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/javascript-tests/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/management-web/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/management/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/rs/extensions/providers/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/rs/extensions/search/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/cors/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/oauth/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/oauth2/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/sso/saml/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/xml/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/transports/http-jetty/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/transports/http/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/transports/jms/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/transports/local/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/ws/addr/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/ws/mex/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/ws/policy/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/ws/rm/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/rt/ws/security/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/services/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/services/sts/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/services/sts/sts-core/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/services/sts/sts-war/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/advanced/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/basic/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/services/wsn/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-api/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-core/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-osgi/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/grizzly/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/webapp/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/databinding/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/jaxrs/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/jaxws/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/rs-security/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/transport-jms/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/transports/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/uncategorized/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/ws-rm/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/ws-security-examples/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/ws-security/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/ws-specs/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/codegen/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/java2ws/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/testutils/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/common/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/corba/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/javato/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/javato/ws/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/validator/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/wadlto/jaxrs/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/wadlto/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/core/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/databinding/jaxb/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/frontend/javascript/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/frontend/jaxws/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/misc/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/pom.xml
thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/test/pom.xml
Log:
Updating version and allowing deployment to jboss nexus repo
Modified: thirdparty/cxf/branches/cxf-2.6.6/api/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/api/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/api/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -23,13 +23,13 @@
<packaging>jar</packaging>
<name>Apache CXF API</name>
<description>Apache CXF API</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/common/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/common/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/common/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common</artifactId>
<packaging>pom</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Common</name>
<description>Apache CXF Common</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/common/wstx-msv-validation/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/common/wstx-msv-validation/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/common/wstx-msv-validation/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-wstx-msv-validation</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Woodstox/MSV Schema Validation</name>
<description>Apache CXF Woodstox/MSV Schema Validation</description>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<dependencies>
Modified: thirdparty/cxf/branches/cxf-2.6.6/common/xerces-xsd-validation/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/common/xerces-xsd-validation/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/common/xerces-xsd-validation/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xerces-xsd-validation</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF XML Schema Validation with Xerces</name>
<description>Apache CXF XML Schema Validation with Xerces</description>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<dependencies>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/manifest/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/manifest/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/manifest/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -24,13 +24,13 @@
<packaging>jar</packaging>
<name>Apache CXF Manifest Jar</name>
<description>Apache CXF Manifest Jar</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -23,13 +23,13 @@
<packaging>pom</packaging>
<name>Apache CXF Distribution</name>
<description>Apache CXF Distribution</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/aegis/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/aegis/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/aegis/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>aegis</artifactId>
<name>CXF sample using code first POJO's and the Aegis Binding</name>
<description>CXF sample using code first POJO's and the Aegis Binding</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
@@ -103,24 +103,24 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-databinding-aegis</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- The server example in here launches the embedded jetty. Not needed
if you deploy a WAR. -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/aegis_standalone/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/aegis_standalone/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/aegis_standalone/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>aegis-standalone</artifactId>
<name>CXF sample using the Aegis Binding without any webservice</name>
<description>CXF sample using the Aegis Binding without any webservice</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -101,7 +101,7 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-databinding-aegis</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>net.java.dev.stax-utils</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/callback/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/callback/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/callback/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>callback</artifactId>
<name>CXF sample using a callback object</name>
<description>CXF sample using a callback object</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -150,17 +150,17 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/configuration_interceptor/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/configuration_interceptor/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/configuration_interceptor/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>configuration_interceptor</artifactId>
<name>CXF Sample of Stream GZIP Interceptor</name>
<description>CXF Sample of Stream GZIP Interceptor</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -130,22 +130,22 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-management</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/corba/bank/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/corba/bank/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/corba/bank/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -24,12 +24,12 @@
<name>Bank sample using JAX-WS API's to talk via CORBA/IIOP</name>
<description>Bank sample using JAX-WS API's to talk via CORBA/IIOP</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<properties>
@@ -132,17 +132,17 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-bindings-corba</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-common</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/corba/bank_ws_addressing/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/corba/bank_ws_addressing/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/corba/bank_ws_addressing/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -24,12 +24,12 @@
<name>Bank sample using JAX-WS API's to talk via CORBA/IIOP</name>
<description>Bank sample using JAX-WS API's to talk via CORBA/IIOP</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<properties>
@@ -208,17 +208,17 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-bindings-corba</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-common</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/corba/hello_world/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/corba/hello_world/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/corba/hello_world/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -24,12 +24,12 @@
<name>hello-world sample using JAX-WS API's to talk via CORBA/IIOP</name>
<description>hello-world sample using JAX-WS API's to talk via CORBA/IIOP</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<properties>
@@ -253,17 +253,17 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-bindings-corba</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-common</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/groovy_spring_support/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/groovy_spring_support/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/groovy_spring_support/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -23,12 +23,12 @@
<packaging>war</packaging>
<name>Spring HTTP Servlet demo with groovy support</name>
<description>Spring HTTP Servlet demo with groovy support</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -111,18 +111,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/in_jvm_transport/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/in_jvm_transport/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/in_jvm_transport/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>in_jvm_transport</artifactId>
<name>Colocated Demo using Document/Literal Style</name>
<description>Colocated Demo using Document/Literal Style</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
@@ -97,23 +97,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-bindings-coloc</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_jaxws/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_jaxws/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_jaxws/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -23,12 +23,12 @@
<packaging>war</packaging>
<name>Java First demo using JAX-WS APIs</name>
<description>Java First demo using JAX-WS APIs</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -125,12 +125,12 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_jaxws_factory_bean/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_jaxws_factory_bean/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_jaxws_factory_bean/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>java_first_jaxws_factory_bean</artifactId>
<name>Java First demo service using the JAXWSFactoryBeans</name>
<description>Java First demo service using the JAXWSFactoryBeans</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -95,18 +95,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_jms/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_jms/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_jms/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -24,12 +24,12 @@
<artifactId>java_first_jms</artifactId>
<name>Java First demo using JMS</name>
<description>Java First demo using JMS</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
@@ -119,12 +119,12 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_pojo/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_pojo/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_pojo/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>java_first_pojo</artifactId>
<name>Java First POJO Sample</name>
<description>Java First POJO Sample</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
@@ -96,18 +96,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_spring_support/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_spring_support/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/java_first_spring_support/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -20,7 +20,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>java_first_spring_support</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Spring HTTP Sample</name>
<description>Spring HTTP Sample</description>
<packaging>war</packaging>
@@ -28,7 +28,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -98,17 +98,17 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/basic/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/basic/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/basic/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>jax_rs_basic</artifactId>
<name>JAX-RS Basic Demo</name>
<description>JAX-RS Basic Demo</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<properties>
@@ -97,18 +97,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- This dependency is needed if you're using the Jetty container -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/basic_https/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/basic_https/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/basic_https/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>jax_rs_basic_https</artifactId>
<name>JAX-RS Basic Demo With HTTPS communications</name>
<description>JAX-RS Basic Demo With HTTPS communications</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
@@ -99,12 +99,12 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/content_negotiation/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/content_negotiation/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/content_negotiation/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>jax_rs_content_negotiation</artifactId>
<name>JAX-RS Content Negotiation Demo</name>
<description>JAX-RS Content Negotiation Demo</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<properties>
@@ -97,23 +97,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- This dependency is needed if you're using the Jetty container -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-extension-providers</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.codehaus.jettison</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/minimal_osgi/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/minimal_osgi/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/minimal_osgi/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -23,12 +23,12 @@
<artifactId>jax_rs_minimal_osgi</artifactId>
<name>JAX-RS Minimal OSGI Demo</name>
<description>JAX-RS Minimal OSGI Demo</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
@@ -154,7 +154,7 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-jaxrs</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<exclusions>
<!-- CXF's dependency tree includes JARs that are not OSGI bundles; we'll import the correct lines later -->
<exclusion>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/spring_security/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/spring_security/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_rs/spring_security/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>jax_rs_spring_security</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>JAX-RS Spring Security Demo</name>
<description>JAX-RS Spring Security Demo</description>
<packaging>war</packaging>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<properties>
@@ -91,18 +91,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- This dependency is needed if you're using the Jetty container -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_server_aegis_client/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_server_aegis_client/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jax_server_aegis_client/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,11 +22,11 @@
<artifactId>jax_service_aegis_client</artifactId>
<name>Sample of JAX-* Service Using an Aegis Client</name>
<description>Sample of JAX-* Service Using an Aegis Client</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
@@ -95,23 +95,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-databinding-aegis</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jaxws_async/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jaxws_async/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jaxws_async/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,13 +22,13 @@
<artifactId>jaxws_async</artifactId>
<name>JAX-WS Asynchronous Demo using Document/Literal Style</name>
<description>JAX-WS Asynchronous Demo using Document/Literal Style</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<packaging>war</packaging>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
@@ -137,12 +137,12 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
@@ -155,7 +155,7 @@
<!-- Not needed if deploying to a Servlet 3 based container or non-jetty container -->
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>org.eclipse.jetty</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jaxws_dispatch_provider/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jaxws_dispatch_provider/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jaxws_dispatch_provider/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>jaxws_dispatch_provider</artifactId>
<name>JAX-WS Dispatch/Provider Demo</name>
<description>JAX-WS Dispatch/Provider Demo</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -124,18 +124,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jaxws_handlers/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jaxws_handlers/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jaxws_handlers/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,11 +22,11 @@
<artifactId>jaxws_handlers</artifactId>
<name>JAX-WS Handler Demo</name>
<description>JAX-WS Handler Demo</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
@@ -125,18 +125,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_pubsub/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_pubsub/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_pubsub/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,11 +22,11 @@
<artifactId>jms_pubsub</artifactId>
<name>JMS Transport Publish/Subscribe Demo using Document-Literal Style</name>
<description>JMS Transport Publish/Subscribe Demo using Document-Literal Style</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
@@ -46,7 +46,7 @@
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -147,12 +147,12 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_queue/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_queue/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_queue/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>jms_queue</artifactId>
<name>JMS Transport Queue Demo using Document-Literal Style</name>
<description>JMS Transport Queue Demo using Document-Literal Style</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
@@ -148,12 +148,12 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_spec_demo/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_spec_demo/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_spec_demo/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>jms_spec_demo</artifactId>
<name>SOAP/JMS Transport Specification Demo using Document-Literal Style</name>
<description>SOAP/JMS Transport Specification Demo using Document-Literal Style</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
@@ -147,12 +147,12 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_spring_config/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_spring_config/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/jms_spring_config/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -23,12 +23,12 @@
<packaging>jar</packaging>
<name>WSDL first demo using the jms transport and jmsConfigFeature</name>
<description>WSDL first demo using the jms transport and jmsConfigFeature</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
@@ -186,12 +186,12 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf.xjc-utils</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_browser_client_java_first/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_browser_client_java_first/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_browser_client_java_first/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>js_browser_client_java</artifactId>
<name>Generated JavaScript Sample using JAX-WS and JSR-181</name>
<description>Generated JavaScript Sample using JAX-WS and JSR-181</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
@@ -73,22 +73,22 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-javascript</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_browser_client_simple/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_browser_client_simple/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_browser_client_simple/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>js_browser_client_simple</artifactId>
<name>JavaScript Client Demo using Document/Literal Style</name>
<description>JavaScript Client Demo using Document/Literal Style</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
@@ -122,22 +122,22 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-javascript</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_client/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_client/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_client/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>js_client</artifactId>
<name>Hello World Client Demo using JavaScript</name>
<description>Hello World Client Demo using JavaScript</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
@@ -123,22 +123,22 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-javascript</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>rhino</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_provider/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_provider/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/js_provider/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>js_provider</artifactId>
<name>Hello world javascript demo</name>
<description>Hello world javascript demo</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -143,18 +143,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-js</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/logbrowser/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/logbrowser/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/logbrowser/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>logbrowser</artifactId>
<name>LogBrowser</name>
<description>LogBrowser</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/mtom/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/mtom/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/mtom/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>mtom</artifactId>
<name>MTOM Demo for SWA and XOP</name>
<description>MTOM Demo for SWA and XOP</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
@@ -128,18 +128,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/oauth/client/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/oauth/client/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/oauth/client/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/oauth/server/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/oauth/server/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/oauth/server/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
<packaging>pom</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Samples</name>
<description>Apache CXF Samples</description>
<url>http://cxf.apache.org</url>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/restful_dispatch/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/restful_dispatch/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/restful_dispatch/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>restful_dispatch</artifactId>
<name>RESTful Hello World Demo</name>
<description>RESTful Hello World Demo</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -96,23 +96,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ruby_spring_support/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ruby_spring_support/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ruby_spring_support/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -23,12 +23,12 @@
<packaging>war</packaging>
<name>Spring HTTP Servlet demo with ruby support</name>
<description>Spring HTTP Servlet demo with ruby support</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -111,18 +111,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jruby</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/soap_header/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/soap_header/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/soap_header/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>soap_header</artifactId>
<name>Sample using SOAP Headers</name>
<description>Sample using SOAP Headers</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
@@ -123,18 +123,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/sts/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/sts/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/sts/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>sts</artifactId>
<name>CXF STS Demo</name>
<description>CXF STS Demo</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_addressing/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_addressing/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_addressing/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>ws_addressing</artifactId>
<name>WS-Addressing Demo</name>
<description>WS-Addressing Demo</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
@@ -129,17 +129,17 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_notification/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_notification/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_notification/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>ws_notification</artifactId>
<name>WS-Notification Demo</name>
<description>WS-Notification Demo</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -95,32 +95,32 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-addr</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf.services.wsn</groupId>
<artifactId>cxf-services-wsn-core</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_policy/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_policy/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_policy/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>ws_policy</artifactId>
<name>WS-Policy Demo</name>
<description>WS-Policy Demo</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
@@ -124,17 +124,17 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_rm/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_rm/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_rm/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>ws_rm</artifactId>
<name>WS-RM Demo</name>
<description>WS-RM Demo</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -118,23 +118,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-rm</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/sign_enc/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/sign_enc/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/sign_enc/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>wssec_sign_enc</artifactId>
<name>CXF WS-Security Sign Encoding Demo</name>
<description>CXF WS-Security Sign Encoding Demo</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
@@ -129,38 +129,38 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-rm</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-addr</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/ut/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/ut/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/ut/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>wssec_ut</artifactId>
<name>CXF WS-Security UT Demo</name>
<description>CXF WS-Security UT Demo</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<properties>
@@ -118,23 +118,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/ut_policy/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/ut_policy/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/ut_policy/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>wssec_ut_policy</artifactId>
<name>WS-Security UT Policy Demo</name>
<description>WS-Security UT Policy Demo</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
@@ -155,27 +155,27 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/ut_sign/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/ut_sign/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/ws_security/ut_sign/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>wssec_ut_sign</artifactId>
<name>WS-Security UT Sign Demo</name>
<description>WS-Security UT Sign Demo</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
@@ -130,38 +130,38 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-rm</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-addr</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -23,12 +23,12 @@
<packaging>war</packaging>
<name>WSDL first demo using Document/Literal Style</name>
<description>WSDL first demo using Document/Literal Style</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -168,12 +168,12 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf.xjc-utils</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_dynamic_client/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_dynamic_client/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_dynamic_client/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>wsdl_first_dynamic_client</artifactId>
<name>CXF Dynamic Client Sample</name>
<description>CXF Dynamic Client Sample</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -122,18 +122,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_https/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_https/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_https/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>wsdl_first_https</artifactId>
<name>WSDL first demo using HTTPS</name>
<description>WSDL first demo using HTTPS</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
@@ -209,17 +209,17 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_pure_xml/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_pure_xml/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_pure_xml/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>wsdl_first_pure_xml</artifactId>
<name>WSDL first demo using BARE Style in XML Binding (pure XML over HTTP)</name>
<description>WSDL first demo using BARE Style in XML Binding (pure XML over HTTP)</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -122,18 +122,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_rpclit/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_rpclit/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_rpclit/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>wsdl_first_rpclit</artifactId>
<name>WSDL first demo using RPC-Literal Style</name>
<description>WSDL first demo using RPC-Literal Style</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
@@ -124,18 +124,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_soap12/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_soap12/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_soap12/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>wsdl_first_soap12</artifactId>
<name>WSDL first demo using SOAP12 in Document/Literal Style</name>
<description>WSDL first demo using SOAP12 in Document/Literal Style</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -148,18 +148,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_xml_wrapped/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_xml_wrapped/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_xml_wrapped/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>wsdl_first_xml_wrapped</artifactId>
<name>CXF sample using WRAPPED Style in XML Binding (pure XML over HTTP)</name>
<description>CXF sample using WRAPPED Style in XML Binding (pure XML over HTTP)</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
@@ -149,18 +149,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_xmlbeans/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_xmlbeans/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/distribution/src/main/release/samples/wsdl_first_xmlbeans/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,12 +22,12 @@
<artifactId>wsdl_first_xmlbeans</artifactId>
<name>WSDL first demo using Document/Literal Style and XMLBeans DataBinding</name>
<description>WSDL first demo using Document/Literal Style and XMLBeans DataBinding</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -134,23 +134,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-databinding-xmlbeans</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/integration/jca/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/integration/jca/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/integration/jca/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-integration-jca</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF JCA Connection</name>
<description>Apache CXF JCA Connection</description>
<url>http://cxf.apache.org</url>
@@ -30,7 +30,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/integration/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/integration/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/integration/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-integration</artifactId>
<packaging>pom</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Integration</name>
<description>Apache CXF Integration</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/cxf-jaxrs-service/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/cxf-jaxrs-service/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/cxf-jaxrs-service/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -23,13 +23,13 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<groupId>org.apache.cxf.archetype</groupId>
<artifactId>cxf-jaxrs-service</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<packaging>maven-archetype</packaging>
<name>Apache CXF Archetype - Simple JAX-RS webapp</name>
Modified: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -23,13 +23,13 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<groupId>org.apache.cxf.archetype</groupId>
<artifactId>cxf-jaxws-javafirst</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<packaging>maven-archetype</packaging>
<name>Apache CXF Archetype - Simple JAX-WS Java First</name>
Modified: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/archetypes/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-archetypes</artifactId>
<packaging>pom</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Maven Archetypes</name>
<description>Apache CXF Maven Archetypes</description>
<url>http://cxf.apache.org</url>
@@ -30,7 +30,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-maven-plugins</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/codegen-plugin/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/codegen-plugin/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/codegen-plugin/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Code Generation Maven2 Plugins</name>
<description>Apache CXF Code Generation Maven2 Plugins</description>
<url>http://cxf.apache.org</url>
@@ -30,7 +30,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-maven-plugins</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
Modified: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/corba/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/corba/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/corba/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-corbatools-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF CORBA Tools Maven2 Plugins</name>
<description>Apache CXF CORBA Tools Maven2 Plugins</description>
<url>http://cxf.apache.org</url>
@@ -30,7 +30,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-maven-plugins</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<cxf.manifest.location />
Modified: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/java2ws-plugin/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/java2ws-plugin/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/java2ws-plugin/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-java2ws-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Java2WS Maven2 Plugin</name>
<description>Apache CXF Java2WS Maven2 Plugin</description>
<url>http://cxf.apache.org</url>
@@ -31,7 +31,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-maven-plugins</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<cxf.manifest.location />
Modified: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-maven-plugins</artifactId>
<packaging>pom</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Maven Plugins</name>
<description>Apache CXF Maven Plugins</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/wadl2java-plugin/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/wadl2java-plugin/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/wadl2java-plugin/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-wadl2java-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF WADL2Java Code Generation Maven2 Plugin</name>
<description>Apache CXF WADL2Java Code Generation Maven2 Plugin</description>
<url>http://cxf.apache.org</url>
@@ -31,7 +31,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-maven-plugins</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<cxf.manifest.location />
Modified: thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/wsdl-validator-plugin/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/wsdl-validator-plugin/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/maven-plugins/wsdl-validator-plugin/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-wsdl-validator-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF WSDL Validator Maven2 Plugin</name>
<description>Apache CXF WSDL Validator Maven2 Plugin</description>
<url>http://cxf.apache.org</url>
@@ -30,7 +30,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-maven-plugins</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<cxf.manifest.location />
Modified: thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/all/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/all/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/all/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -24,13 +24,13 @@
<packaging>bundle</packaging>
<name>Apache CXF Bundle Jar</name>
<description>Apache CXF Bundle Jar</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<bundle.symbolic.name>${project.groupId}.bundle</bundle.symbolic.name>
Modified: thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/compatible/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/compatible/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/compatible/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -24,13 +24,13 @@
<packaging>bundle</packaging>
<name>Apache CXF Compatibility Bundle Jar</name>
<description>Apache CXF Compatibility Bundle Jar</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<cxf.osgi.symbolic.name>${project.groupId}.bundle</cxf.osgi.symbolic.name>
Modified: thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/jaxrs/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/jaxrs/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/jaxrs/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -24,13 +24,13 @@
<packaging>bundle</packaging>
<name>Apache CXF JAX-RS Bundle Jar</name>
<description>Apache CXF JAX-RS Bundle Jar</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<bundle.symbolic.name>${project.groupId}.bundle-jaxrs</bundle.symbolic.name>
Modified: thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/minimal/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/minimal/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/minimal/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -24,13 +24,13 @@
<packaging>bundle</packaging>
<name>Apache CXF Minimal Bundle Jar</name>
<description>Apache CXF Minimal Bundle Jar</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<properties>
<bundle.symbolic.name>${project.groupId}.bundle-minimal</bundle.symbolic.name>
Modified: thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/osgi/bundle/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -24,13 +24,13 @@
<packaging>pom</packaging>
<name>Apache CXF Bundle Parent</name>
<description>Apache CXF Bundle Parent</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/commands/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/commands/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/commands/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.karaf</groupId>
<artifactId>karaf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<groupId>org.apache.cxf.karaf</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/features/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/features/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/features/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.karaf</groupId>
<artifactId>karaf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<groupId>org.apache.cxf.karaf</groupId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/osgi/karaf/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -23,14 +23,14 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent</relativePath>
</parent>
<groupId>org.apache.cxf.karaf</groupId>
<artifactId>karaf-parent</artifactId>
<packaging>pom</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Karaf Parent</name>
<description>Apache CXF Karaf Parent</description>
Modified: thirdparty/cxf/branches/cxf-2.6.6/parent/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/parent/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/parent/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -19,13 +19,13 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Parent</name>
<description>Apache CXF Parent POM</description>
<url>http://cxf.apache.org</url>
Modified: thirdparty/cxf/branches/cxf-2.6.6/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF</name>
<description>Apache CXF is an open-source services framework that aids in
the development of services using front-end programming APIs, like JAX-WS
@@ -31,8 +31,8 @@
<packaging>pom</packaging>
<scm>
- <connection>scm:svn:http://svn.apache.org/repos/asf/cxf/tags/cxf-2.6.6</connection>
- <developerConnection>scm:svn:https://svn.apache.org/repos/asf/cxf/tags/cxf-2.6.6</developerConnection>
+ <connection>scm:svn:http://svn.apache.org/repos/asf/cxf/tags/cxf-2.6.6.jbossorg-1-SNA...</connection>
+ <developerConnection>scm:svn:https://svn.apache.org/repos/asf/cxf/tags/cxf-2.6.6.jbossorg-1-SN...</developerConnection>
</scm>
<issueManagement>
<system>jira</system>
@@ -54,6 +54,16 @@
<distributionManagement>
<repository>
+ <id>jboss-releases-repository</id>
+ <name>JBoss Releases Repository</name>
+ <url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</url>
+ </repository>
+ <snapshotRepository>
+ <id>jboss-snapshots-repository</id>
+ <name>JBoss Snapshots Repository</name>
+ <url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url>
+ </snapshotRepository>
+<!-- <repository>
<id>apache.releases.https</id>
<name>Apache Release Distribution Repository</name>
<url>https://repository.apache.org/service/local/staging/deploy/maven2</url>
@@ -62,12 +72,11 @@
<id>apache.snapshots.https</id>
<name>Apache Development Snapshot Repository</name>
<url>https://repository.apache.org/content/repositories/snapshots</url>
- <!--uniqueVersion>false</uniqueVersion-->
</snapshotRepository>
<site>
<id>apache.cxf.site</id>
<url>${site.deploy.url}</url>
- </site>
+ </site> -->
</distributionManagement>
<repositories>
<repository>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/coloc/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/coloc/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/coloc/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/corba/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/corba/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/corba/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/object/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/object/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/object/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/soap/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/soap/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/soap/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/xml/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/xml/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/bindings/xml/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/core/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/core/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/core/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-core</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Runtime Core</name>
<description>Apache CXF Runtime Core</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/aegis/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/aegis/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/aegis/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/jaxb/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/jaxb/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/jaxb/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<properties>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/jibx/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/jibx/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/jibx/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/sdo/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/sdo/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/sdo/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/xmlbeans/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/xmlbeans/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/databinding/xmlbeans/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/features/clustering/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/features/clustering/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/features/clustering/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-features-clustering</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Runtime Clustering</name>
<description>Failover and loadbalancing support</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/jaxrs/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/jaxrs/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/jaxrs/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Runtime JAX-RS Frontend</name>
<description>Apache CXF Runtime JAX-RS Frontend</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/jaxws/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/jaxws/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/jaxws/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Runtime JAX-WS Frontend</name>
<description>Apache CXF Runtime JAX-WS Frontend</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/js/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/js/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/js/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-js</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Runtime JavaScript Frontend</name>
<description>Apache CXF Runtime JavaScript Frontend</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/simple/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/simple/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/frontend/simple/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-simple</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Runtime Simple Frontend</name>
<description>Apache CXF Runtime Simple Frontend</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/javascript-rt/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/javascript-rt/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/javascript-rt/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-runtime-javascript</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<dependencies>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/javascript-tests/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/javascript-tests/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/javascript-tests/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-runtime-javascript</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<dependencies>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/javascript/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/management/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/management/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/management/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-management</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Runtime Management</name>
<description>Apache CXF Runtime Management</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/management-web/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/management-web/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/management-web/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-management-web</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Runtime Web Management</name>
<description>Apache CXF Runtime Web Management</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt</artifactId>
<packaging>pom</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Runtime</name>
<description>Apache CXF Runtime</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/rs/extensions/providers/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/rs/extensions/providers/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/rs/extensions/providers/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-extension-providers</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF JAX-RS Extensions: Providers</name>
<description>Apache CXF JAX-RS Extensions: Providers</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/rs/extensions/search/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/rs/extensions/search/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/rs/extensions/search/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-extension-search</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF JAX-RS Extensions: Search</name>
<description>Apache CXF JAX-RS Extensions: Search</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/cors/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/cors/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/cors/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-security-cors</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF RS Cross-Origin Resource Sharing</name>
<description>Apache CXF RS XML Security</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/oauth/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/oauth/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/oauth/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-security-oauth</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Apache CXF Runtime OAuth 1.0a</name>
@@ -31,7 +31,7 @@
<parent>
<artifactId>cxf-rt-rs-security-oauth-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<properties>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/oauth2/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/oauth2/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/oauth2/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-security-oauth2</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Apache CXF Runtime OAuth 2.0</name>
@@ -31,7 +31,7 @@
<parent>
<artifactId>cxf-rt-rs-security-oauth-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/oauth-parent/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-security-oauth-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Apache CXF Runtime RS Security OAuth Parent</name>
<description>Apache CXF Runtime RS Security OAuth Parent</description>
@@ -30,7 +30,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
<properties>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/sso/saml/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/sso/saml/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/sso/saml/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-security-sso-saml</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF RS SSO SAML</name>
<description>Apache CXF RS SSO SAML</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/xml/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/xml/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/rs/security/xml/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-security-xml</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF RS XML Security</name>
<description>Apache CXF RS XML Security</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/transports/http/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/transports/http/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/transports/http/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Runtime HTTP Transport</name>
<description>Apache CXF Runtime HTTP Transport</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<properties>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/transports/http-jetty/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/transports/http-jetty/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/transports/http-jetty/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Runtime HTTP Jetty Transport</name>
<description>Apache CXF Runtime HTTP Jetty Transport</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<properties>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/transports/jms/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/transports/jms/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/transports/jms/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Runtime JMS Transport</name>
<description>Apache CXF Runtime JMS Transport</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/transports/local/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/transports/local/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/transports/local/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-local</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Runtime Local Transport</name>
<description>Apache CXF Runtime Local Transport</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/ws/addr/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/ws/addr/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/ws/addr/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/ws/mex/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/ws/mex/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/ws/mex/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/ws/policy/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/ws/policy/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/ws/policy/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/ws/rm/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/ws/rm/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/ws/rm/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/rt/ws/security/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/rt/ws/security/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/rt/ws/security/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<properties>
Modified: thirdparty/cxf/branches/cxf-2.6.6/services/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/services/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/services/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf.services</groupId>
<artifactId>cxf-services</artifactId>
<packaging>pom</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Services</name>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
<relativePath>../pom.xml</relativePath>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/services/sts/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/services/sts/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/services/sts/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.services.sts</groupId>
<artifactId>cxf-services-sts</artifactId>
<packaging>pom</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF STS service</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf.services</groupId>
<artifactId>cxf-services</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/services/sts/sts-core/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/services/sts/sts-core/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/services/sts/sts-core/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/services/sts/sts-war/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/services/sts/sts-war/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/services/sts/sts-war/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/advanced/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/advanced/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/advanced/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/basic/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/basic/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/basic/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/services/sts/systests/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.services.sts</groupId>
<artifactId>cxf-services-sts-systests</artifactId>
<packaging>pom</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF STS systests</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf.services.sts</groupId>
<artifactId>cxf-services-sts</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/services/wsn/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/services/wsn/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/services/wsn/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.services.wsn</groupId>
<artifactId>cxf-services-wsn</artifactId>
<packaging>pom</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF WSN service</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf.services</groupId>
<artifactId>cxf-services</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-api/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-api/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-api/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf.services.wsn</groupId>
<artifactId>cxf-services-wsn-api</artifactId>
<packaging>bundle</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF WSN API</name>
<description>Apache CXF WSN API</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-core/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-core/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-core/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf.services.wsn</groupId>
<artifactId>cxf-services-wsn-core</artifactId>
<packaging>bundle</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF WSN Core</name>
<description>Apache CXF WSN Core Service</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-osgi/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-osgi/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/services/wsn/wsn-osgi/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf.services.wsn</groupId>
<artifactId>cxf-services-wsn-osgi</artifactId>
<packaging>bundle</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF WSN OSGi</name>
<description>Apache CXF WSN Full OSGi</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/grizzly/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/grizzly/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/grizzly/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,14 +22,14 @@
<parent>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-container-integration</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-ci-grizzly</artifactId>
<name>Apache CXF Container Integration Test Grizzly</name>
<description>Apache CXF Container Integration Test Grizzly</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<repositories>
<repository>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -29,7 +29,7 @@
<artifactId>cxf-systests-container-integration</artifactId>
<name>Apache CXF Container Integration System Tests</name>
<description>Apache CXF Container Integration System Tests</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<packaging>pom</packaging>
<url>http://cxf.apache.org</url>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/webapp/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/webapp/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/container-integration/webapp/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,14 +22,14 @@
<parent>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-container-integration</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-ci-webapp</artifactId>
<name>Apache CXF Container Integration Test Webapp</name>
<description>Apache CXF Container Integration Test Webapp</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<packaging>war</packaging>
<dependencies>
<dependency>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/databinding/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/databinding/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/databinding/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -29,7 +29,7 @@
<artifactId>cxf-systests-databinding</artifactId>
<name>Apache CXF Databinding System Tests</name>
<description>Apache CXF Databinding System Tests</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/jaxrs/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/jaxrs/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/jaxrs/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -29,7 +29,7 @@
<artifactId>cxf-systests-jaxrs</artifactId>
<name>Apache CXF JAX-RS System Tests</name>
<description>Apache CXF JAX-RS System Tests</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<dependencies>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/jaxws/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/jaxws/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/jaxws/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -29,7 +29,7 @@
<artifactId>cxf-systests-jaxws</artifactId>
<name>Apache CXF JAX-WS System Tests</name>
<description>Apache CXF JAX-WS System Tests</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<build>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests</artifactId>
<packaging>pom</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF System Tests</name>
<description>Apache CXF System Tests</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/rs-security/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/rs-security/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/rs-security/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -29,7 +29,7 @@
<artifactId>cxf-systests-rs-security</artifactId>
<name>Apache CXF JAX-RS System Advanced Security Tests</name>
<description>Apache CXF JAX-RS System Advanced Security Tests</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/transport-jms/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/transport-jms/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/transport-jms/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -29,7 +29,7 @@
<artifactId>cxf-systests-transport-jms</artifactId>
<name>Apache CXF Transport System Tests JMS</name>
<description>Apache CXF Transport System Tests JMS</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<build>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/transports/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/transports/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/transports/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -29,7 +29,7 @@
<artifactId>cxf-systests-transports</artifactId>
<name>Apache CXF Transport System Tests</name>
<description>Apache CXF Transport System Tests</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/uncategorized/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/uncategorized/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/uncategorized/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -29,7 +29,7 @@
<artifactId>cxf-systests-uncategorized</artifactId>
<name>Apache CXF Uncategorized System Tests</name>
<description>Apache CXF Uncategorized System Tests</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/ws-rm/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/ws-rm/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/ws-rm/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -29,7 +29,7 @@
<artifactId>cxf-systests-ws-rm</artifactId>
<name>Apache CXF WS-RM Specifications System Tests</name>
<description>Apache CXF WS-RM Specifications System Tests</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<dependencies>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/ws-security/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/ws-security/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/ws-security/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -20,7 +20,7 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -28,7 +28,7 @@
<artifactId>cxf-systests-ws-security</artifactId>
<name>Apache CXF WS-Security System Tests</name>
<description>Apache CXF WS-Security System Tests</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<build>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/ws-security-examples/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/ws-security-examples/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/ws-security-examples/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -20,7 +20,7 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -28,7 +28,7 @@
<artifactId>cxf-systests-ws-security-examples</artifactId>
<name>Apache CXF WS-Security Interop System Tests</name>
<description>Apache CXF WS-Security Interop System Tests</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<build>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/ws-specs/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/ws-specs/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/ws-specs/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -29,7 +29,7 @@
<artifactId>cxf-systests-ws-specs</artifactId>
<name>Apache CXF WS-* Specifications System Tests</name>
<description>Apache CXF WS-* Specifications System Tests</description>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/codegen/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/codegen/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/codegen/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -20,13 +20,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.systests.wsdl_maven</groupId>
<artifactId>cxf-systests-codegen</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Test for generating code from wsdl in repo</name>
<description>Test for generating code from wsdl in repo</description>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<build>
@@ -111,12 +111,12 @@
<dependencies>
- <dependency>
+<!-- <dependency>
<groupId>org.apache.cxf.systests.wsdl_maven</groupId>
<artifactId>cxf-systests-java2ws</artifactId>
<version>${project.version}</version>
<type>wsdl</type>
- </dependency>
+ </dependency>-->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/java2ws/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/java2ws/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/java2ws/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -20,18 +20,18 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.systests.wsdl_maven</groupId>
<artifactId>cxf-systests-java2ws</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Test for writing wsdl to repo</name>
<description>Test for writing wsdl to repo</description>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<build>
<plugins>
- <plugin>
+<!-- <plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-java2ws-plugin</artifactId>
<version>${project.version}</version>
@@ -63,7 +63,7 @@
</goals>
</execution>
</executions>
- </plugin>
+ </plugin> -->
</plugins>
</build>
Modified: thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/systests/wsdl_maven/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-wsdl-maven</artifactId>
<packaging>pom</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF System Tests for Maven Plugins</name>
<description>Apache CXF System Tests for Maven Plugins</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/testutils/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/testutils/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/testutils/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-testutils</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Test Utilities</name>
<description>Apache CXF Test Utilities</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/common/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/common/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/common/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-common</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Command Line Tools Common</name>
<description>Apache CXF Command Line Tools Common</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/corba/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/corba/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/corba/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-corba</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Command Line Tools CORBA</name>
<description>Apache CXF Command Line Tools CORBA</description>
<url>http://cxf.apache.org</url>
@@ -30,7 +30,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/javato/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/javato/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/javato/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-javato</artifactId>
<packaging>pom</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Command Line Tools JavaTo</name>
<description>Apache CXF Command Line Tools JavaTo</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/javato/ws/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/javato/ws/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/javato/ws/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-java2ws</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Command Line Tools JavaTo WS</name>
<description>Apache CXF Command Line Tools JavaTo WS</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools</artifactId>
<packaging>pom</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Command Line Tools</name>
<description>Apache CXF Command Line Tools</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/validator/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/validator/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/validator/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-validator</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Command Line Tools Validator</name>
<description>Apache CXF Command Line Tools Validator</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/wadlto/jaxrs/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/wadlto/jaxrs/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/wadlto/jaxrs/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wadlto-jaxrs</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Command Line Tools WADLTo JAXRS Frontend</name>
<description>Apache CXF Command Line Tools WADLTo JAXRS Frontend</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/wadlto/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/wadlto/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/wadlto/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wadlto</artifactId>
<packaging>pom</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Command Line Tools WADLTo</name>
<description>Apache CXF Command Line Tools WADLTo</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/core/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/core/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/core/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-core</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Command Line Tools WSDLTo Core</name>
<description>Apache CXF Command Line Tools WSDLTo Core</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/databinding/jaxb/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/databinding/jaxb/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/databinding/jaxb/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-databinding-jaxb</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Command Line Tools WSDLTo JAXB Databinding</name>
<description>Apache CXF Command Line Tools WSDLTo JAXB Databinding</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/frontend/javascript/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/frontend/javascript/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/frontend/javascript/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-frontend-javascript</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Command Line Tools WSDL to JavaScript Front End</name>
<description>Apache CXF Command Line Tools WSDL to JavaScript Front End</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/frontend/jaxws/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/frontend/jaxws/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/frontend/jaxws/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-frontend-jaxws</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Command Line Tools WSDLTo JAXWS Frontend</name>
<description>Apache CXF Command Line Tools WSDLTo JAXWS Frontend</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/misc/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/misc/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/misc/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-misctools</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Command Line Tools WSDLTo Misctools</name>
<description>Apache CXF Command Line Tools WSDLTo Misctools</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto</artifactId>
<packaging>pom</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Command Line Tools WSDLTo</name>
<description>Apache CXF Command Line Tools WSDLTo</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/test/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/test/pom.xml 2013-04-04 14:41:00 UTC (rev 17441)
+++ thirdparty/cxf/branches/cxf-2.6.6/tools/wsdlto/test/pom.xml 2013-04-04 14:42:08 UTC (rev 17442)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-test</artifactId>
<packaging>jar</packaging>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<name>Apache CXF Command Line Tools WSDLTo Test</name>
<description>Apache CXF Command Line Tools WSDLTo Test</description>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.6.6</version>
+ <version>2.6.6.jbossorg-1-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
11 years, 11 months
JBossWS SVN: r17440 - common/tags.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2013-04-04 10:35:47 -0400 (Thu, 04 Apr 2013)
New Revision: 17440
Added:
common/tags/jbossws-common-2.2.0.Alpha1/
Log:
Tag jbossws-common-2.2.0.Alpha1
11 years, 11 months
JBossWS SVN: r17438 - spi/tags.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2013-04-04 10:23:48 -0400 (Thu, 04 Apr 2013)
New Revision: 17438
Added:
spi/tags/jbossws-spi-2.2.0.Alpha1/
Log:
Tag the jbossws-spi-2.2.0.Alpha1
11 years, 11 months
JBossWS SVN: r17437 - common/trunk/src/main/java/org/jboss/ws/common/deployment.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2013-04-04 09:53:21 -0400 (Thu, 04 Apr 2013)
New Revision: 17437
Modified:
common/trunk/src/main/java/org/jboss/ws/common/deployment/JBossWebservicesDescriptorParserImpl.java
common/trunk/src/main/java/org/jboss/ws/common/deployment/WebservicesDescriptorParserImpl.java
Log:
[JBWS-3524]:Update the Parser
Modified: common/trunk/src/main/java/org/jboss/ws/common/deployment/JBossWebservicesDescriptorParserImpl.java
===================================================================
--- common/trunk/src/main/java/org/jboss/ws/common/deployment/JBossWebservicesDescriptorParserImpl.java 2013-04-04 13:51:27 UTC (rev 17436)
+++ common/trunk/src/main/java/org/jboss/ws/common/deployment/JBossWebservicesDescriptorParserImpl.java 2013-04-04 13:53:21 UTC (rev 17437)
@@ -54,7 +54,7 @@
@Override
public JBossWebservicesMetaData parse(URL url)
{
- return JBossWebservicesFactory.load(url);
+ return new JBossWebservicesFactory(url).load(url);
}
}
Modified: common/trunk/src/main/java/org/jboss/ws/common/deployment/WebservicesDescriptorParserImpl.java
===================================================================
--- common/trunk/src/main/java/org/jboss/ws/common/deployment/WebservicesDescriptorParserImpl.java 2013-04-04 13:51:27 UTC (rev 17436)
+++ common/trunk/src/main/java/org/jboss/ws/common/deployment/WebservicesDescriptorParserImpl.java 2013-04-04 13:53:21 UTC (rev 17437)
@@ -55,6 +55,6 @@
@Override
public WebservicesMetaData parse(URL url)
{
- return WebservicesFactory.load(url);
+ return new WebservicesFactory(url).load(url);
}
}
11 years, 11 months
JBossWS SVN: r17436 - in spi/trunk/src: test/java/org/jboss/test/wsf/spi/metadata/webservices and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2013-04-04 09:51:27 -0400 (Thu, 04 Apr 2013)
New Revision: 17436
Modified:
spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/webservices/JBossWebservicesFactory.java
spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/webservices/WebservicesFactory.java
spi/trunk/src/test/java/org/jboss/test/wsf/spi/metadata/webservices/WebServiceFactoryTestCase.java
Log:
[JBWS-3524]:Update the api
Modified: spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/webservices/JBossWebservicesFactory.java
===================================================================
--- spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/webservices/JBossWebservicesFactory.java 2013-04-03 23:13:38 UTC (rev 17435)
+++ spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/webservices/JBossWebservicesFactory.java 2013-04-04 13:51:27 UTC (rev 17436)
@@ -83,7 +83,7 @@
* @param root virtual file root
* @return JBossWebservicesMetaData or <code>null</code> if it cannot be found
*/
- public static JBossWebservicesMetaData loadFromVFSRoot(final UnifiedVirtualFile root) {
+ public JBossWebservicesMetaData loadFromVFSRoot(final UnifiedVirtualFile root) {
JBossWebservicesMetaData webservices = null;
UnifiedVirtualFile wsdd = root.findChildFailSafe("META-INF/jboss-webservices.xml");
@@ -101,7 +101,7 @@
return webservices;
}
- public static JBossWebservicesMetaData load(final URL wsddUrl) {
+ public JBossWebservicesMetaData load(final URL wsddUrl) {
InputStream is = null;
try {
is = wsddUrl.openStream();
@@ -118,11 +118,11 @@
}
}
- public static JBossWebservicesMetaData parse(final InputStream is) {
+ public JBossWebservicesMetaData parse(final InputStream is) {
return parse(is, null);
}
- public static JBossWebservicesMetaData parse(final InputStream is, final URL descriptorURL) {
+ public JBossWebservicesMetaData parse(final InputStream is, final URL descriptorURL) {
try {
final XMLStreamReader xmlr = StAXUtils.createXMLStreamReader(is);
return parse(xmlr, descriptorURL);
@@ -131,11 +131,11 @@
}
}
- public static JBossWebservicesMetaData parse(final XMLStreamReader reader) throws XMLStreamException {
+ public JBossWebservicesMetaData parse(final XMLStreamReader reader) throws XMLStreamException {
return parse(reader, null);
}
- private static JBossWebservicesMetaData parse(final XMLStreamReader reader, final URL descriptorURL)
+ private JBossWebservicesMetaData parse(final XMLStreamReader reader, final URL descriptorURL)
throws XMLStreamException {
int iterate;
try {
@@ -154,8 +154,7 @@
if (match(reader, JBOSSEE_NS, WEBSERVICES)) {
String nsUri = reader.getNamespaceURI();
- JBossWebservicesFactory factory = new JBossWebservicesFactory(descriptorURL);
- metadata = factory.parseWebservices(reader, nsUri, descriptorURL);
+ metadata = parseWebservices(reader, nsUri, descriptorURL);
} else {
throw MESSAGES.unexpectedElement(descriptorURL != null ? descriptorURL.toString() : "jboss-webservices.xml", reader.getLocalName());
}
@@ -178,11 +177,11 @@
}
case XMLStreamConstants.START_ELEMENT: {
if (match(reader, nsUri, CONTEXT_ROOT)) {
- metadata.setContextRoot(elementAsString(reader));
+ metadata.setContextRoot(getElementText(reader));
} else if (match(reader, nsUri, CONFIG_NAME)) {
- metadata.setConfigName(elementAsString(reader));
+ metadata.setConfigName(getElementText(reader));
} else if (match(reader, nsUri, CONFIG_FILE)) {
- metadata.setConfigFile(elementAsString(reader));
+ metadata.setConfigFile(getElementText(reader));
} else if (match(reader, nsUri, PROPERTY)) {
parseProperty(reader, nsUri, metadata);
} else if (match(reader, nsUri, PORT_COMPONENT)) {
@@ -211,15 +210,15 @@
}
case XMLStreamConstants.START_ELEMENT: {
if (match(reader, nsUri, EJB_NAME)) {
- pc.setEjbName(elementAsString(reader));
+ pc.setEjbName(getElementText(reader));
} else if (match(reader, nsUri, PORT_COMPONENT_NAME)) {
- pc.setPortComponentName(elementAsString(reader));
+ pc.setPortComponentName(getElementText(reader));
} else if (match(reader, nsUri, PORT_COMPONENT_URI)) {
- pc.setPortComponentURI(elementAsString(reader));
+ pc.setPortComponentURI(getElementText(reader));
} else if (match(reader, nsUri, AUTH_METHOD)) {
- pc.setAuthMethod(elementAsString(reader));
+ pc.setAuthMethod(getElementText(reader));
} else if (match(reader, nsUri, TRANSPORT_GUARANTEE)) {
- pc.setTransportGuarantee(elementAsString(reader));
+ pc.setTransportGuarantee(getElementText(reader));
} else if (match(reader, nsUri, SECURE_WSDL_ACCESS)) {
pc.setSecureWSDLAccess(elementAsBoolean(reader));
} else {
@@ -245,9 +244,9 @@
}
case XMLStreamConstants.START_ELEMENT: {
if (match(reader, nsUri, WEBSERVICE_DESCRIPTION_NAME)) {
- description.setWebserviceDescriptionName(elementAsString(reader));
+ description.setWebserviceDescriptionName(getElementText(reader));
} else if (match(reader, nsUri, WSDL_PUBLISH_LOCATION)) {
- description.setWsdlPublishLocation(elementAsString(reader));
+ description.setWsdlPublishLocation(getElementText(reader));
} else {
throw MESSAGES.unexpectedElement(getDescriptorForLogs(), reader.getLocalName());
}
@@ -282,10 +281,10 @@
}
case XMLStreamConstants.START_ELEMENT : {
if (match(reader, nsUri, NAME)) {
- name = elementAsString(reader);
+ name = getElementText(reader);
}
else if (match(reader, nsUri, VALUE)) {
- value = elementAsString(reader);
+ value = getElementText(reader);
}
else
{
@@ -297,6 +296,10 @@
throw MESSAGES.reachedEndOfXMLDocUnexpectedly(getDescriptorForLogs());
}
+ protected String getElementText(XMLStreamReader reader) throws XMLStreamException {
+ return elementAsString(reader);
+ }
+
private String getDescriptorForLogs() {
return descriptorURL != null ? descriptorURL.toString() : "jboss-webservices.xml";
}
Modified: spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/webservices/WebservicesFactory.java
===================================================================
--- spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/webservices/WebservicesFactory.java 2013-04-03 23:13:38 UTC (rev 17435)
+++ spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/webservices/WebservicesFactory.java 2013-04-04 13:51:27 UTC (rev 17436)
@@ -92,7 +92,7 @@
* @param root virtual file root
* @return WebservicesMetaData or <code>null</code> if it cannot be found
*/
- public static WebservicesMetaData loadFromVFSRoot(UnifiedVirtualFile root)
+ public WebservicesMetaData loadFromVFSRoot(UnifiedVirtualFile root)
{
WebservicesMetaData webservices = null;
@@ -113,7 +113,7 @@
return webservices;
}
- public static WebservicesMetaData load(URL wsddUrl)
+ public WebservicesMetaData load(URL wsddUrl)
{
InputStream is = null;
try
@@ -136,12 +136,12 @@
}
}
- public static WebservicesMetaData parse(InputStream is)
+ public WebservicesMetaData parse(InputStream is)
{
return parse(is, null);
}
- public static WebservicesMetaData parse(InputStream is, URL descriptorURL)
+ public WebservicesMetaData parse(InputStream is, URL descriptorURL)
{
try
{
@@ -154,12 +154,12 @@
}
}
- public static WebservicesMetaData parse(XMLStreamReader reader) throws XMLStreamException
+ public WebservicesMetaData parse(XMLStreamReader reader) throws XMLStreamException
{
return parse(reader, null);
}
- private static WebservicesMetaData parse(XMLStreamReader reader, URL descriptorURL) throws XMLStreamException
+ private WebservicesMetaData parse(XMLStreamReader reader, URL descriptorURL) throws XMLStreamException
{
int iterate;
try
@@ -183,8 +183,7 @@
if (match(reader, JAVAEE_NS, WEBSERVICES) || match(reader, J2EE_NS, WEBSERVICES))
{
String nsUri = reader.getNamespaceURI();
- WebservicesFactory factory = new WebservicesFactory(descriptorURL);
- metadata = factory.parseWebservices(reader, nsUri, descriptorURL);
+ metadata = parseWebservices(reader, nsUri, descriptorURL);
}
else
{
@@ -217,7 +216,7 @@
metadata.addWebserviceDescription(parseWebserviceDescription(reader, nsUri, metadata));
} else if (match(reader, nsUri, "description") || match(reader, nsUri, "display-name")) {
//skip to parse
- elementAsString(reader);
+ getElementText(reader);
} else if (match(reader, nsUri, "icon")) {
//skip icon
while (reader.hasNext() && !(reader.nextTag() == XMLStreamConstants.END_ELEMENT && match(reader, nsUri, "icon"))) {
@@ -254,13 +253,13 @@
}
case XMLStreamConstants.START_ELEMENT : {
if (match(reader, nsUri, WEBSERVICE_DESCRIPTION_NAME)) {
- description.setWebserviceDescriptionName(elementAsString(reader));
+ description.setWebserviceDescriptionName(getElementText(reader));
}
else if (match(reader, nsUri, WSDL_FILE)) {
- description.setWsdlFile(elementAsString(reader));
+ description.setWsdlFile(getElementText(reader));
}
else if (match(reader, nsUri, JAXRPC_MAPPING_FILE)) {
- description.setJaxrpcMappingFile(elementAsString(reader));
+ description.setJaxrpcMappingFile(getElementText(reader));
}
else if (match(reader, nsUri, PORT_COMPONENT)) {
description.addPortComponent(parsePortComponent(reader, nsUri, description));
@@ -294,11 +293,11 @@
}
case XMLStreamConstants.START_ELEMENT : {
if (match(reader, nsUri, PORT_COMPONENT_NAME)) {
- pc.setPortComponentName(elementAsString(reader));
+ pc.setPortComponentName(getElementText(reader));
}
else if (match(reader, nsUri, "description") || match(reader, nsUri, "display-name")) {
//skip to parse
- elementAsString(reader);
+ getElementText(reader);
} else if (match(reader, nsUri, "icon")) {
//skip icon
while (reader.hasNext() && !(reader.nextTag() == XMLStreamConstants.END_ELEMENT && match(reader, nsUri, "icon"))) {
@@ -324,10 +323,10 @@
parseRespectBinding(reader, nsUri, pc);
}
else if (match(reader, nsUri, PROTOCOL_BINDING)) {
- pc.setProtocolBinding(elementAsString(reader));
+ pc.setProtocolBinding(getElementText(reader));
}
else if (match(reader, nsUri, SERVICE_ENDPOINT_INTERFACE)) {
- pc.setServiceEndpointInterface(elementAsString(reader));
+ pc.setServiceEndpointInterface(getElementText(reader));
}
else if (match(reader, nsUri, SERVICE_IMPL_BEAN)) {
parseServiceImplBean(reader, nsUri, pc);
@@ -348,6 +347,10 @@
throw MESSAGES.reachedEndOfXMLDocUnexpectedly(getDescriptorForLogs());
}
+ protected String getElementText(XMLStreamReader reader) throws XMLStreamException {
+ return elementAsString(reader);
+ }
+
private void parseAddressing(XMLStreamReader reader, String nsUri, PortComponentMetaData pc) throws XMLStreamException
{
while (reader.hasNext())
@@ -372,7 +375,7 @@
pc.setAddressingRequired(elementAsBoolean(reader));
}
else if (match(reader, nsUri, ADDRESSING_RESPONSES)) {
- pc.setAddressingResponses(elementAsString(reader));
+ pc.setAddressingResponses(getElementText(reader));
}
else
{
@@ -432,10 +435,10 @@
}
case XMLStreamConstants.START_ELEMENT : {
if (match(reader, nsUri, SERVLET_LINK)) {
- pc.setServletLink(elementAsString(reader));
+ pc.setServletLink(getElementText(reader));
}
else if (match(reader, nsUri, EJB_LINK)) {
- pc.setEjbLink(elementAsString(reader));
+ pc.setEjbLink(getElementText(reader));
}
else
{
Modified: spi/trunk/src/test/java/org/jboss/test/wsf/spi/metadata/webservices/WebServiceFactoryTestCase.java
===================================================================
--- spi/trunk/src/test/java/org/jboss/test/wsf/spi/metadata/webservices/WebServiceFactoryTestCase.java 2013-04-03 23:13:38 UTC (rev 17435)
+++ spi/trunk/src/test/java/org/jboss/test/wsf/spi/metadata/webservices/WebServiceFactoryTestCase.java 2013-04-04 13:51:27 UTC (rev 17436)
@@ -53,7 +53,7 @@
File file = new File("src/test/resources/metadata/webservices/test-webservices.xml");
InputStream is = new FileInputStream(file);
URL url = file.toURI().toURL();
- WebservicesMetaData metadata = WebservicesFactory.parse(is, url);
+ WebservicesMetaData metadata = new WebservicesFactory(url).parse(is, url);
assertEquals(url, metadata.getDescriptorURL());
assertEquals(2, metadata.getWebserviceDescriptions().length);
testDescription1(metadata.getWebserviceDescriptions()[0], metadata);
11 years, 11 months
JBossWS SVN: r17434 - stack/cxf/trunk.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2013-04-03 18:35:17 -0400 (Wed, 03 Apr 2013)
New Revision: 17434
Modified:
stack/cxf/trunk/pom.xml
Log:
[JBWS-3566] Moving to CXF 2.7.4
Modified: stack/cxf/trunk/pom.xml
===================================================================
--- stack/cxf/trunk/pom.xml 2013-04-03 15:28:45 UTC (rev 17433)
+++ stack/cxf/trunk/pom.xml 2013-04-03 22:35:17 UTC (rev 17434)
@@ -73,7 +73,7 @@
<jboss720.version>7.2.0.Final</jboss720.version>
<jboss800.version>8.0.0.Alpha1-SNAPSHOT</jboss800.version>
<ejb.api.version>1.0.1.Final</ejb.api.version>
- <cxf.version>2.7.4-SNAPSHOT</cxf.version>
+ <cxf.version>2.7.4</cxf.version>
<cxf.asm.version>3.3.1</cxf.asm.version>
<cxf.xjcplugins.version>2.6.0</cxf.xjcplugins.version>
<jboss.common.core.version>2.2.17.GA</jboss.common.core.version>
@@ -103,7 +103,7 @@
<jms.api.version>1.0.0.Final</jms.api.version>
<velocity.version>1.7</velocity.version>
<xerces.version>2.9.1</xerces.version>
- <xmlsec.version>1.5.3</xmlsec.version>
+ <xmlsec.version>1.5.4</xmlsec.version>
<wss4j.version>1.6.10</wss4j.version>
<wstx.version>4.2.0</wstx.version>
<spring.version>3.0.7.RELEASE</spring.version>
11 years, 11 months