JBossWS SVN: r14843 - spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/j2ee/serviceref.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-08-15 08:23:15 -0400 (Mon, 15 Aug 2011)
New Revision: 14843
Modified:
spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/j2ee/serviceref/UnifiedPortComponentRefMetaData.java
Log:
[JBWS-3338] extending SPI to support distinction between no @Addressing and @Addressing(enabled='false') for ports construction from service refs.
Modified: spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/j2ee/serviceref/UnifiedPortComponentRefMetaData.java
===================================================================
--- spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/j2ee/serviceref/UnifiedPortComponentRefMetaData.java 2011-08-15 06:08:06 UTC (rev 14842)
+++ spi/trunk/src/main/java/org/jboss/wsf/spi/metadata/j2ee/serviceref/UnifiedPortComponentRefMetaData.java 2011-08-15 12:23:15 UTC (rev 14843)
@@ -57,6 +57,7 @@
// The optional JBossWS config-file
private String configFile;
// The optional <adressing> element
+ private boolean addressingAnnotationSpecified;
private boolean addressingEnabled;
private boolean addressingRequired;
private String addressingResponses = "ALL";
@@ -65,6 +66,7 @@
// The optional <mtom-threshold> element
private int mtomThreshold;
// @RespectBinding annotation metadata
+ private boolean respectBindingAnnotationSpecified;
private boolean respectBindingEnabled;
public UnifiedPortComponentRefMetaData(UnifiedServiceRefMetaData serviceRefMetaData)
@@ -77,6 +79,16 @@
return serviceRefMetaData;
}
+ public void setAddressingAnnotationSpecified(final boolean addressingAnnotationSpecified)
+ {
+ this.addressingAnnotationSpecified = addressingAnnotationSpecified;
+ }
+
+ public boolean isAddressingAnnotationSpecified()
+ {
+ return addressingAnnotationSpecified;
+ }
+
public void setAddressingEnabled(final boolean addressingEnabled) {
this.addressingEnabled = addressingEnabled;
}
@@ -122,6 +134,16 @@
return this.mtomThreshold;
}
+ public void setRespectBindingAnnotationSpecified(final boolean respectBindingAnnotationSpecified)
+ {
+ this.respectBindingAnnotationSpecified = respectBindingAnnotationSpecified;
+ }
+
+ public boolean isRespectBindingAnnotationSpecified()
+ {
+ return respectBindingAnnotationSpecified;
+ }
+
public void setRespectBindingEnabled(final boolean respectBindingEnabled) {
this.respectBindingEnabled = respectBindingEnabled;
}
@@ -245,11 +267,13 @@
str.append("\nUnifiedPortComponentRef");
str.append("\n serviceEndpointInterface=" + serviceEndpointInterface);
str.append("\n portQName=" + portQName);
+ str.append("\n addressingAnnotationSpecified=" + addressingAnnotationSpecified);
str.append("\n addressingEnabled=" + addressingEnabled);
str.append("\n addressingRequired=" + addressingRequired);
str.append("\n addressingResponses=" + addressingResponses);
str.append("\n mtomEnabled=" + mtomEnabled);
str.append("\n mtomThreshold=" + mtomThreshold);
+ str.append("\n respectBindingAnnotationSpecified=" + respectBindingAnnotationSpecified);
str.append("\n respectBindingEnabled=" + respectBindingEnabled);
str.append("\n portComponentLink=" + portComponentLink);
str.append("\n callProperties=" + callProperties);
13 years, 4 months
JBossWS SVN: r14842 - in stack/native/trunk/modules: testsuite/native-tests/src/test/java/org/jboss/test/ws/common/soap and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2011-08-15 02:08:06 -0400 (Mon, 15 Aug 2011)
New Revision: 14842
Modified:
stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPFactoryImpl.java
stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/common/soap/SOAPFactoryTestCase.java
Log:
[JBWS-3209]:Remove additional namespace declaration
Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPFactoryImpl.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPFactoryImpl.java 2011-08-14 09:59:28 UTC (rev 14841)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPFactoryImpl.java 2011-08-15 06:08:06 UTC (rev 14842)
@@ -21,6 +21,9 @@
*/
package org.jboss.ws.core.soap;
+import java.util.ArrayList;
+import java.util.Iterator;
+import java.util.List;
import java.util.ResourceBundle;
import javax.xml.namespace.QName;
@@ -37,6 +40,7 @@
import org.jboss.ws.common.Constants;
import org.jboss.ws.common.DOMUtils;
import org.jboss.ws.extensions.xop.XOPContext;
+import org.w3c.dom.Attr;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
@@ -157,10 +161,39 @@
}
}
}
-
+ Iterator ite = soapElement.getNamespacePrefixes();
+ List<String> prefixs = new ArrayList<String>();
+ while (ite != null && ite.hasNext())
+ {
+ prefixs.add((String) ite.next());
+ }
+ removeNSAttribute(soapElement, prefixs);
return soapElement;
}
+ private void removeNSAttribute(SOAPElement soapElement, List<String> prefixes)
+ {
+ Iterator ite2 = soapElement.getChildElements();
+ while (ite2 != null && ite2.hasNext())
+ {
+ Object obj = ite2.next();
+ if (obj instanceof SOAPElement)
+ {
+ SOAPElement ele = (SOAPElement) obj;
+ removeNSAttribute(ele, prefixes);
+ for (String str : prefixes)
+ {
+ Attr attr = ele.getAttributeNode("xmlns:" + str);
+ if (attr != null)
+ ele.removeAttribute("xmlns:" + str);
+
+ }
+ }
+
+ }
+
+ }
+
@Override
public Detail createDetail() throws SOAPException
{
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/common/soap/SOAPFactoryTestCase.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/common/soap/SOAPFactoryTestCase.java 2011-08-14 09:59:28 UTC (rev 14841)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/common/soap/SOAPFactoryTestCase.java 2011-08-15 06:08:06 UTC (rev 14842)
@@ -21,12 +21,21 @@
*/
package org.jboss.test.ws.common.soap;
+import java.io.StringReader;
+
+import javax.xml.parsers.DocumentBuilder;
+import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.soap.Detail;
import javax.xml.soap.Name;
import javax.xml.soap.SOAPElement;
import javax.xml.soap.SOAPFactory;
import org.jboss.wsf.test.JBossWSTest;
+import org.w3c.dom.Attr;
+import org.w3c.dom.Document;
+import org.w3c.dom.Element;
+import org.w3c.dom.NodeList;
+import org.xml.sax.InputSource;
/**
* Test the SOAPFactory
@@ -84,5 +93,28 @@
assertEquals("pre", name.getPrefix());
assertEquals("http://someURI", name.getURI());
}
+
+
+ public void testNSDeclaration() throws Exception
+ {
+ String CONTENTS =
+ "<say:sayHiResponse xmlns:say='http://www.jboss.org/sayHi' xmlns:say2='http://www.jboss.org/sayHi2'>" +
+ "<say2:arg0><say2:arg2>Response</say2:arg2></say2:arg0>" +
+ "</say:sayHiResponse>" ;
+
+ DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance() ;
+ builderFactory.setNamespaceAware(true);
+ DocumentBuilder builder = builderFactory.newDocumentBuilder() ;
+
+ Document doc = builder.parse(new InputSource(new StringReader(CONTENTS))) ;
+ Element root = doc.getDocumentElement() ;
+
+ SOAPFactory factory = SOAPFactory.newInstance();
+ SOAPElement soapElement = factory.createElement(root) ;
+ NodeList elementList = soapElement.getElementsByTagName("say2:arg2");
+ Element element = (Element)elementList.item(0);
+ Attr attr = element.getAttributeNode("xmlns:say2");
+ assertNull(attr);
+ }
}
13 years, 4 months
JBossWS SVN: r14841 - stack/cxf/branches/jbossws-cxf-3.4.1.SP1.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-08-14 05:59:28 -0400 (Sun, 14 Aug 2011)
New Revision: 14841
Modified:
stack/cxf/branches/jbossws-cxf-3.4.1.SP1/pom.xml
Log:
[CXF-3740][JBWS-3337][JBWS-3338] incorporating TCK6 fixes
Modified: stack/cxf/branches/jbossws-cxf-3.4.1.SP1/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.4.1.SP1/pom.xml 2011-08-14 09:58:06 UTC (rev 14840)
+++ stack/cxf/branches/jbossws-cxf-3.4.1.SP1/pom.xml 2011-08-14 09:59:28 UTC (rev 14841)
@@ -46,8 +46,8 @@
<!-- Properties -->
<properties>
- <jbossws.spi.version>1.4.1.GA</jbossws.spi.version>
- <jbossws.common.version>1.4.1.GA</jbossws.common.version>
+ <jbossws.spi.version>1.4.1.SP1</jbossws.spi.version>
+ <jbossws.common.version>1.4.1.SP1</jbossws.common.version>
<jbossws.framework.version>3.4.1.GA</jbossws.framework.version>
<jbossws.jboss501.version>3.4.0.GA</jbossws.jboss501.version>
<jbossws.jboss510.version>3.4.0.GA</jbossws.jboss510.version>
@@ -58,7 +58,7 @@
<jbossws.jboss610.version>3.4.1.GA</jbossws.jboss610.version>
-->
<!-- END -->
- <cxf.version>2.3.1</cxf.version>
+ <cxf.version>2.3.1-patch-01</cxf.version>
<cxf.stax.version>1.0.1</cxf.stax.version>
<cxf.asm.version>2.2.3</cxf.asm.version>
<cxf.xjcplugins.version>2.3.0</cxf.xjcplugins.version>
13 years, 4 months
JBossWS SVN: r14840 - stack/native/branches/jbossws-native-3.4.1.SP2.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-08-14 05:58:06 -0400 (Sun, 14 Aug 2011)
New Revision: 14840
Modified:
stack/native/branches/jbossws-native-3.4.1.SP2/pom.xml
Log:
[JBWS-3337][JBWS-3338] incorporating TCK6 fixes
Modified: stack/native/branches/jbossws-native-3.4.1.SP2/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.4.1.SP2/pom.xml 2011-08-14 09:49:10 UTC (rev 14839)
+++ stack/native/branches/jbossws-native-3.4.1.SP2/pom.xml 2011-08-14 09:58:06 UTC (rev 14840)
@@ -46,8 +46,8 @@
<!-- Properties -->
<properties>
- <jbossws.spi.version>1.4.1.GA</jbossws.spi.version>
- <jbossws.common.version>1.4.1.GA</jbossws.common.version>
+ <jbossws.spi.version>1.4.1.SP1</jbossws.spi.version>
+ <jbossws.common.version>1.4.1.SP1</jbossws.common.version>
<jbossws.framework.version>3.4.1.GA</jbossws.framework.version>
<jbossws.jboss501.version>3.4.0.GA</jbossws.jboss501.version>
<jbossws.jboss510.version>3.4.0.GA</jbossws.jboss510.version>
13 years, 4 months
JBossWS SVN: r14838 - in thirdparty/cxf/branches/cxf-2.3.1: parent and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-08-14 03:28:25 -0400 (Sun, 14 Aug 2011)
New Revision: 14838
Modified:
thirdparty/cxf/branches/cxf-2.3.1/parent/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/pom.xml
Log:
disabling system tests and providing 'sources' profile
Modified: thirdparty/cxf/branches/cxf-2.3.1/parent/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/parent/pom.xml 2011-08-13 23:24:25 UTC (rev 14837)
+++ thirdparty/cxf/branches/cxf-2.3.1/parent/pom.xml 2011-08-14 07:28:25 UTC (rev 14838)
@@ -1497,6 +1497,27 @@
</profile>
<profile>
+ <id>sources</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <version>2.1.2</version>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <profile>
<id>ibmjdk</id>
<activation>
<property>
Modified: thirdparty/cxf/branches/cxf-2.3.1/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/pom.xml 2011-08-13 23:24:25 UTC (rev 14837)
+++ thirdparty/cxf/branches/cxf-2.3.1/pom.xml 2011-08-14 07:28:25 UTC (rev 14838)
@@ -160,8 +160,8 @@
<module>rt</module>
<module>integration</module>
<module>maven-plugins</module>
- <!--module>test-samples</module-->
- <module>systests</module>
+ <!--module>test-samples</module>
+ <module>systests</module-->
</modules>
13 years, 4 months
JBossWS SVN: r14837 - in common: tags and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-08-13 19:24:25 -0400 (Sat, 13 Aug 2011)
New Revision: 14837
Added:
common/tags/jbossws-common-1.4.1.SP1/
Removed:
common/branches/jbossws-common-1.4.1.SP1/
Log:
tagging JBossWS Common 1.4.1.SP1
13 years, 4 months
JBossWS SVN: r14836 - in common/branches/jbossws-common-1.4.1.SP1: src/main/java/org/jboss/wsf/common/serviceref and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-08-13 19:16:46 -0400 (Sat, 13 Aug 2011)
New Revision: 14836
Modified:
common/branches/jbossws-common-1.4.1.SP1/pom.xml
common/branches/jbossws-common-1.4.1.SP1/src/main/java/org/jboss/wsf/common/serviceref/AbstractServiceObjectFactoryJAXWS.java
Log:
[JBWS-3338] construct ports using features properly
Modified: common/branches/jbossws-common-1.4.1.SP1/pom.xml
===================================================================
--- common/branches/jbossws-common-1.4.1.SP1/pom.xml 2011-08-13 23:12:31 UTC (rev 14835)
+++ common/branches/jbossws-common-1.4.1.SP1/pom.xml 2011-08-13 23:16:46 UTC (rev 14836)
@@ -27,7 +27,7 @@
<!-- Properties -->
<properties>
- <jbossws.spi.version>1.4.1.GA</jbossws.spi.version>
+ <jbossws.spi.version>1.4.1.SP1</jbossws.spi.version>
<jboss.jaxbintros.version>1.0.2.GA</jboss.jaxbintros.version>
<jboss.common.core.version>2.2.14.GA</jboss.common.core.version>
<jboss.ejb.api.version>3.0.0.GA</jboss.ejb.api.version>
Modified: common/branches/jbossws-common-1.4.1.SP1/src/main/java/org/jboss/wsf/common/serviceref/AbstractServiceObjectFactoryJAXWS.java
===================================================================
--- common/branches/jbossws-common-1.4.1.SP1/src/main/java/org/jboss/wsf/common/serviceref/AbstractServiceObjectFactoryJAXWS.java 2011-08-13 23:12:31 UTC (rev 14835)
+++ common/branches/jbossws-common-1.4.1.SP1/src/main/java/org/jboss/wsf/common/serviceref/AbstractServiceObjectFactoryJAXWS.java 2011-08-13 23:16:46 UTC (rev 14836)
@@ -190,7 +190,9 @@
Class<?> retType = method.getReturnType();
if (methodName.startsWith("get") && targetClass.isAssignableFrom(retType))
{
- port = method.invoke(target, new Object[0]);
+ final Method targetMethod = getMethodFor(methodName, features, serviceClass);
+ final Object[] args = getArgumentsFor(features);
+ port = targetMethod.invoke(target, args);
retVal = port;
break;
}
@@ -199,7 +201,7 @@
if (port == null)
{
- Method method = getMethodFor(portQName, features, serviceClass);
+ Method method = getMethodFor("getPort", portQName, features, serviceClass);
Object[] args = getArgumentsFor(portQName, features, targetClass);
port = method.invoke(target, args);
retVal = port;
@@ -345,25 +347,38 @@
return null;
}
- private Method getMethodFor(final QName portQName, final WebServiceFeature[] features, final Class<?> serviceClass)
+ private Method getMethodFor(final String methodName, final QName portQName, final WebServiceFeature[] features, final Class<?> serviceClass)
throws NoSuchMethodException
{
if ((portQName == null) && (features == null))
- return serviceClass.getMethod("getPort", new Class[]
+ return serviceClass.getMethod(methodName, new Class[]
{Class.class});
if ((portQName != null) && (features == null))
- return serviceClass.getMethod("getPort", new Class[]
+ return serviceClass.getMethod(methodName, new Class[]
{QName.class, Class.class});
if ((portQName == null) && (features != null))
- return serviceClass.getMethod("getPort", new Class[]
+ return serviceClass.getMethod(methodName, new Class[]
{Class.class, WebServiceFeature[].class});
if ((portQName != null) && (features != null))
- return serviceClass.getMethod("getPort", new Class[]
+ return serviceClass.getMethod(methodName, new Class[]
{QName.class, Class.class, WebServiceFeature[].class});
throw new IllegalStateException();
}
+ private Method getMethodFor(final String methodName, final WebServiceFeature[] features, final Class<?> serviceClass)
+ throws NoSuchMethodException
+ {
+ if (features == null)
+ {
+ return serviceClass.getMethod(methodName, new Class[] {});
+ }
+ else
+ {
+ return serviceClass.getMethod(methodName, new Class[] { WebServiceFeature[].class } );
+ }
+ }
+
private Object[] getArgumentsFor(final QName portQName, final WebServiceFeature[] features,
final Class<?> targetClass) throws NoSuchMethodException
{
@@ -383,6 +398,18 @@
throw new IllegalStateException();
}
+ private Object[] getArgumentsFor(final WebServiceFeature[] features) throws NoSuchMethodException
+ {
+ if (features == null)
+ {
+ return new Object[] {};
+ }
+ else
+ {
+ return new Object[] {features};
+ }
+ }
+
private WebServiceFeature[] getFeatures(final UnifiedServiceRefMetaData serviceRef)
{
List<WebServiceFeature> features = new LinkedList<WebServiceFeature>();
@@ -425,8 +452,9 @@
{
List<WebServiceFeature> features = new LinkedList<WebServiceFeature>();
// configure @Addressing feature
- if (portComponentRefMD.isAddressingEnabled())
+ if (portComponentRefMD.isAddressingAnnotationSpecified())
{
+ final boolean enabled = portComponentRefMD.isAddressingEnabled();
final boolean required = portComponentRefMD.isAddressingRequired();
final String refResponses = portComponentRefMD.getAddressingResponses();
AddressingFeature.Responses responses = AddressingFeature.Responses.ALL;
@@ -435,7 +463,7 @@
if ("NON_ANONYMOUS".equals(refResponses))
responses = AddressingFeature.Responses.NON_ANONYMOUS;
- features.add(new AddressingFeature(true, required, responses));
+ features.add(new AddressingFeature(enabled, required, responses));
}
// configure @MTOM feature
@@ -445,9 +473,10 @@
}
// configure @RespectBinding feature
- if (portComponentRefMD.isRespectBindingEnabled())
+ if (portComponentRefMD.isRespectBindingAnnotationSpecified())
{
- features.add(new RespectBindingFeature(true));
+ final boolean enabled = portComponentRefMD.isRespectBindingEnabled();
+ features.add(new RespectBindingFeature(enabled));
}
return features.size() == 0 ? null : features.toArray(new WebServiceFeature[]
13 years, 4 months
JBossWS SVN: r14835 - in spi: tags and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-08-13 19:12:31 -0400 (Sat, 13 Aug 2011)
New Revision: 14835
Added:
spi/tags/jbossws-spi-1.4.1.SP1/
Removed:
spi/branches/jbossws-spi-1.4.1.SP1/
Log:
tagging JBossWS SPI 1.4.1.SP1
13 years, 4 months
JBossWS SVN: r14834 - in thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest: wssec10 and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-08-13 19:05:21 -0400 (Sat, 13 Aug 2011)
New Revision: 14834
Modified:
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wssc/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wssec10/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wssec11/pom.xml
Log:
fixing wrong parent references
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wssc/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wssc/pom.xml 2011-08-13 23:02:43 UTC (rev 14833)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wssc/pom.xml 2011-08-13 23:05:21 UTC (rev 14834)
@@ -27,6 +27,7 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
<version>2.3.1-patch-01</version>
+ <relativePath>../../../pom.xml</relativePath>
</parent>
<properties>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wssec10/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wssec10/pom.xml 2011-08-13 23:02:43 UTC (rev 14833)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wssec10/pom.xml 2011-08-13 23:05:21 UTC (rev 14834)
@@ -27,6 +27,7 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
<version>2.3.1-patch-01</version>
+ <relativePath>../../../pom.xml</relativePath>
</parent>
<properties>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wssec11/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wssec11/pom.xml 2011-08-13 23:02:43 UTC (rev 14833)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wssec11/pom.xml 2011-08-13 23:05:21 UTC (rev 14834)
@@ -27,6 +27,7 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
<version>2.3.1-patch-01</version>
+ <relativePath>../../../pom.xml</relativePath>
</parent>
<properties>
13 years, 4 months