From 2e2dee90ebff88b7efd4435e9d2dba7fdcfcca02 Mon Sep 17 00:00:00 2001 From: Filipe Regadas Date: Wed, 16 Oct 2019 19:27:32 +0100 Subject: [PATCH] Fix librarymanagement project Id --- build.sbt | 2 +- project/Dependencies.scala | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index e9c291328..26c4b13d1 100644 --- a/build.sbt +++ b/build.sbt @@ -692,7 +692,7 @@ lazy val mainProj = (project in file("main")) addSbtIO, addSbtUtilLogging, addSbtLmCore, - addSbtLmImpl, + addSbtLmIvy, addSbtCompilerInterface, addSbtZincCompile ) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 225a23ee3..4d3458e7e 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -93,8 +93,8 @@ object Dependencies { def addSbtLmCore(p: Project): Project = addSbtModule(p, sbtLmPath, "lmCore", libraryManagementCore) - def addSbtLmImpl(p: Project): Project = - addSbtModule(p, sbtLmPath, "lmImpl", libraryManagementIvy) + def addSbtLmIvy(p: Project): Project = + addSbtModule(p, sbtLmPath, "lmIvy", libraryManagementIvy) def addSbtLmIvyTest(p: Project): Project = addSbtModule(p, sbtLmPath, "lmIvy", libraryManagementIvy, Some(Test))