ARTEMIS-597 Adding Logging manager to a few poms this is making a few tests to show an Exception when they start
Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/ace11835 Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/ace11835 Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/ace11835 Branch: refs/heads/master Commit: ace11835c92cca9ef599f68929b8a597c2e17b58 Parents: b2de7de Author: Clebert Suconic <[email protected]> Authored: Wed Jun 29 16:27:17 2016 -0400 Committer: Clebert Suconic <[email protected]> Committed: Wed Jun 29 16:27:47 2016 -0400 ---------------------------------------------------------------------- artemis-cli/pom.xml | 5 +++++ artemis-core-client/pom.xml | 12 ++++++++++++ 2 files changed, 17 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/ace11835/artemis-cli/pom.xml ---------------------------------------------------------------------- diff --git a/artemis-cli/pom.xml b/artemis-cli/pom.xml index 83ddea9..d4d12d9 100644 --- a/artemis-cli/pom.xml +++ b/artemis-cli/pom.xml @@ -59,6 +59,11 @@ <artifactId>jboss-logging</artifactId> </dependency> <dependency> + <groupId>org.jboss.logmanager</groupId> + <artifactId>jboss-logmanager</artifactId> + <scope>test</scope> + </dependency> + <dependency> <groupId>io.airlift</groupId> <artifactId>airline</artifactId> </dependency> http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/ace11835/artemis-core-client/pom.xml ---------------------------------------------------------------------- diff --git a/artemis-core-client/pom.xml b/artemis-core-client/pom.xml index d445dbf..57bbe85 100644 --- a/artemis-core-client/pom.xml +++ b/artemis-core-client/pom.xml @@ -39,6 +39,18 @@ <optional>true</optional> </dependency> <dependency> + <groupId>org.jboss.logging</groupId> + <artifactId>jboss-logging</artifactId> + <scope>provided</scope> + <optional>true</optional> + </dependency> + <dependency> + <groupId>org.jboss.logmanager</groupId> + <artifactId>jboss-logmanager</artifactId> + <scope>provided</scope> + <optional>true</optional> + </dependency> + <dependency> <groupId>org.jgroups</groupId> <artifactId>jgroups</artifactId> </dependency>
