Skip to content

Commit

Permalink
[WFLY-5609] Upgrade Artemis to 1.1.0.wildlfy.008
Browse files Browse the repository at this point in the history
* use the artifact artemis-hqclient-protocol for HornetQ core
  compatibility from Artemis client

JIRA: https://issues.jboss.org/browse/WFLY-5609
  • Loading branch information
jmesnil committed Oct 30, 2015
1 parent f65108b commit 39cf010
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/jms/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<!-- required to allow Artemis client to connect to HornetQ servers -->
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>artemis-hornetq-protocol</artifactId>
<artifactId>artemis-hqclient-protocol</artifactId>
</dependency>

<dependency>
Expand Down
11 changes: 11 additions & 0 deletions feature-pack/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1577,6 +1577,17 @@
</exclusions>
</dependency>

<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>artemis-hqclient-protocol</artifactId>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>artemis-jms-client</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
<artifact name="${org.apache.activemq:artemis-cli}"/>
<artifact name="${org.apache.activemq:artemis-commons}"/>
<artifact name="${org.apache.activemq:artemis-dto}"/>
<artifact name="${org.apache.activemq:artemis-hqclient-protocol}"/>
<artifact name="${org.apache.activemq:artemis-journal}"/>
<artifact name="${org.apache.activemq:artemis-jms-client}"/>
<artifact name="${org.apache.activemq:artemis-jms-server}"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ public void deActivate() {
jmsServer.start();
} catch(StartException e){
throw e;
} catch (Exception e) {
throw MessagingLogger.ROOT_LOGGER.failedToStartService(e);
} catch (Throwable t) {
throw MessagingLogger.ROOT_LOGGER.failedToStartService(t);
} finally {
WildFlySecurityManager.setCurrentContextClassLoaderPrivileged(oldTccl);
}
Expand Down
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<version.jsoup>1.8.3</version.jsoup>
<version.net.jcip>1.0</version.net.jcip>
<version.net.shibboleth.utilities.java-support>7.1.1</version.net.shibboleth.utilities.java-support>
<version.org.apache.activemq.artemis>1.1.0.wildfly.007</version.org.apache.activemq.artemis>
<version.org.apache.activemq.artemis>1.1.0.wildfly-008</version.org.apache.activemq.artemis>
<version.org.apache.avro>1.7.6</version.org.apache.avro>
<version.org.apache.cxf>3.1.2-jbossorg-2</version.org.apache.cxf>
<version.org.apache.cxf.xjcplugins>3.0.3</version.org.apache.cxf.xjcplugins>
Expand Down Expand Up @@ -1797,6 +1797,12 @@
<version>${version.org.apache.activemq.artemis}</version>
</dependency>

<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>artemis-hqclient-protocol</artifactId>
<version>${version.org.apache.activemq.artemis}</version>
</dependency>

<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>artemis-selector</artifactId>
Expand Down

0 comments on commit 39cf010

Please sign in to comment.