I want to use the CSPARQL-ReadyToGoPack-0.9 in an SBT project. I'm on Linux. How can I do that?
Asked
Active
Viewed 54 times
1 Answers
0
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"))

Sascha Kolberg
- 7,092
- 1
- 31
- 37