Skip to content

Commit

Permalink
Fixed paths to local Maven repo
Browse files Browse the repository at this point in the history
  • Loading branch information
Axel Fontaine committed Jun 4, 2013
1 parent a849374 commit 6e66dba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flyway-sample/build.sbt
Expand Up @@ -14,7 +14,7 @@ libraryDependencies ++= Seq(
)

resolvers += (
"Local Maven Repository" at "file://"+Path.userHome.absolutePath+"/.m2/repository"
"Local Maven Repository" at Path.userHome.asFile.toURI.toURL + ".m2/repository"
)

seq(flywaySettings: _*)
Expand Down
2 changes: 1 addition & 1 deletion flyway-sbt-plugin/project/FlywayPluginBuild.scala
Expand Up @@ -34,7 +34,7 @@ object FlywayPluginBuild extends Build {
version := flywayVersion,
crossScalaVersions := Seq("2.9.1", "2.9.2", "2.9.3", "2.10.1"),
resolvers += (
"Local Maven Repository" at "file://"+Path.userHome.absolutePath+"/.m2/repository"
"Local Maven Repository" at Path.userHome.asFile.toURI.toURL + ".m2/repository"
),
libraryDependencies += "com.googlecode.flyway" % "flyway-core" % flywayVersion
)
Expand Down

0 comments on commit 6e66dba

Please sign in to comment.