mirror of https://github.com/sbt/sbt.git
Fix librarymanagement project Id
This commit is contained in:
parent
2bce551450
commit
2e2dee90eb
|
|
@ -692,7 +692,7 @@ lazy val mainProj = (project in file("main"))
|
||||||
addSbtIO,
|
addSbtIO,
|
||||||
addSbtUtilLogging,
|
addSbtUtilLogging,
|
||||||
addSbtLmCore,
|
addSbtLmCore,
|
||||||
addSbtLmImpl,
|
addSbtLmIvy,
|
||||||
addSbtCompilerInterface,
|
addSbtCompilerInterface,
|
||||||
addSbtZincCompile
|
addSbtZincCompile
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -93,8 +93,8 @@ object Dependencies {
|
||||||
|
|
||||||
def addSbtLmCore(p: Project): Project =
|
def addSbtLmCore(p: Project): Project =
|
||||||
addSbtModule(p, sbtLmPath, "lmCore", libraryManagementCore)
|
addSbtModule(p, sbtLmPath, "lmCore", libraryManagementCore)
|
||||||
def addSbtLmImpl(p: Project): Project =
|
def addSbtLmIvy(p: Project): Project =
|
||||||
addSbtModule(p, sbtLmPath, "lmImpl", libraryManagementIvy)
|
addSbtModule(p, sbtLmPath, "lmIvy", libraryManagementIvy)
|
||||||
def addSbtLmIvyTest(p: Project): Project =
|
def addSbtLmIvyTest(p: Project): Project =
|
||||||
addSbtModule(p, sbtLmPath, "lmIvy", libraryManagementIvy, Some(Test))
|
addSbtModule(p, sbtLmPath, "lmIvy", libraryManagementIvy, Some(Test))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue