LinkedDataFragments / Client.Java

A Triple Pattern Fragments client for Java (Jena)
MIT License
8 stars 10 forks source link

provide support for latest Jena version #5

Closed m1ci closed 9 years ago

m1ci commented 9 years ago

Currently, the client is dependent on apache-jena-libs version 2.10.1 which unfortunately does not support JSON-LD. Is it possible that you update to the client to some higher Jena version higher than 2.12.0?

The current dependency:

      <dependency>
          <groupId>org.apache.jena</groupId>
          <artifactId>apache-jena-libs</artifactId>
          <type>pom</type>
          <version>2.10.1</version>
      </dependency>
RubenVerborgh commented 9 years ago

Sure! Would you mind doing a pull request?

m1ci commented 9 years ago

cool, actually some fixes should be done in the code, e.g. ReorderTransformationBase does not exist anymore in higher Jena versions ...

Will try to fix them, and let you know.

m1ci commented 9 years ago

made some changes to support Jena 2.13.0 and it works to me. The pull request here: https://github.com/LinkedDataFragments/Client.Java/pull/6

RubenVerborgh commented 9 years ago

Thanks!