From 7354557653b6c080efcc5eb8e5be4b1e951fe560 Mon Sep 17 00:00:00 2001 From: rolaca11 Date: Sun, 22 Dec 2019 19:07:12 +0100 Subject: [PATCH 1/2] reaise slf4j-api version number --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7a49602f9..aee4eb774 100644 --- a/pom.xml +++ b/pom.xml @@ -113,7 +113,7 @@ org.slf4j slf4j-api - 1.7.26 + 1.8.0-beta4 From ef97c386270b55a447fc00c14e3f2de05b67b02e Mon Sep 17 00:00:00 2001 From: rolaca11 Date: Sun, 22 Dec 2019 19:08:25 +0100 Subject: [PATCH 2/2] 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; }