From f4ae03802362ca51ab9a85799caf120d5141559f Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Fri, 24 Aug 2018 06:25:40 -0400 Subject: [PATCH] Fix single repo emulation script Fixes #4330 Ref https://github.com/sbt/zinc/commit/5b179a2611c48ac928239d1ec003b536e5c5e02a#diff-fdc3abdfd754eeb24090dbd90aeec2ce --- project/Dependencies.scala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 936f975c3..ca205d673 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -81,13 +81,13 @@ object Dependencies { def addSbtLmIvy(p: Project): Project = addSbtModule(p, sbtLmPath, "lmIvy", libraryManagementIvy) def addSbtCompilerInterface(p: Project): Project = - addSbtModule(p, sbtZincPath, "compilerInterface", compilerInterface) + addSbtModule(p, sbtZincPath, "compilerInterface212", compilerInterface) def addSbtCompilerClasspath(p: Project): Project = - addSbtModule(p, sbtZincPath, "zincClasspath", compilerClasspath) + addSbtModule(p, sbtZincPath, "zincClasspath212", compilerClasspath) def addSbtCompilerApiInfo(p: Project): Project = - addSbtModule(p, sbtZincPath, "zincApiInfo", compilerApiInfo) + addSbtModule(p, sbtZincPath, "zincApiInfo212", compilerApiInfo) def addSbtCompilerBridge(p: Project): Project = - addSbtModule(p, sbtZincPath, "compilerBridge", compilerBridge) + addSbtModule(p, sbtZincPath, "compilerBridge212", compilerBridge) def addSbtCompilerIvyIntegration(p: Project): Project = addSbtModule(p, sbtZincPath, "zincIvyIntegration", compilerIvyIntegration) def addSbtZinc(p: Project): Project = addSbtModule(p, sbtZincPath, "zinc", zinc)