Questions tagged [banana-rdf]

Banana-rdf is a Scala library for working with RDF.

Banana-rdf is a Scala library for working with RDF.

4 questions
12
votes
1 answer

Can multi-projects from GIT be used as SBT dependencies?

I would like to use banana-rdf in my project, ideally by defining it as a dependency in a build.scala using dependsOn: lazy val root = Project("root", file(".")) dependsOn RootProject(uri("git://github.com/w3c/banana-rdf")) However, banana-rdf is a…
Lawrence Wagerfield
  • 6,471
  • 5
  • 42
  • 84
5
votes
2 answers

SBT dependsOn RootProject: doesn't compile the dependency

I have a pretty simple configuration: //lazy val bananaRdfProject = RootProject( uri("git://github.com:stample/banana-rdf.git#"+bananaGitBranch) ) // lazy val bananaRdfProject = RootProject(…
Sebastien Lorber
  • 89,644
  • 67
  • 288
  • 419
2
votes
1 answer

Working with banana-rdf

Does anyone have an example on how to properly integrate banana-rdf into a project? Based on the example on how to use a SPARQL engine, I have tried to set up something for my project, but I get an error that I don't know how to resolve. import…
MaatDeamon
  • 9,532
  • 9
  • 60
  • 127
0
votes
1 answer

Can't get the banana-rdf to work with scalajs

From my understanding I should be able to use the banana-rdf library in my scalajs code? I followed the instructions on the website and added the following to my build.sbt: val banana = (name: String) => "org.w3" %% name % "0.8.4" excludeAll…
user79074
  • 4,937
  • 5
  • 29
  • 57