mirror of https://github.com/sbt/sbt.git
Tentative fix for dependency-management/mvn-local
This commit is contained in:
parent
5557de4fe4
commit
3d12d81a2b
|
|
@ -4,7 +4,8 @@ def commonSettings: Seq[Def.Setting[_]] =
|
|||
dependencyCacheDirectory := (baseDirectory in LocalRootProject).value / "dependency",
|
||||
scalaVersion := "2.10.4",
|
||||
organization in ThisBuild := "org.example",
|
||||
version in ThisBuild := "1.0-SNAPSHOT"
|
||||
version in ThisBuild := "1.0-SNAPSHOT",
|
||||
resolvers += Resolver.file("old-local", file(sys.props("user.home") + "/.ivy2/local"))
|
||||
)
|
||||
|
||||
lazy val main = project.
|
||||
|
|
|
|||
Loading…
Reference in New Issue