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
Post a Comment