From ef97c386270b55a447fc00c14e3f2de05b67b02e Mon Sep 17 00:00:00 2001 From: rolaca11 Date: Sun, 22 Dec 2019 19:08:25 +0100 Subject: [PATCH] Update module-info.java change slf4j module, to represent the designed module name, instead of the artifact name --- pcap4j-core/src/main/java/module-info.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcap4j-core/src/main/java/module-info.java b/pcap4j-core/src/main/java/module-info.java index 21728b8b3..53c652371 100644 --- a/pcap4j-core/src/main/java/module-info.java +++ b/pcap4j-core/src/main/java/module-info.java @@ -14,7 +14,7 @@ // These transitive modifiers are needed to avoid weird surefire errors // during pcap4j-packetfactory-* testing (due to maybe surefire's bug). requires transitive com.sun.jna; - requires transitive slf4j.api; + requires transitive org.slf4j; uses org.pcap4j.packet.factory.PacketFactoryBinderProvider; }