You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ma...@apache.org on 2022/10/08 21:11:28 UTC

[logging-log4j2] branch master updated: Add explicit log4j-script dependency in kafka tests

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

mattsicker pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/master by this push:
     new 22143fc91e Add explicit log4j-script dependency in kafka tests
22143fc91e is described below

commit 22143fc91ee48714339b20d94d1b4be31425afd6
Author: Matt Sicker <ma...@apache.org>
AuthorDate: Sat Oct 8 16:10:54 2022 -0500

    Add explicit log4j-script dependency in kafka tests
    
    Signed-off-by: Matt Sicker <ma...@apache.org>
---
 log4j-bom/pom.xml   | 6 ++++++
 log4j-kafka/pom.xml | 5 +++++
 2 files changed, 11 insertions(+)

diff --git a/log4j-bom/pom.xml b/log4j-bom/pom.xml
index c1573afb31..d5b305ac0c 100644
--- a/log4j-bom/pom.xml
+++ b/log4j-bom/pom.xml
@@ -256,6 +256,12 @@
         <artifactId>log4j-plugins-test</artifactId>
         <version>${project.version}</version>
       </dependency>
+      <!-- Script plugins -->
+      <dependency>
+        <groupId>org.apache.logging.log4j</groupId>
+        <artifactId>log4j-script</artifactId>
+        <version>${project.version}</version>
+      </dependency>
       <!-- SLF4J 2.0.x Compatibility API -->
       <dependency>
         <groupId>org.apache.logging.log4j</groupId>
diff --git a/log4j-kafka/pom.xml b/log4j-kafka/pom.xml
index c53cb5237b..814b464715 100644
--- a/log4j-kafka/pom.xml
+++ b/log4j-kafka/pom.xml
@@ -76,6 +76,11 @@
       <artifactId>junit-vintage-engine</artifactId>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-script</artifactId>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
   <build>
     <plugins>