openrdf

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