From 8c4fe42c58b948acb93c0d9418c3cf1df43da431 Mon Sep 17 00:00:00 2001 From: Rahul Mahadev Date: Tue, 22 Oct 2019 19:11:51 -0700 Subject: [PATCH] [SC-24892] Add typesafe bintray repo for sbt-mima-plugin ## What changes were proposed in this pull request? Adding the `typesafe` bintray repo for `sbt-mima-plugin` since the old `sbt-mima-plugin` was removed. ## How was this patch tested? Run the usual tests Closes #6744 from rahulsmahadev/mimaFix. Lead-authored-by: Rahul Mahadev Co-authored-by: Shixiong Zhu Signed-off-by: Rahul Mahadev GitOrigin-RevId: 9cbdca25128b010f488b880a9cf7f39db89f3b2c --- build/sbt-config/repositories | 1 + project/plugins.sbt | 3 +++ 2 files changed, 4 insertions(+) diff --git a/build/sbt-config/repositories b/build/sbt-config/repositories index dcac6f66c19..f398fda1cea 100644 --- a/build/sbt-config/repositories +++ b/build/sbt-config/repositories @@ -7,5 +7,6 @@ typesafe-ivy-releases: https://repo.typesafe.com/typesafe/ivy-releases/, [organization]/[module]/[revision]/[type]s/[artifact](-[classifier]).[ext], bootOnly sbt-ivy-snapshots: https://repo.scala-sbt.org/scalasbt/ivy-snapshots/, [organization]/[module]/[revision]/[type]s/[artifact](-[classifier]).[ext], bootOnly sbt-plugin-releases: https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/, [organization]/[module]/(scala_[scalaVersion]/)(sbt_[sbtVersion]/)[revision]/[type]s/[artifact](-[classifier]).[ext] + bintray-typesafe-sbt-plugin-releases: https://dl.bintray.com/typesafe/sbt-plugins/, [organization]/[module]/(scala_[scalaVersion]/)(sbt_[sbtVersion]/)[revision]/[type]s/[artifact](-[classifier]).[ext] bintray-spark-packages: https://dl.bintray.com/spark-packages/maven/ typesafe-releases: http://repo.typesafe.com/typesafe/releases/ diff --git a/project/plugins.sbt b/project/plugins.sbt index acc946c3552..b5afbf66725 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -38,3 +38,6 @@ addSbtPlugin("com.eed3si9n" % "sbt-unidoc" % "0.4.2") addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.3.0") addSbtPlugin("com.simplytyped" % "sbt-antlr4" % "0.7.13") + +resolvers += Resolver.url("typesafe sbt-plugins", + url("https://dl.bintray.com/typesafe/sbt-plugins"))(Resolver.ivyStylePatterns)