mirror of https://github.com/sbt/sbt.git
Merge pull request #4331 from eed3si9n/wip/allfix
Fix single repo emulation script
This commit is contained in:
commit
4c3cd4e535
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue