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 20:50:50 UTC

[logging-log4j2] 01/02: Fix module-info.java PluginService reference

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

commit d7a74f138794457b3a14bfd6f050d69711ecd6d5
Author: Matt Sicker <ma...@apache.org>
AuthorDate: Sat Oct 8 15:49:04 2022 -0500

    Fix module-info.java PluginService reference
    
    Signed-off-by: Matt Sicker <ma...@apache.org>
---
 log4j-jul/src/test/java/module-info.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/log4j-jul/src/test/java/module-info.java b/log4j-jul/src/test/java/module-info.java
index 764f4036d3..db3a0aa361 100644
--- a/log4j-jul/src/test/java/module-info.java
+++ b/log4j-jul/src/test/java/module-info.java
@@ -27,5 +27,5 @@ module org.apache.logging.log4j.jul.test {
 
     requires junit;
 
-    provides org.apache.logging.log4j.plugins.processor.PluginService with org.apache.logging.log4j.jul.test.plugins.Log4jPlugins;
-}
\ No newline at end of file
+    provides org.apache.logging.log4j.plugins.model.PluginService with org.apache.logging.log4j.jul.test.plugins.Log4jPlugins;
+}