dubeejw closed pull request #3154: Avoid packaging log4j dependencies in invoker
URL: https://github.com/apache/incubator-openwhisk/pull/3154
This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:
As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):
diff --git a/core/invoker/build.gradle b/core/invoker/build.gradle
index 4a9ceff902..15993f8293 100644
--- a/core/invoker/build.gradle
+++ b/core/invoker/build.gradle
@@ -15,7 +15,11 @@ dependencies {
compile project(':common:scala')
compile 'org.apache.curator:curator-recipes:4.0.0', { exclude group:
'org.apache.zookeeper', module:'zookeeper' }
- compile 'org.apache.zookeeper:zookeeper:3.4.11'
+ compile ('org.apache.zookeeper:zookeeper:3.4.11') {
+ exclude group: 'org.slf4j'
+ exclude group: 'log4j'
+ exclude group: 'jline'
+ }
}
tasks.withType(ScalaCompile) {
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services