-
Bug
-
Resolution: Done
-
Minor
-
7.0
-
Weeks 44, 45 (Oct 30-Nov 10)
In the AMQ 7 docs the Maven coordinates for the ActiveMQ core JMS client is wrong. The artifact ID should be "artemis-core-client" not "activemq-core-client".
https://access.redhat.com/documentation/en-us/red_hat_jboss_amq/7.0/html-single/using_amq_broker/
22.5. CLIENT OR EMBEDDED SERVER LOGGING
Firstly, if you want to enable logging on the client side you need to include the JBoss logging jars in your library. If you are using maven add the following dependencies.
<dependency>
<groupId>org.jboss.logmanager</groupId>
<artifactId>jboss-logmanager</artifactId>
<version>1.5.3.Final</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-core-client</artifactId>
<version>1.0.0.Final</version>
</dependency>
Note that it seems that the upstream doc is also incorrect.