From commits-return-6218-archive-asf-public=cust-asf.ponee.io@openwhisk.apache.org Thu Nov 15 08:32:29 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id BE441180669 for ; Thu, 15 Nov 2018 08:32:28 +0100 (CET) Received: (qmail 94413 invoked by uid 500); 15 Nov 2018 07:32:27 -0000 Mailing-List: contact commits-help@openwhisk.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@openwhisk.apache.org Delivered-To: mailing list commits@openwhisk.apache.org Received: (qmail 94404 invoked by uid 99); 15 Nov 2018 07:32:27 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Nov 2018 07:32:27 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 464D787F91; Thu, 15 Nov 2018 07:32:27 +0000 (UTC) Date: Thu, 15 Nov 2018 07:32:26 +0000 To: "commits@openwhisk.apache.org" Subject: [incubator-openwhisk] branch master updated: Exclude unused transitive dependencies. (#4110) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <154226714668.31079.13908032032375971152@gitbox.apache.org> From: markusthoemmes@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-openwhisk X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 536ce94af92a9b72ae1b82b16242d2c8177478b0 X-Git-Newrev: b7542c9eff7748d756db0ef4888222def59f80ae X-Git-Rev: b7542c9eff7748d756db0ef4888222def59f80ae X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. markusthoemmes pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk.git The following commit(s) were added to refs/heads/master by this push: new b7542c9 Exclude unused transitive dependencies. (#4110) b7542c9 is described below commit b7542c9eff7748d756db0ef4888222def59f80ae Author: Chetan Mehrotra AuthorDate: Thu Nov 15 13:02:20 2018 +0530 Exclude unused transitive dependencies. (#4110) * Exclude Scala Compiler from dependencies * Remove test dependencies --- common/scala/build.gradle | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/common/scala/build.gradle b/common/scala/build.gradle index 500e322..2e333c5 100644 --- a/common/scala/build.gradle +++ b/common/scala/build.gradle @@ -32,7 +32,10 @@ repositories { dependencies { compile "org.scala-lang:scala-library:${gradle.scala.version}" - compile 'com.github.pureconfig:pureconfig_2.12:0.9.0' + compile ('com.github.pureconfig:pureconfig_2.12:0.9.0') { + exclude group: 'org.scala-lang', module: 'scala-compiler' + exclude group: 'org.scala-lang', module: 'scala-reflect' + } compile 'io.spray:spray-json_2.12:1.3.5' compile 'com.lihaoyi:fastparse_2.12:1.0.0' @@ -69,7 +72,9 @@ dependencies { //tracing support compile 'io.opentracing:opentracing-api:0.31.0' compile 'io.opentracing:opentracing-util:0.31.0' - compile 'io.opentracing.brave:brave-opentracing:0.31.0' + compile ('io.opentracing.brave:brave-opentracing:0.31.0'){ + exclude group: 'io.zipkin.brave', module:'brave-tests' + } compile 'io.zipkin.reporter2:zipkin-sender-okhttp3:2.6.1' compile 'io.zipkin.reporter2:zipkin-reporter:2.6.1'