You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ro...@apache.org on 2022/07/26 10:29:21 UTC

[activemq-artemis] branch new-logging updated (b9bef72a17 -> 7f8ab2b8de)

This is an automated email from the ASF dual-hosted git repository.

robbie pushed a change to branch new-logging
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git


    from b9bef72a17 Verifying JMX Security and setting up javax.management.builder.initial before Log4J starts its own JMX
     new ad705fa008 add artemis-unit-test-support dep to various modules that have tests, avoid stacktrace on not finding appender from shared logging config
     new 7f8ab2b8de add note about e2e-test fixups needed

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 TODO-new-logging.txt                       | 1 +
 artemis-cdi-client/pom.xml                 | 6 ++++++
 artemis-dto/pom.xml                        | 6 ++++++
 artemis-jakarta-service-extensions/pom.xml | 6 ++++++
 artemis-jms-client/pom.xml                 | 6 ++++++
 5 files changed, 25 insertions(+)


[activemq-artemis] 02/02: add note about e2e-test fixups needed

Posted by ro...@apache.org.
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 7f8ab2b8de2be38c3d27d765b1a0f22712de09a9
Author: Robbie Gemmell <ro...@apache.org>
AuthorDate: Tue Jul 26 11:28:57 2022 +0100

    add note about e2e-test fixups needed
---
 TODO-new-logging.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/TODO-new-logging.txt b/TODO-new-logging.txt
index c872caeb36..a700274062 100644
--- a/TODO-new-logging.txt
+++ b/TODO-new-logging.txt
@@ -1,5 +1,6 @@
 TODOs not explicitly noted in the code itself already:
 
+- Update e2e-tests instance logging config and scripts/profiles
 - Remove JBL use from many integration-tests etc tests still using it
 - Fix stacktraces of generated exceptions not to include the generated 'logmessage' method creating it.
 - Remove references to wildfly-common in scripts and profiles and cli commands


[activemq-artemis] 01/02: add artemis-unit-test-support dep to various modules that have tests, avoid stacktrace on not finding appender from shared logging config

Posted by ro...@apache.org.
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 <ro...@apache.org>
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>