Author: asoldano
Date: 2014-09-05 08:32:12 -0400 (Fri, 05 Sep 2014)
New Revision: 18914
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/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:
- Prepare for tagging jbossws-cxf-4.3.1.Final
- backport [JBWS-3790]
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 09:52:13 UTC
(rev 18913)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/addons/pom.xml 2014-09-05 12:32:12 UTC
(rev 18914)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>4.3.1-SNAPSHOT</version>
+ <version>4.3.1.Final</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
09:52:13 UTC (rev 18913)
+++
stack/cxf/branches/jbossws-cxf-4.3.x/modules/addons/transports/http/httpserver/pom.xml 2014-09-05
12:32:12 UTC (rev 18914)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-addons</artifactId>
- <version>4.3.1-SNAPSHOT</version>
+ <version>4.3.1.Final</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
09:52:13 UTC (rev 18913)
+++
stack/cxf/branches/jbossws-cxf-4.3.x/modules/addons/transports/http/undertow/pom.xml 2014-09-05
12:32:12 UTC (rev 18914)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-addons</artifactId>
- <version>4.3.1-SNAPSHOT</version>
+ <version>4.3.1.Final</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
09:52:13 UTC (rev 18913)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/addons/transports/udp/pom.xml 2014-09-05
12:32:12 UTC (rev 18914)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-addons</artifactId>
- <version>4.3.1-SNAPSHOT</version>
+ <version>4.3.1.Final</version>
<relativePath>../../pom.xml</relativePath>
</parent>
@@ -33,4 +33,27 @@
</dependency>
</dependencies>
+ <profiles>
+ <profile>
+ <id>exclude-udp-unit-tests</id>
+ <activation>
+ <property>
+ <name>exclude-udp-tests</name>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <excludes combine.children="append">
+
<exclude>org/jboss/wsf/stack/cxf/addons/transports/udp/UDPTransportTest*</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
</project>
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 09:52:13 UTC
(rev 18913)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/client/pom.xml 2014-09-05 12:32:12 UTC
(rev 18914)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>4.3.1-SNAPSHOT</version>
+ <version>4.3.1.Final</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 09:52:13 UTC (rev
18913)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/dist/pom.xml 2014-09-05 12:32:12 UTC (rev
18914)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>4.3.1-SNAPSHOT</version>
+ <version>4.3.1.Final</version>
<relativePath>../../pom.xml</relativePath>
</parent>
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 09:52:13 UTC
(rev 18913)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/endorsed/pom.xml 2014-09-05 12:32:12 UTC
(rev 18914)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>4.3.1-SNAPSHOT</version>
+ <version>4.3.1.Final</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 09:52:13 UTC
(rev 18913)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/jaspi/pom.xml 2014-09-05 12:32:12 UTC
(rev 18914)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>4.3.1-SNAPSHOT</version>
+ <version>4.3.1.Final</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 09:52:13 UTC
(rev 18913)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/resources/pom.xml 2014-09-05 12:32:12 UTC
(rev 18914)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>4.3.1-SNAPSHOT</version>
+ <version>4.3.1.Final</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 09:52:13 UTC
(rev 18913)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/server/pom.xml 2014-09-05 12:32:12 UTC
(rev 18914)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>4.3.1-SNAPSHOT</version>
+ <version>4.3.1.Final</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
09:52:13 UTC (rev 18913)
+++
stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/cxf-spring-tests/pom.xml 2014-09-05
12:32:12 UTC (rev 18914)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>4.3.1-SNAPSHOT</version>
+ <version>4.3.1.Final</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
09:52:13 UTC (rev 18913)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/cxf-tests/pom.xml 2014-09-05
12:32:12 UTC (rev 18914)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>4.3.1-SNAPSHOT</version>
+ <version>4.3.1.Final</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 09:52:13 UTC
(rev 18913)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/pom.xml 2014-09-05 12:32:12 UTC
(rev 18914)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>4.3.1-SNAPSHOT</version>
+ <version>4.3.1.Final</version>
<relativePath>../../pom.xml</relativePath>
</parent>
@@ -963,6 +963,31 @@
</profile>
<!--
+ Name: exclude-udp-integration-tests
+ Descr: Additional exclusions of integration tests which require a network environment
properly setup for UDP tests
+ -->
+ <profile>
+ <id>exclude-udp-integration-tests</id>
+ <activation>
+ <property>
+ <name>exclude-udp-tests</name>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <excludes combine.children="append">
+
<exclude>org/jboss/test/ws/jaxws/cxf/udp/UDPEndpointAPITestCase*</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!--
Name: no-jboss-bind-address
Descr: Set the default jboss.bind.address
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
09:52:13 UTC (rev 18913)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/shared-tests/pom.xml 2014-09-05
12:32:12 UTC (rev 18914)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>4.3.1-SNAPSHOT</version>
+ <version>4.3.1.Final</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
09:52:13 UTC (rev 18913)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/modules/testsuite/test-utils/pom.xml 2014-09-05
12:32:12 UTC (rev 18914)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>4.3.1-SNAPSHOT</version>
+ <version>4.3.1.Final</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 09:52:13 UTC (rev 18913)
+++ stack/cxf/branches/jbossws-cxf-4.3.x/pom.xml 2014-09-05 12:32:12 UTC (rev 18914)
@@ -32,7 +32,7 @@
<description>JBossWS CXF stack</description>
- <version>4.3.1-SNAPSHOT</version>
+ <version>4.3.1.Final</version>
<!-- Parent -->
<parent>
@@ -43,9 +43,9 @@
<!-- Source Control Management -->
<scm>
-
<
connection>scm:svn:http://anonsvn.jboss.org/repos/jbossws/stack/cxf/tr...
-
<
developerConnection>scm:svn:https://svn.jboss.org/repos/jbossws/stack/...
- <
url>http://fisheye.jboss.com/viewrep/JBossWS/stack/cxf/trunk</url>
+
<
connection>scm:svn:http://anonsvn.jboss.org/repos/jbossws/stack/cxf/ta...
+
<
developerConnection>scm:svn:https://svn.jboss.org/repos/jbossws/stack/...
+
<
url>http://fisheye.jboss.com/viewrep/JBossWS/stack/cxf/tags/jbossws-cx...
</scm>
<!-- Modules -->