blob: 8fe7681f891ca7f8819392e011dd759574f79675 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.apache.commons</groupId>
<artifactId>commons-parent</artifactId>
<version>37</version>
<relativePath />
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>commons-rdf</groupId>
<artifactId>commons-rdf-impl-sparql</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Apache Commons RDF SPARQL backed implementation.</name>
<description>An implementation of the rdf commons API backed by a sparql
endpoint. STATUS: Incomplete, currecnt code only supports reading
graphs and does not yet support BlankNodes.</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<commons.encoding>UTF-8</commons.encoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.4</version>
</dependency>
<dependency>
<groupId>commons-rdf</groupId>
<artifactId>commons-rdf-api</artifactId>
<version>0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>commons-rdf</groupId>
<artifactId>commons-rdf-impl-utils</artifactId>
<version>0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-fuseki</artifactId>
<version>1.1.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>