LinkedDataFragments / Client.Java

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

Duplicate Jena dependency? #1

Closed egonw closed 9 years ago

egonw commented 9 years ago

The pom.xml seems to depend on two Jena versions:

<dependency>
          <groupId>org.apache.jena</groupId>
          <artifactId>apache-jena-libs</artifactId>
          <type>pom</type>
          <version>2.10.1</version>
      </dependency>

      <dependency>
          <groupId>com.hp.hpl.jena</groupId>
          <artifactId>jena</artifactId>
          <version>2.6.4</version>
      </dependency>

Is that correct?

RubenVerborgh commented 9 years ago

That seems likely incorrect, thanks for spotting.

egonw commented 9 years ago

Pull request https://github.com/LinkedDataFragments/Client.Java/pull/2 addresses this, as part of a Apache Jena version update.

RubenVerborgh commented 9 years ago

Thanks, will follow up there then!