-3

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

Joshua Taylor
  • 84,998
  • 9
  • 154
  • 353
testing
  • 183
  • 1
  • 2
  • 6

1 Answers1

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