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

59 Views Asked by At

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

1

There are 1 best solutions below

0
Sascha Kolberg On

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"))