Author: asoldano
Date: 2014-10-16 06:44:29 -0400 (Thu, 16 Oct 2014)
New Revision: 18991
Modified:
container/jboss72/tags/jbossws-jboss720-4.3.1.Final/pom.xml
container/jboss72/tags/jbossws-jboss720-4.3.1.Final/server-integration/pom.xml
container/jboss72/tags/jbossws-jboss720-4.3.1.Final/tests-integration/pom.xml
container/jboss72/tags/jbossws-jboss720-4.3.1.Final/tests-integration/src/main/java/org/jboss/as/webservices/deployer/RemoteDeployer.java
Log:
Applying fix for allowing restarting resource services upon https connector removal and
setting versions for new 4.3.1.Final tag
Modified: container/jboss72/tags/jbossws-jboss720-4.3.1.Final/pom.xml
===================================================================
--- container/jboss72/tags/jbossws-jboss720-4.3.1.Final/pom.xml 2014-10-16 10:36:45 UTC
(rev 18990)
+++ container/jboss72/tags/jbossws-jboss720-4.3.1.Final/pom.xml 2014-10-16 10:44:29 UTC
(rev 18991)
@@ -35,13 +35,13 @@
<description>JBossWS JBoss AS 7.2.0.Final Integration Parent</description>
<groupId>org.jboss.ws</groupId>
<artifactId>jbossws-jboss720-parent</artifactId>
- <version>4.3.0.Final</version>
+ <version>4.3.1.Final</version>
<packaging>pom</packaging>
<scm>
-
<
connection>scm:svn:http://anonsvn.jboss.org/repos/jbossws/container/jb...
-
<
developerConnection>scm:svn:https://svn.jboss.org/repos/jbossws/contai...
-
<
url>http://fisheye.jboss.com/viewrep/JBossWS/container/jboss72/tags/jb...
+
<
connection>scm:svn:http://anonsvn.jboss.org/repos/jbossws/container/jb...
+
<
developerConnection>scm:svn:https://svn.jboss.org/repos/jbossws/contai...
+
<
url>http://fisheye.jboss.com/viewrep/JBossWS/container/jboss72/tags/jb...
</scm>
<modules>
Modified: container/jboss72/tags/jbossws-jboss720-4.3.1.Final/server-integration/pom.xml
===================================================================
---
container/jboss72/tags/jbossws-jboss720-4.3.1.Final/server-integration/pom.xml 2014-10-16
10:36:45 UTC (rev 18990)
+++
container/jboss72/tags/jbossws-jboss720-4.3.1.Final/server-integration/pom.xml 2014-10-16
10:44:29 UTC (rev 18991)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.jboss.ws</groupId>
<artifactId>jbossws-jboss720-parent</artifactId>
- <version>4.3.0.Final</version>
+ <version>4.3.1.Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: container/jboss72/tags/jbossws-jboss720-4.3.1.Final/tests-integration/pom.xml
===================================================================
---
container/jboss72/tags/jbossws-jboss720-4.3.1.Final/tests-integration/pom.xml 2014-10-16
10:36:45 UTC (rev 18990)
+++
container/jboss72/tags/jbossws-jboss720-4.3.1.Final/tests-integration/pom.xml 2014-10-16
10:44:29 UTC (rev 18991)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.jboss.ws</groupId>
<artifactId>jbossws-jboss720-parent</artifactId>
- <version>4.3.0.Final</version>
+ <version>4.3.1.Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified:
container/jboss72/tags/jbossws-jboss720-4.3.1.Final/tests-integration/src/main/java/org/jboss/as/webservices/deployer/RemoteDeployer.java
===================================================================
---
container/jboss72/tags/jbossws-jboss720-4.3.1.Final/tests-integration/src/main/java/org/jboss/as/webservices/deployer/RemoteDeployer.java 2014-10-16
10:36:45 UTC (rev 18990)
+++
container/jboss72/tags/jbossws-jboss720-4.3.1.Final/tests-integration/src/main/java/org/jboss/as/webservices/deployer/RemoteDeployer.java 2014-10-16
10:44:29 UTC (rev 18991)
@@ -291,6 +291,7 @@
public void removeHttpsConnector() throws Exception {
try {
ModelNode op =
createOpNode("subsystem=web/connector=jbws-test-https-connector", REMOVE);
+ op.get(OPERATION_HEADERS).get(ALLOW_RESOURCE_SERVICE_RESTART).set(true);
applyUpdate(op);
} finally {
httpsConnSemaphore.release();