scala - How do I add a dependency to an SBT build file -
i have sbt build file lots of lines this:
"org.apache.mahout" % "mahout-math" % "0.5"
specifying dependencies. have new jar want add dependencies. how figure out "blah" % "blah" % "blah.0" form should write in?
i know basic question. thank in advance help.
if dependency want not available repository can put jar "lib" folder in root of project, otherwise dependency should information (groupid, name, version , repository) of artifact (try searching 'maven' + library name in google).
everything explained in great detail in sbt documentation.
Comments
Post a Comment