Rename typesafeRelease Resolver

This Resolver had the same name as the typesafe ivy resolver specified
in the launcher boot.properties. It was creating a number of verbose
warnings about having multiple resolvers with the same name. I noticed
that the ivy pattern is slightly different for the boot resolver with
this name. It didn't seem to be causing any problems to have both
resolvers.

Fixes #4839
This commit is contained in:
Ethan Atkins 2019-07-08 19:18:24 -07:00
parent 8413e259e1
commit 9bb88cd342
1 changed files with 2 additions and 1 deletions

View File

@ -3347,7 +3347,8 @@ object Classpaths {
def flatten[T](o: Option[Option[T]]): Option[T] = o flatMap idFun
val sbtIvySnapshots: URLRepository = Resolver.sbtIvyRepo("snapshots")
val typesafeReleases: URLRepository = Resolver.typesafeIvyRepo("releases")
val typesafeReleases: URLRepository =
Resolver.typesafeIvyRepo("releases").withName("typesafe-alt-ivy-releases")
val sbtPluginReleases: URLRepository = Resolver.sbtPluginRepo("releases")
val sbtMavenSnapshots: MavenRepository =
MavenRepository("sbt-maven-snapshot", Resolver.SbtRepositoryRoot + "/" + "maven-snapshots/")