This is an automated email from the ASF dual-hosted git repository. clebertsuconic pushed a commit to branch new-logging in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
commit 3a1ae3d310702f28130c033d8e389f5f28dc94db Author: Robbie Gemmell <[email protected]> AuthorDate: Mon Jul 11 17:44:15 2022 +0100 add some deps needed/used already, look into test failure --- artemis-protocols/artemis-amqp-protocol/pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/artemis-protocols/artemis-amqp-protocol/pom.xml b/artemis-protocols/artemis-amqp-protocol/pom.xml index ff5a9bc3b8..d7f9251052 100644 --- a/artemis-protocols/artemis-amqp-protocol/pom.xml +++ b/artemis-protocols/artemis-amqp-protocol/pom.xml @@ -56,6 +56,11 @@ <!-- Superfluous, except for osgi manifest handling --> <optional>true</optional> </dependency> + <dependency> + <groupId>org.apache.activemq</groupId> + <artifactId>artemis-log-facade</artifactId> + <version>${project.version}</version> + </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> @@ -107,6 +112,11 @@ <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.apache.activemq</groupId> + <artifactId>artemis-unit-test-support</artifactId> + <version>${project.version}</version> + </dependency> </dependencies> </project>
