Fixed issue with file URL to embedded repository on Windows.
This commit is contained in:
parent
92b71dc4b7
commit
50b8f55f6d
3 changed files with 5 additions and 4 deletions
|
|
@ -35,6 +35,7 @@
|
|||
-------------------------------------------------------------------------------*/
|
||||
|
||||
import sbt._
|
||||
import java.io.File
|
||||
import java.util.jar.Attributes
|
||||
|
||||
class AkkaParent(info: ProjectInfo) extends DefaultProject(info) {
|
||||
|
|
@ -60,7 +61,7 @@ class AkkaParent(info: ProjectInfo) extends DefaultProject(info) {
|
|||
|
||||
// ------------------------------------------------------------
|
||||
// repositories
|
||||
val embeddedrepo = "embedded repo" at "file://" + akkaHome + "/embedded-repo"
|
||||
val embeddedrepo = "embedded repo" at new File(akkaHome, "embedded-repo").toURI.toString
|
||||
val sunjdmk = "sunjdmk" at "http://wp5.e-taxonomy.eu/cdmlib/mavenrepo"
|
||||
val databinder = "DataBinder" at "http://databinder.net/repo"
|
||||
val configgy = "Configgy" at "http://www.lag.net/repo"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue