From 7bb934ff8cee911902a32b14ef2f7d3a68bcc698 Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Fri, 2 Oct 2015 02:35:31 -0400 Subject: [PATCH] fix scripted dependency-management/cache-update --- sbt/src/main/scala/Import.scala | 1 + sbt/src/sbt-test/dependency-management/cache-update/build.sbt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/sbt/src/main/scala/Import.scala b/sbt/src/main/scala/Import.scala index f3744a5a8..7a5d9be3c 100644 --- a/sbt/src/main/scala/Import.scala +++ b/sbt/src/main/scala/Import.scala @@ -358,6 +358,7 @@ object Import { type GetClassifiersModule = sbt.internal.librarymanagement.GetClassifiersModule val IfMissing = sbt.internal.librarymanagement.IfMissing type IfMissing = sbt.internal.librarymanagement.IfMissing + type ModuleSettings = sbt.internal.librarymanagement.ModuleSettings val InlineConfiguration = sbt.internal.librarymanagement.InlineConfiguration type InlineConfiguration = sbt.internal.librarymanagement.InlineConfiguration val InlineConfigurationWithExcludes = sbt.internal.librarymanagement.InlineConfigurationWithExcludes diff --git a/sbt/src/sbt-test/dependency-management/cache-update/build.sbt b/sbt/src/sbt-test/dependency-management/cache-update/build.sbt index d5aaa21f3..f56cb3b95 100644 --- a/sbt/src/sbt-test/dependency-management/cache-update/build.sbt +++ b/sbt/src/sbt-test/dependency-management/cache-update/build.sbt @@ -15,7 +15,7 @@ lazy val root = (project in file(".")). check := { import Cache._, CacheIvy.updateIC implicit val updateCache = updateIC - type In = IvyConfiguration :+: UpdateConfiguration :+: HNil + type In = IvyConfiguration :+: ModuleSettings :+: UpdateConfiguration :+: HNil val s = (streams in update).value val cacheFile = s.cacheDirectory / updateCacheName.value val module = ivyModule.value