dependencies - Simple way to add jar URL as dependency in sbt -



dependencies - Simple way to add jar URL as dependency in sbt -

is there way sbt (0.10) declare jar @ url (http://foo.com/bar-1.1.jar) library dependency?

you can specify explicit url jar. if utilize basic configuration include follows

librarydependencies += "slinky" % "slinky" % "2.1" "http://slinky2.googlecode.com/svn/artifacts/2.1/slinky.jar"

as stated in sbt wiki on github url used fallback in case artifact isn't resolved via ivy. more details see paragraph explicit url

jar dependencies sbt

Comments

Popular posts from this blog

java - How to pass parameters between Request-Scoped Controllers? -

string - what is the difference between "some" == "some\0" and strcmp("some","some\0") in c++? -

actionscript 3 - Flex: moving a point with rotation doesnt change the point XY? -