From 1087c8e10551691cc888c130df7c3cb59ec6be08 Mon Sep 17 00:00:00 2001 From: Dale Wijnand Date: Fri, 1 May 2020 12:32:03 +0100 Subject: [PATCH] Upgrade sbt-whitesource to 0.1.18 Without this Travis CI was failing: https://travis-ci.org/github/sbt/zinc/jobs/671727552 [error] Caused by: java.lang.RuntimeException: Multiple elements for the same key (org.scala-lang.modules,scala-xml_2.12): [error] ModuleInfo(org.scala-lang.modules,scala-xml_2.12,1.2.0,Some((Artifact(scala-xml_2.12, bundle, jar, None, Vector(), Some(https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar), Map(), None, false),/home/travis/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar))) [error] ModuleInfo(org.scala-lang.modules,scala-xml_2.12,1.2.0,Some((Artifact(scala-xml_2.12, bundle, jar, None, Vector(), Some(https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar), Map(), None, false),/home/travis/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar))) [error] at scala.sys.package$.error(package.scala:30) [error] at sbtwhitesource.package$KeyByAndMergeSyntax$.$anonfun$keyByAndMerge$2(package.scala:26) This brings in the following 2 fixes: * https://github.com/lightbend/sbt-whitesource/pull/68 * https://github.com/lightbend/sbt-whitesource/pull/70 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 321d024a0b..cced0a8b30 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -7,6 +7,6 @@ addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.3.7") addSbtPlugin("de.heikoseeberger" % "sbt-header" % "3.0.2") addSbtPlugin("com.thesamet" % "sbt-protoc" % "0.99.26") libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "0.9.3" -addSbtPlugin("com.lightbend" % "sbt-whitesource" % "0.1.16") +addSbtPlugin("com.lightbend" % "sbt-whitesource" % "0.1.18") addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.9.0") addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.6.1")