Skip to content
This repository has been archived by the owner on Sep 18, 2021. It is now read-only.

Commit

Permalink
make sbt do what robey intended
Browse files Browse the repository at this point in the history
managedDependencyPath wasn't the right key to have a separate ivy cache
for ant's ivy and sbt's... the right one is ivyCacheDirectory.
  • Loading branch information
Ed Ceaser committed Apr 20, 2010
1 parent 94d143b commit 38b2b04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@ kestrel/*
lib_managed/
src_managed/
project/boot/
.ivy2cache
4 changes: 2 additions & 2 deletions project/build/Flockdb.scala
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import sbt._
import Process._
import java.io.File

class FlockdbProject(info: ProjectInfo) extends DefaultProject(info) {
override def dependencyPath = "lib"
override def disableCrossPaths = true

override def managedDependencyPath = ".ivy2cache"
override def ivyCacheDirectory = Some(Path.fromFile(new File(System.getProperty("user.home"))) / ".ivy2-sbt" ##)

val jbossRepository = "jboss" at "http://repository.jboss.org/maven2/"
val lagRepository = "lag.net" at "http://www.lag.net/repo/"
Expand Down

0 comments on commit 38b2b04

Please sign in to comment.