my build.sbt
has
libraryDependencies += "org.fusesource.scalate" % "scalate-core" % "1.6.1" from "http://repo.fusesource.com/nexus/content/repositories/public/org/fusesource/scalate/"
resolvers += "FuseSource Public Repository" at "http://repo.fusesource.com/nexus/content/repositories/public"
i ran
$ sbt update
which successfully downloaded everything cf
[info] downloading http://repo.fusesource.com/nexus/content/repositories/public/org/fusesource/scalate/ ...
[info] [SUCCESSFUL ] org.fusesource.scalate#scalate-core;1.6.1!scalate-core.com/nexus/content/repositories/public/org/fusesource/scalate/ (617ms)
but when i try to use it
$ sbt console
> import org.fusesource
the transitive dependencies hawtjni
and jansi
are in scope, but not scalate
what am i doing wrong?
UPDATE:
i checked for ~/.ivy2/cache/org.fusesource.scalate/
, it exists.
ANSWER:
solved by sbt 0.11.1 doesn't retrieve scalatra 2.1.0-SNAPSHOT dependency
nuke
~/.ivy2
and/or~/.sbt
and/or~/.m2
... i should've checked one dir at a time, or subdirs, but i'm itching to write my bitcoin price monitor ;)