Fix librarymanagement project Id

This commit is contained in:
Filipe Regadas 2019-10-16 19:27:32 +01:00 committed by Eugene Yokota
parent 2bce551450
commit 2e2dee90eb
2 changed files with 3 additions and 3 deletions

View File

@ -692,7 +692,7 @@ lazy val mainProj = (project in file("main"))
addSbtIO,
addSbtUtilLogging,
addSbtLmCore,
addSbtLmImpl,
addSbtLmIvy,
addSbtCompilerInterface,
addSbtZincCompile
)

View File

@ -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))