<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>com.github.rdfhdt.hdt-java</groupId>
    <artifactId>hdt-java-parent</artifactId>
    <version>v2.1.2</version>
  </parent>
  <groupId>com.github.rdfhdt.hdt-java</groupId>
  <artifactId>hdt-fuseki</artifactId>
  <version>v2.1.2</version>
  <name>HDT Fuseki</name>
  <description>Fuseki SPARQL Endpoint on top of HDT</description>
  <url>https://github.com/rdfhdt/hdt-java</url>
  <inceptionYear>2014</inceptionYear>
  <licenses>
    <license>
      <name>The Apache License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>rdfhdt</id>
      <name>RDF/HDT Compressed RDF Tools</name>
      <email>rdfhdt@gmail.com</email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git://github.com/rdfhdt/hdt-java.git</connection>
    <developerConnection>scm:git://github.com/rdfhdt/hdt-java.git</developerConnection>
    <url>git://github.com/rdfhdt/hdt-java.git</url>
  </scm>
  <properties>
    <jdk.version>${jena-jdk.version}</jdk.version>
  </properties>
  <dependencies>
    <dependency>
      <groupId>com.github.rdfhdt.hdt-java</groupId>
      <artifactId>hdt-jena</artifactId>
      <version>v2.1.2</version>
    </dependency>
    <dependency>
      <groupId>org.apache.jena</groupId>
      <artifactId>jena-arq</artifactId>
    </dependency>
    <dependency>
      <groupId>org.apache.jena</groupId>
      <artifactId>jena-base</artifactId>
    </dependency>
    <dependency>
      <groupId>com.github.rdfhdt.hdt-java</groupId>
      <artifactId>hdt-api</artifactId>
      <version>v2.1.2</version>
    </dependency>
    <dependency>
      <groupId>org.apache.jena</groupId>
      <artifactId>jena-tdb</artifactId>
    </dependency>
    <dependency>
      <groupId>org.apache.jena</groupId>
      <artifactId>jena-core</artifactId>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
    </dependency>
    <dependency>
      <groupId>org.apache.jena</groupId>
      <artifactId>jena-fuseki1</artifactId>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.8</source>
          <target>1.8</target>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <executions>
          <execution>
            <id>make-assembly</id>
            <phase>package</phase>
            <goals>
              <goal>single</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <descriptors>
            <descriptor>src/main/assembly/assembly.xml</descriptor>
          </descriptors>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
