From 4d0b23ab6f7ef3eab3459c2b7f1021e4d9b4e68e Mon Sep 17 00:00:00 2001 From: Ross Nicoll Date: Thu, 1 Sep 2016 11:12:59 +0100 Subject: [PATCH] Add log4j-web to node Add log4j-web to node so it stops complaining that it's running in a web environment without that option. Longer term we may want to split the web parts into their own optional extra for node, but for now I think this is a sensible solution. --- node/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/node/build.gradle b/node/build.gradle index 9f88be7593..1cfe685209 100644 --- a/node/build.gradle +++ b/node/build.gradle @@ -41,6 +41,7 @@ dependencies { // Log4J: logging framework (with SLF4J bindings) compile "org.apache.logging.log4j:log4j-slf4j-impl:${log4j_version}" compile "org.apache.logging.log4j:log4j-core:${log4j_version}" + compile "org.apache.logging.log4j:log4j-web:${log4j_version}" compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"