how to use CSPARQL-ReadyToGoPack-0.9 in a SBT project

爱⌒轻易说出口 提交于 2019-12-14 03:31:38

问题


I want to use the CSPARQL-ReadyToGoPack-0.9 in an SBT project. I'm on Linux. How can I do that?


回答1:


In your build script you probably need to specify an artifact explicitly for the dependency (the module id parameters are jus):

import sbt._ import Keys._

libraryDependencies += 
  "foo" % "bar" % "0.1" artifacts Artifact("foo", url("file:/path/to/jar"))


来源:https://stackoverflow.com/questions/32274826/how-to-use-csparql-readytogopack-0-9-in-a-sbt-project

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!