From 73b476ec61a9e6cc7e560650cc005771338e25d1 Mon Sep 17 00:00:00 2001 From: Pascal Christoph Date: Tue, 22 Aug 2023 09:46:42 +0200 Subject: [PATCH] Don't exclude SLF4J binding This resolves: SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation (NOP) logger implementation --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 8362d07e..b1d4cdb5 100644 --- a/build.sbt +++ b/build.sbt @@ -16,7 +16,7 @@ libraryDependencies ++= Seq( exclude ("io.netty", "netty"), "com.fasterxml.jackson.core" % "jackson-annotations" % "2.15.1", "com.github.jsonld-java" % "jsonld-java" % "0.4.1", - "com.github.jsonld-java" % "jsonld-java-jena" % "0.4.1" exclude("org.slf4j", "slf4j-log4j12"), + "com.github.jsonld-java" % "jsonld-java-jena" % "0.4.1", "org.apache.jena" % "jena-arq" % "2.9.3", "org.metafacture" % "metamorph" % "5.6.0", "org.metafacture" % "metafacture-elasticsearch" % "5.6.0",