From a5db9e86d71f31af772a807322380adf249c688a Mon Sep 17 00:00:00 2001 From: Ethan Atkins Date: Tue, 9 Jul 2019 13:55:04 -0700 Subject: [PATCH] Rename typesafe release resolver in sbt build I was still seeing a number of warnings in the sbt project itself in spite of 9bb88cd3427cc62d01185c7d356799ac044f766b. This made those go away. --- build.sbt | 2 +- project/NightlyPlugin.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 1b75bd567..1f61a3539 100644 --- a/build.sbt +++ b/build.sbt @@ -62,7 +62,7 @@ def commonSettings: Seq[Setting[_]] = Def.settings( ), scalaVersion := baseScalaVersion, componentID := None, - resolvers += Resolver.typesafeIvyRepo("releases"), + resolvers += Resolver.typesafeIvyRepo("releases").withName("typesafe-sbt-build-ivy-releases"), resolvers += Resolver.sonatypeRepo("snapshots"), resolvers += "bintray-sbt-maven-releases" at "https://dl.bintray.com/sbt/maven-releases/", addCompilerPlugin("org.spire-math" % "kind-projector" % "0.9.4" cross CrossVersion.binary), diff --git a/project/NightlyPlugin.scala b/project/NightlyPlugin.scala index e2d132ba6..7e5b9ca28 100644 --- a/project/NightlyPlugin.scala +++ b/project/NightlyPlugin.scala @@ -23,6 +23,6 @@ object NightlyPlugin extends AutoPlugin { override def projectSettings: Seq[Setting[_]] = Seq( crossVersion in update := CrossVersion.full, - resolvers += Resolver.typesafeIvyRepo("releases") + resolvers += Resolver.typesafeIvyRepo("releases").withName("typesafe-alt-project-releases") ) }