JBossWS SVN: r18925 - stack/cxf/trunk/modules/client/src/main/java/org/jboss/wsf/stack/cxf/tools.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2014-09-11 10:31:15 -0400 (Thu, 11 Sep 2014)
New Revision: 18925
Modified:
stack/cxf/trunk/modules/client/src/main/java/org/jboss/wsf/stack/cxf/tools/CXFConsumerImpl.java
Log:
[JBWS-3826] Pass encoding option to underlying CXF layer
Modified: stack/cxf/trunk/modules/client/src/main/java/org/jboss/wsf/stack/cxf/tools/CXFConsumerImpl.java
===================================================================
--- stack/cxf/trunk/modules/client/src/main/java/org/jboss/wsf/stack/cxf/tools/CXFConsumerImpl.java 2014-09-11 14:30:34 UTC (rev 18924)
+++ stack/cxf/trunk/modules/client/src/main/java/org/jboss/wsf/stack/cxf/tools/CXFConsumerImpl.java 2014-09-11 14:31:15 UTC (rev 18925)
@@ -78,6 +78,7 @@
private String targetPackage = null;
private PrintStream messageStream = null;
private String wsdlLocation = null;
+ private String encoding = null;
private List<String> additionalCompilerClassPath = new ArrayList<String>();
private boolean additionalHeaders = false;
private String target;
@@ -136,6 +137,11 @@
{
this.wsdlLocation = wsdlLocation;
}
+
+ @Override
+ public void setEncoding(String encoding) {
+ this.encoding = encoding;
+ }
@Override
public void setAdditionalCompilerClassPath(List<String> additionalCompilerClassPath)
@@ -259,6 +265,12 @@
if (verbose) {
args.add("-verbose");
}
+
+ if (encoding != null)
+ {
+ args.add("-encoding");
+ args.add(encoding);
+ }
if (extension)
{
10 years, 3 months
JBossWS SVN: r18924 - stack/cxf/trunk.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2014-09-11 10:30:34 -0400 (Thu, 11 Sep 2014)
New Revision: 18924
Modified:
stack/cxf/trunk/pom.xml
Log:
Use latest jbossws-common-tools snapshot
Modified: stack/cxf/trunk/pom.xml
===================================================================
--- stack/cxf/trunk/pom.xml 2014-09-11 14:28:47 UTC (rev 18923)
+++ stack/cxf/trunk/pom.xml 2014-09-11 14:30:34 UTC (rev 18924)
@@ -64,7 +64,7 @@
<jbossws.api.version>1.0.3-SNAPSHOT</jbossws.api.version>
<jbossws.spi.version>3.0.0-SNAPSHOT</jbossws.spi.version>
<jbossws.common.version>3.0.0-SNAPSHOT</jbossws.common.version>
- <jbossws.common.tools.version>1.2.0.Final</jbossws.common.tools.version>
+ <jbossws.common.tools.version>1.2.1-SNAPSHOT</jbossws.common.tools.version>
<jbossws.wildfly800.version>5.0.0-SNAPSHOT</jbossws.wildfly800.version>
<jbossws.wildfly810.version>5.0.0-SNAPSHOT</jbossws.wildfly810.version>
<wildfly800.version>8.0.0.Final</wildfly800.version>
10 years, 3 months
JBossWS SVN: r18923 - in common-tools/trunk/src: main/java/org/jboss/ws/tools/cmd and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2014-09-11 10:28:47 -0400 (Thu, 11 Sep 2014)
New Revision: 18923
Modified:
common-tools/trunk/src/main/java/org/jboss/ws/tools/ant/WSConsumeTask.java
common-tools/trunk/src/main/java/org/jboss/ws/tools/cmd/WSConsume.java
common-tools/trunk/src/test/java/org/jboss/test/ws/tools/CmdConsumeTracker.java
Log:
[JBWS-3826] Adding encoding option to WSConsume Ant task and script
Modified: common-tools/trunk/src/main/java/org/jboss/ws/tools/ant/WSConsumeTask.java
===================================================================
--- common-tools/trunk/src/main/java/org/jboss/ws/tools/ant/WSConsumeTask.java 2014-09-11 14:27:43 UTC (rev 18922)
+++ common-tools/trunk/src/main/java/org/jboss/ws/tools/ant/WSConsumeTask.java 2014-09-11 14:28:47 UTC (rev 18923)
@@ -89,6 +89,7 @@
private File catalog;
private File clientjar;
private String wsdlLocation;
+ private String encoding;
private String targetPackage;
private boolean keep;
private boolean extension;
@@ -185,6 +186,11 @@
this.wsdlLocation = wsdlLocation;
}
+ public void setEncoding(String encoding)
+ {
+ this.encoding = encoding;
+ }
+
public void addConfiguredBinding(FileSet fs)
{
DirectoryScanner ds = fs.getDirectoryScanner(getProject());
@@ -218,6 +224,8 @@
consumer.setWsdlLocation(wsdlLocation);
if (clientjar != null)
consumer.setClientJar(clientjar);
+ if (encoding != null)
+ consumer.setEncoding(encoding);
if (catalog != null)
{
if (catalog.exists() && catalog.isFile())
@@ -342,6 +350,12 @@
command.createArgument().setValue("-w");
command.createArgument().setValue(wsdlLocation);
}
+
+ if (encoding != null)
+ {
+ command.createArgument().setValue("--encoding");
+ command.createArgument().setValue(encoding);
+ }
if (destdir != null)
{
Modified: common-tools/trunk/src/main/java/org/jboss/ws/tools/cmd/WSConsume.java
===================================================================
--- common-tools/trunk/src/main/java/org/jboss/ws/tools/cmd/WSConsume.java 2014-09-11 14:27:43 UTC (rev 18922)
+++ common-tools/trunk/src/main/java/org/jboss/ws/tools/cmd/WSConsume.java 2014-09-11 14:28:47 UTC (rev 18923)
@@ -49,17 +49,18 @@
* <tr><td>-k, --keep </td><td>Keep/Generate Java source</td></tr>
* <tr><td>-c, --catalog=<file> </td><td>Oasis XML Catalog file for entity resolution</td></tr>
* <tr><td>-p, --package=<name> </td><td>The target package for generated source</td></tr>
- * <tr><td>-j, --clientjar=<name> </td><td>Create a jar file of the generated artifacts for calling the webservice</td></tr>
+ * <tr><td>-j, --clientjar=<name> </td><td>Create a jar file of the generated artifacts for calling the webservice</td></tr>
* <tr><td>-w, --wsdlLocation=<loc> </td><td>Value to use for @(a)WebService.wsdlLocation</td></tr>
* <tr><td>-o, --output=<directory> </td><td>The directory to put generated artifacts</td></tr>
* <tr><td>-s, --source=<directory> </td><td>The directory to put Java source</td></tr>
- * <tr><td>-t, --target=<2.1|2.2></td><td>The target specification target</td></tr>
+ * <tr><td>-t, --target=<2.1|2.2> </td><td>The target specification target</td></tr>
* <tr><td>-n, --nocompile </td><td>Do not compile generated sources</td></tr>
* <tr><td>-q, --quiet </td><td>Be somewhat more quiet</td></tr>
* <tr><td>-v, --verbose </td><td>Show full exception stack traces</td></tr>
* <tr><td>-l, --load-consumer </td><td>Load the consumer and exit (debug utility)</td></tr>
* <tr><td>-e, --extension </td><td>Enable SOAP 1.2 binding extension</td></tr>
- * <tr><td>-a, --additionalHeaders </td><td>Enable SOAP 1.2 binding extension</td></tr>
+ * <tr><td>-a, --additionalHeaders </td><td>Enable processing of implicit SOAP headers</td></tr>
+ * <tr><td>-d, --encoding=<charset> </td><td>The charset encoding to use for generated sources</td></tr>
* </table>
* </pre>
*
@@ -73,6 +74,7 @@
private File catalog;
private String targetPackage;
private String wsdlLocation;
+ private String encoding;
private boolean quiet;
private boolean verbose;
private boolean loadConsumer;
@@ -108,7 +110,7 @@
private URL parseArguments(String[] args)
{
- String shortOpts = "b:c:p:w:o:s:t:j:khqvlnea";
+ String shortOpts = "b:c:p:w:d:o:s:t:j:khqvlnea";
LongOpt[] longOpts =
{
new LongOpt("binding", LongOpt.REQUIRED_ARGUMENT, null, 'b'),
@@ -127,6 +129,7 @@
new LongOpt("additionalHeaders", LongOpt.NO_ARGUMENT, null, 'a'),
new LongOpt("load-consumer", LongOpt.NO_ARGUMENT, null, 'l'),
new LongOpt("clientjar", LongOpt.REQUIRED_ARGUMENT, null, 'j'),
+ new LongOpt("encoding", LongOpt.REQUIRED_ARGUMENT, null, 'd'),
};
Getopt getopt = new Getopt(PROGRAM_NAME, args, shortOpts, longOpts);
@@ -150,6 +153,9 @@
case 'w':
wsdlLocation = getopt.getOptarg();
break;
+ case 'd':
+ encoding = getopt.getOptarg();
+ break;
case 'o':
outputDir = new File(getopt.getOptarg());
break;
@@ -274,6 +280,9 @@
if (wsdlLocation != null)
consumer.setWsdlLocation(wsdlLocation);
+
+ if (encoding != null)
+ consumer.setEncoding(encoding);
if (bindingFiles != null && bindingFiles.size() > 0)
consumer.setBindingFiles(bindingFiles);
@@ -333,6 +342,7 @@
out.println(" -l, --load-consumer Load the consumer and exit (debug utility)");
out.println(" -e, --extension Enable SOAP 1.2 binding extension");
out.println(" -a, --additionalHeaders Enable processing of implicit SOAP headers");
+ out.println(" -d --encoding=<charset> The charset encoding to use for generated sources");
out.println(" -n, --nocompile Do not compile generated sources");
out.flush();
}
Modified: common-tools/trunk/src/test/java/org/jboss/test/ws/tools/CmdConsumeTracker.java
===================================================================
--- common-tools/trunk/src/test/java/org/jboss/test/ws/tools/CmdConsumeTracker.java 2014-09-11 14:27:43 UTC (rev 18922)
+++ common-tools/trunk/src/test/java/org/jboss/test/ws/tools/CmdConsumeTracker.java 2014-09-11 14:28:47 UTC (rev 18923)
@@ -76,6 +76,12 @@
{
LAST_EVENT += "setWsdlLocation";
}
+
+ @Override
+ public void setEncoding(String encoding)
+ {
+ LAST_EVENT += "setEncoding";
+ }
@Override
public void setMessageStream(PrintStream messageStream)
10 years, 3 months
JBossWS SVN: r18922 - common-tools/trunk.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2014-09-11 10:27:43 -0400 (Thu, 11 Sep 2014)
New Revision: 18922
Modified:
common-tools/trunk/pom.xml
Log:
Removing jbossws-spi dependency from jbossws-common-tools as it's actually not needed
Modified: common-tools/trunk/pom.xml
===================================================================
--- common-tools/trunk/pom.xml 2014-09-11 14:26:38 UTC (rev 18921)
+++ common-tools/trunk/pom.xml 2014-09-11 14:27:43 UTC (rev 18922)
@@ -25,7 +25,6 @@
<properties>
<jbossws.api.version>1.0.3-SNAPSHOT</jbossws.api.version>
- <jbossws.spi.version>2.2.1-SNAPSHOT</jbossws.spi.version>
<ant.version>1.7.1</ant.version>
<getopt.version>1.0.13</getopt.version>
<junit.version>3.8.2</junit.version>
@@ -45,11 +44,6 @@
<version>${jbossws.api.version}</version>
</dependency>
<dependency>
- <groupId>org.jboss.ws</groupId>
- <artifactId>jbossws-spi</artifactId>
- <version>${jbossws.spi.version}</version>
- </dependency>
- <dependency>
<groupId>gnu.getopt</groupId>
<artifactId>java-getopt</artifactId>
<version>${getopt.version}</version>
10 years, 3 months
JBossWS SVN: r18921 - api/trunk/src/main/java/org/jboss/ws/api/tools.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2014-09-11 10:26:38 -0400 (Thu, 11 Sep 2014)
New Revision: 18921
Modified:
api/trunk/src/main/java/org/jboss/ws/api/tools/WSContractConsumer.java
Log:
[JBWS-3826] Adding encoding option to WSContractConsumer API
Modified: api/trunk/src/main/java/org/jboss/ws/api/tools/WSContractConsumer.java
===================================================================
--- api/trunk/src/main/java/org/jboss/ws/api/tools/WSContractConsumer.java 2014-09-11 14:25:58 UTC (rev 18920)
+++ api/trunk/src/main/java/org/jboss/ws/api/tools/WSContractConsumer.java 2014-09-11 14:26:38 UTC (rev 18921)
@@ -142,6 +142,14 @@
* @param wsdlLocation the custom WSDL location to use in generated source
*/
public abstract void setWsdlLocation(String wsdlLocation);
+
+
+ /**
+ * Sets the charset encoding to be used for generating sources
+ *
+ * @param encoding the charset encoding to be used for generating sources
+ */
+ public abstract void setEncoding(String encoding);
/**
* Sets the PrintStream to use for status feedback. The simplest example
10 years, 3 months
JBossWS SVN: r18920 - api/trunk/src/main/java/org/jboss/ws/api/addressing.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2014-09-11 10:25:58 -0400 (Thu, 11 Sep 2014)
New Revision: 18920
Modified:
api/trunk/src/main/java/org/jboss/ws/api/addressing/MAPRelatesTo.java
Log:
Removing useless method
Modified: api/trunk/src/main/java/org/jboss/ws/api/addressing/MAPRelatesTo.java
===================================================================
--- api/trunk/src/main/java/org/jboss/ws/api/addressing/MAPRelatesTo.java 2014-09-05 14:11:26 UTC (rev 18919)
+++ api/trunk/src/main/java/org/jboss/ws/api/addressing/MAPRelatesTo.java 2014-09-11 14:25:58 UTC (rev 18920)
@@ -36,6 +36,4 @@
public QName getType();
- public void setType(QName type);
-
}
10 years, 3 months
JBossWS SVN: r18919 - in container/wildfly81/branches/jbossws-wildfly810-4.3.x: server-integration and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2014-09-05 10:11:26 -0400 (Fri, 05 Sep 2014)
New Revision: 18919
Modified:
container/wildfly81/branches/jbossws-wildfly810-4.3.x/pom.xml
container/wildfly81/branches/jbossws-wildfly810-4.3.x/server-integration/pom.xml
container/wildfly81/branches/jbossws-wildfly810-4.3.x/tests-integration/pom.xml
Log:
Prepare for next dev cycle
Modified: container/wildfly81/branches/jbossws-wildfly810-4.3.x/pom.xml
===================================================================
--- container/wildfly81/branches/jbossws-wildfly810-4.3.x/pom.xml 2014-09-05 14:09:41 UTC (rev 18918)
+++ container/wildfly81/branches/jbossws-wildfly810-4.3.x/pom.xml 2014-09-05 14:11:26 UTC (rev 18919)
@@ -35,7 +35,7 @@
<description>JBossWS WildFly 8.1.0.Final Integration Parent</description>
<groupId>org.jboss.ws</groupId>
<artifactId>jbossws-wildfly810-parent</artifactId>
- <version>4.3.1-SNAPSHOT</version>
+ <version>4.3.2-SNAPSHOT</version>
<packaging>pom</packaging>
<scm>
@@ -52,7 +52,7 @@
<properties>
<jbossws.api.version>1.0.2.Final</jbossws.api.version>
<jbossws.spi.version>2.3.0.Final</jbossws.spi.version>
- <jbossws.common.version>2.3.1-SNAPSHOT</jbossws.common.version>
+ <jbossws.common.version>2.3.1.Final</jbossws.common.version>
<jboss.msc.version>1.2.2.Final</jboss.msc.version>
<wildfly.version>8.1.0.Final</wildfly.version>
<wildfly.security-manager.version>1.0.0.Final</wildfly.security-manager.version>
Modified: container/wildfly81/branches/jbossws-wildfly810-4.3.x/server-integration/pom.xml
===================================================================
--- container/wildfly81/branches/jbossws-wildfly810-4.3.x/server-integration/pom.xml 2014-09-05 14:09:41 UTC (rev 18918)
+++ container/wildfly81/branches/jbossws-wildfly810-4.3.x/server-integration/pom.xml 2014-09-05 14:11:26 UTC (rev 18919)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.jboss.ws</groupId>
<artifactId>jbossws-wildfly810-parent</artifactId>
- <version>4.3.1-SNAPSHOT</version>
+ <version>4.3.2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: container/wildfly81/branches/jbossws-wildfly810-4.3.x/tests-integration/pom.xml
===================================================================
--- container/wildfly81/branches/jbossws-wildfly810-4.3.x/tests-integration/pom.xml 2014-09-05 14:09:41 UTC (rev 18918)
+++ container/wildfly81/branches/jbossws-wildfly810-4.3.x/tests-integration/pom.xml 2014-09-05 14:11:26 UTC (rev 18919)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.jboss.ws</groupId>
<artifactId>jbossws-wildfly810-parent</artifactId>
- <version>4.3.1-SNAPSHOT</version>
+ <version>4.3.2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
10 years, 3 months
JBossWS SVN: r18918 - common/branches/jbossws-common-2.3.x.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2014-09-05 10:09:41 -0400 (Fri, 05 Sep 2014)
New Revision: 18918
Modified:
common/branches/jbossws-common-2.3.x/pom.xml
Log:
Preparing for next dev cycle
Modified: common/branches/jbossws-common-2.3.x/pom.xml
===================================================================
--- common/branches/jbossws-common-2.3.x/pom.xml 2014-09-05 14:07:44 UTC (rev 18917)
+++ common/branches/jbossws-common-2.3.x/pom.xml 2014-09-05 14:09:41 UTC (rev 18918)
@@ -9,7 +9,7 @@
<packaging>jar</packaging>
<description>JBossWS Common</description>
- <version>2.3.1-SNAPSHOT</version>
+ <version>2.3.2-SNAPSHOT</version>
<!-- Parent -->
<parent>
@@ -27,7 +27,7 @@
<!-- Properties -->
<properties>
- <jbossws.spi.version>2.3.1-SNAPSHOT</jbossws.spi.version>
+ <jbossws.spi.version>2.3.0.Final</jbossws.spi.version>
<jboss.jaxbintros.version>1.0.2.GA</jboss.jaxbintros.version>
<jboss.common.core.version>2.2.17.GA</jboss.common.core.version>
<jboss-logging.version>3.1.2.GA</jboss-logging.version>
10 years, 3 months
JBossWS SVN: r18917 - stack/cxf/trunk/modules/dist/src/main/distro.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2014-09-05 10:07:44 -0400 (Fri, 05 Sep 2014)
New Revision: 18917
Modified:
stack/cxf/trunk/modules/dist/src/main/distro/ReleaseNotes.txt
Log:
Updating release notes
Modified: stack/cxf/trunk/modules/dist/src/main/distro/ReleaseNotes.txt
===================================================================
--- stack/cxf/trunk/modules/dist/src/main/distro/ReleaseNotes.txt 2014-09-05 14:06:52 UTC (rev 18916)
+++ stack/cxf/trunk/modules/dist/src/main/distro/ReleaseNotes.txt 2014-09-05 14:07:44 UTC (rev 18917)
@@ -58,7 +58,39 @@
Previous Releases ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
-----------------------
+jbossws-cxf-4.3.1.Final
+-----------------------
+
+Bug
+
+ * [JBWS-3773] - HttpServletRequest in WebServiceContext and requests with WSA ReplyTo prop set
+ * [JBWS-3777] - CXF-5645: wsp:Optional isn't adhered to for WS-RM policy in WSDL
+ * [JBWS-3786] - @Resource injection not working on handlers attached to JAX-WS clients running in-container
+ * [JBWS-3796] - CXFHandlerResolverImpl initializes handlers at each getHandlerChain() invocation
+ * [JBWS-3798] - @WebEndpoint name not considered when building up webservicerefs
+ * [JBWS-3809] - AbstractDeployment#addEndpoint's check on urlPattern performed on wrong data
+ * [JBWS-3820] - JAXWS 2.1 / 2.0 style clients and WebServiceRef using JAXWS features cause NoSuchMethodException
+ * [JBWS-3821] - WebServiceRef injection not working properly with TCCL and NEW client Bus selection strategies
+
+Enhancement
+
+ * [JBWS-3782] - Allow to specify config name and additional value for JAVA_OPTS for launched appclient
+
+Feature Request
+
+ * [JBWS-3787] - Upgrade to Apache CXF 2.7.11
+ * [JBWS-3823] - Upgrade to Apache CXF 2.7.12
+
+Errata
+
+ See: https://issues.jboss.org/browse/JBWS-3825
+
+This version of "JBoss Web Services - Stack CXF Distribution" is based on Apache CXF 2.7.12
+
+
+-----------------------
jbossws-cxf-4.3.0.Final
-----------------------
10 years, 3 months
JBossWS SVN: r18916 - in stack/cxf/branches/jbossws-cxf-4.3.x: modules/addons and 15 other directories.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2014-09-05 10:06:52 -0400 (Fri, 05 Sep 2014)
New Revision: 18916
Modified:
stack/cxf/branches/jbossws-cxf-4.3.x/modules/addons/pom.xml
stack/cxf/branches/jbossws-cxf-4.3.x/modules/addons/transports/http/httpserver/pom.xml
stack/cxf/branches/jbossws-cxf-4.3.x/modules/addons/transports/http/undertow/pom.xml
stack/cxf/branches/jbossws-cxf-4.3.x/modules/addons/transports/udp/pom.xml
stack/cxf/branches/jbossws-cxf-4.3.x/modules/client/pom.xml
stack/cxf/branches/jbossws-cxf-4.3.x/modules/dist/pom.xml
stack/cxf/branches/jbossws-cxf-4.3.x/modules/dist/src/main/distro/ReleaseNotes.txt
stack/cxf/branches/jbossws-cxf-4.3.x/modules/endorsed/pom.xml
stack/cxf/branches/jbossws-cxf-4.3.x/modules/jaspi/pom.xml
stack/cxf/branches/jbossws-cxf-4.3.x/modules/resources/pom.xml
stack/cxf/branches/jbossws-cxf-4.3.x/modules/server/pom.xml
stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/cxf-spring-tests/pom.xml
stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/cxf-tests/pom.xml
stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/pom.xml
stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/shared-tests/pom.xml
stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/test-utils/pom.xml
stack/cxf/branches/jbossws-cxf-4.3.x/pom.xml
Log:
Preparing for next dev cycle
Modified: stack/cxf/branches/jbossws-cxf-4.3.x/modules/addons/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-4.3.x/modules/addons/pom.xml 2014-09-05 12:32:53 UTC (rev 18915)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/addons/pom.xml 2014-09-05 14:06:52 UTC (rev 18916)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>4.3.1.Final</version>
+ <version>4.3.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-4.3.x/modules/addons/transports/http/httpserver/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-4.3.x/modules/addons/transports/http/httpserver/pom.xml 2014-09-05 12:32:53 UTC (rev 18915)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/addons/transports/http/httpserver/pom.xml 2014-09-05 14:06:52 UTC (rev 18916)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-addons</artifactId>
- <version>4.3.1.Final</version>
+ <version>4.3.2-SNAPSHOT</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-4.3.x/modules/addons/transports/http/undertow/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-4.3.x/modules/addons/transports/http/undertow/pom.xml 2014-09-05 12:32:53 UTC (rev 18915)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/addons/transports/http/undertow/pom.xml 2014-09-05 14:06:52 UTC (rev 18916)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-addons</artifactId>
- <version>4.3.1.Final</version>
+ <version>4.3.2-SNAPSHOT</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-4.3.x/modules/addons/transports/udp/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-4.3.x/modules/addons/transports/udp/pom.xml 2014-09-05 12:32:53 UTC (rev 18915)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/addons/transports/udp/pom.xml 2014-09-05 14:06:52 UTC (rev 18916)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-addons</artifactId>
- <version>4.3.1.Final</version>
+ <version>4.3.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-4.3.x/modules/client/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-4.3.x/modules/client/pom.xml 2014-09-05 12:32:53 UTC (rev 18915)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/client/pom.xml 2014-09-05 14:06:52 UTC (rev 18916)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>4.3.1.Final</version>
+ <version>4.3.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-4.3.x/modules/dist/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-4.3.x/modules/dist/pom.xml 2014-09-05 12:32:53 UTC (rev 18915)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/dist/pom.xml 2014-09-05 14:06:52 UTC (rev 18916)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>4.3.1.Final</version>
+ <version>4.3.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-4.3.x/modules/dist/src/main/distro/ReleaseNotes.txt
===================================================================
--- stack/cxf/branches/jbossws-cxf-4.3.x/modules/dist/src/main/distro/ReleaseNotes.txt 2014-09-05 12:32:53 UTC (rev 18915)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/dist/src/main/distro/ReleaseNotes.txt 2014-09-05 14:06:52 UTC (rev 18916)
@@ -28,6 +28,43 @@
Bug
+ [JBWS-???] - ...
+
+Enhancement
+
+ [JBWS-???] - ...
+
+Feature Request
+
+ [JBWS-???] - ...
+
+Task
+
+ [JBWS-???] - ...
+
+Sub-task
+
+ [JBWS-???] - ...
+
+Errata
+
+ See: https://issues.jboss.org/browse/JBWS-???
+
+This version of "${project.name}" is based on Apache CXF ${cxf.version}
+
+Enjoy,
+The JBossWS Team
+
+
+Previous Releases ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+
+-----------------------
+jbossws-cxf-4.3.1.Final
+-----------------------
+
+Bug
+
* [JBWS-3773] - HttpServletRequest in WebServiceContext and requests with WSA ReplyTo prop set
* [JBWS-3777] - CXF-5645: wsp:Optional isn't adhered to for WS-RM policy in WSDL
* [JBWS-3786] - @Resource injection not working on handlers attached to JAX-WS clients running in-container
@@ -50,14 +87,9 @@
See: https://issues.jboss.org/browse/JBWS-3825
-This version of "${project.name}" is based on Apache CXF ${cxf.version}
+This version of "JBoss Web Services - Stack CXF Distribution" is based on Apache CXF 2.7.12
-Enjoy,
-The JBossWS Team
-
-Previous Releases ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-----------------------
jbossws-cxf-4.3.0.Final
-----------------------
Modified: stack/cxf/branches/jbossws-cxf-4.3.x/modules/endorsed/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-4.3.x/modules/endorsed/pom.xml 2014-09-05 12:32:53 UTC (rev 18915)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/endorsed/pom.xml 2014-09-05 14:06:52 UTC (rev 18916)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>4.3.1.Final</version>
+ <version>4.3.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-4.3.x/modules/jaspi/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-4.3.x/modules/jaspi/pom.xml 2014-09-05 12:32:53 UTC (rev 18915)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/jaspi/pom.xml 2014-09-05 14:06:52 UTC (rev 18916)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>4.3.1.Final</version>
+ <version>4.3.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-4.3.x/modules/resources/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-4.3.x/modules/resources/pom.xml 2014-09-05 12:32:53 UTC (rev 18915)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/resources/pom.xml 2014-09-05 14:06:52 UTC (rev 18916)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>4.3.1.Final</version>
+ <version>4.3.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-4.3.x/modules/server/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-4.3.x/modules/server/pom.xml 2014-09-05 12:32:53 UTC (rev 18915)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/server/pom.xml 2014-09-05 14:06:52 UTC (rev 18916)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>4.3.1.Final</version>
+ <version>4.3.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/cxf-spring-tests/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/cxf-spring-tests/pom.xml 2014-09-05 12:32:53 UTC (rev 18915)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/cxf-spring-tests/pom.xml 2014-09-05 14:06:52 UTC (rev 18916)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>4.3.1.Final</version>
+ <version>4.3.2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/cxf-tests/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/cxf-tests/pom.xml 2014-09-05 12:32:53 UTC (rev 18915)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/cxf-tests/pom.xml 2014-09-05 14:06:52 UTC (rev 18916)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>4.3.1.Final</version>
+ <version>4.3.2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/pom.xml 2014-09-05 12:32:53 UTC (rev 18915)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/pom.xml 2014-09-05 14:06:52 UTC (rev 18916)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>4.3.1.Final</version>
+ <version>4.3.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/shared-tests/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/shared-tests/pom.xml 2014-09-05 12:32:53 UTC (rev 18915)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/shared-tests/pom.xml 2014-09-05 14:06:52 UTC (rev 18916)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>4.3.1.Final</version>
+ <version>4.3.2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/test-utils/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/test-utils/pom.xml 2014-09-05 12:32:53 UTC (rev 18915)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/test-utils/pom.xml 2014-09-05 14:06:52 UTC (rev 18916)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>4.3.1.Final</version>
+ <version>4.3.2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-4.3.x/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-4.3.x/pom.xml 2014-09-05 12:32:53 UTC (rev 18915)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/pom.xml 2014-09-05 14:06:52 UTC (rev 18916)
@@ -32,7 +32,7 @@
<description>JBossWS CXF stack</description>
- <version>4.3.1.Final</version>
+ <version>4.3.2-SNAPSHOT</version>
<!-- Parent -->
<parent>
@@ -43,9 +43,9 @@
<!-- Source Control Management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossws/stack/cxf/tags/jbossws-cxf...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossws/stack/cxf/tags/jbossws-cxf-4....</developerConnection>
- <url>http://fisheye.jboss.com/viewrep/JBossWS/stack/cxf/tags/jbossws-cxf-4.3.1...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossws/stack/cxf/branches/jbossws...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossws/stack/cxf/branches/jbossws-cx...</developerConnection>
+ <url>http://fisheye.jboss.com/viewrep/JBossWS/stack/cxf/branches/jbossws-cxf-4...</url>
</scm>
<!-- Modules -->
10 years, 3 months