This is an automated email from the ASF dual-hosted git repository.
jinterrante pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil.git
The following commit(s) were added to refs/heads/main by this push:
new 1cf6f32 Use same version for both log4j-api and log4j-core
1cf6f32 is described below
commit 1cf6f32114fa72b9f203935470f5b4e63279e26d
Author: John Interrante <[email protected]>
AuthorDate: Mon Dec 6 16:48:30 2021 -0500
Use same version for both log4j-api and log4j-core
Daffodil's libs contain log4j-api-2.13.2 and log4j-core-2.14.1. They
should contain the same version of both log4j-api and log4j-core.
project/Dependencies.scala: Add log4j-api as well.
DAFFODIL-2602
---
project/Dependencies.scala | 1 +
1 file changed, 1 insertion(+)
diff --git a/project/Dependencies.scala b/project/Dependencies.scala
index 84a0cb3..ff49d1a 100644
--- a/project/Dependencies.scala
+++ b/project/Dependencies.scala
@@ -31,6 +31,7 @@ object Dependencies {
"commons-io" % "commons-io" % "2.11.0",
"com.typesafe" % "config" % "1.4.1",
"org.apache.logging.log4j" %% "log4j-api-scala" % "12.0",
+ "org.apache.logging.log4j" % "log4j-api" % "2.14.1",
"org.apache.logging.log4j" % "log4j-core" % "2.14.1" % "it,test",
)