This is an automated email from the ASF dual-hosted git repository. robbie pushed a commit to branch new-logging in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
commit ad705fa00847550be8c9f6a6951dbe6192dbee3d Author: Robbie Gemmell <[email protected]> AuthorDate: Tue Jul 26 11:23:26 2022 +0100 add artemis-unit-test-support dep to various modules that have tests, avoid stacktrace on not finding appender from shared logging config --- artemis-cdi-client/pom.xml | 6 ++++++ artemis-dto/pom.xml | 6 ++++++ artemis-jakarta-service-extensions/pom.xml | 6 ++++++ artemis-jms-client/pom.xml | 6 ++++++ 4 files changed, 24 insertions(+) diff --git a/artemis-cdi-client/pom.xml b/artemis-cdi-client/pom.xml index c3c819f627..b13e4546c4 100644 --- a/artemis-cdi-client/pom.xml +++ b/artemis-cdi-client/pom.xml @@ -104,6 +104,12 @@ <groupId>org.jboss.arquillian.junit</groupId> <artifactId>arquillian-junit-container</artifactId> </dependency> + <dependency> + <groupId>org.apache.activemq</groupId> + <artifactId>artemis-unit-test-support</artifactId> + <version>${project.version}</version> + <scope>test</scope> + </dependency> </dependencies> <profiles> <profile> diff --git a/artemis-dto/pom.xml b/artemis-dto/pom.xml index 2634dd3595..8cb36015f3 100644 --- a/artemis-dto/pom.xml +++ b/artemis-dto/pom.xml @@ -69,6 +69,12 @@ <artifactId>junit</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.apache.activemq</groupId> + <artifactId>artemis-unit-test-support</artifactId> + <version>${project.version}</version> + <scope>test</scope> + </dependency> </dependencies> <build> diff --git a/artemis-jakarta-service-extensions/pom.xml b/artemis-jakarta-service-extensions/pom.xml index 88d61a3766..c4d4dc1ff4 100644 --- a/artemis-jakarta-service-extensions/pom.xml +++ b/artemis-jakarta-service-extensions/pom.xml @@ -83,6 +83,12 @@ <groupId>org.jgroups</groupId> <artifactId>jgroups</artifactId> </dependency> + <dependency> + <groupId>org.apache.activemq</groupId> + <artifactId>artemis-unit-test-support</artifactId> + <version>${project.version}</version> + <scope>test</scope> + </dependency> </dependencies> diff --git a/artemis-jms-client/pom.xml b/artemis-jms-client/pom.xml index 2909047948..b0adc47a1d 100644 --- a/artemis-jms-client/pom.xml +++ b/artemis-jms-client/pom.xml @@ -74,6 +74,12 @@ <artifactId>junit</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.apache.activemq</groupId> + <artifactId>artemis-unit-test-support</artifactId> + <version>${project.version}</version> + <scope>test</scope> + </dependency> </dependencies> <profiles>
