Merge pull request #3964 from sbt/1.1.x

1.1.x
This commit is contained in:
eugene yokota
2018-02-21 15:12:44 -05:00
committed by GitHub
3 changed files with 118 additions and 68 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ object Dependencies {
def addSbtModule(p: Project, path: Option[String], projectName: String, m: ModuleID) =
path match {
case Some(f) => p dependsOn ProjectRef(file(f), projectName)
case None => p settings (libraryDependencies += m)
case None => p settings (libraryDependencies += m, dependencyOverrides += m)
}
def addSbtIO(p: Project): Project = addSbtModule(p, sbtIoPath, "io", sbtIO)