<?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/maven-v4_0_0.xsd">
  <parent>
    <artifactId>apache-stanbol-entityhub-indexing</artifactId>
    <groupId>org.apache.stanbol</groupId>
    <version>0.12.0</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>org.apache.stanbol.entityhub.indexing.freebase</artifactId>
  <name>Apache Stanbol Entityhub Indexing for freebase.com</name>
  <description>This uses the RDF dump of freebase.com to create a index optimised
  to be used with the Stanbol Enhancer</description>
  <licenses>
    <license>
      <name>Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
      <comments>A business-friendly OSS license</comments>
    </license>
  </licenses>
  <scm>
    <connection>scm:svn:http://svn.apache.org/repos/asf/stanbol/tags/apache-stanbol-0.12/entityhub/indexing/freebase</connection>
    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/stanbol/tags/apache-stanbol-0.12/entityhub/indexing/freebase</developerConnection>
    <url>http://stanbol.apache.org</url>
  </scm>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <manifest>
              <addClasspath>true</addClasspath>
              <mainClass>org.apache.stanbol.entityhub.indexing.Main</mainClass>
            </manifest>
          </archive>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <artifactSet>
            <includes>
              <include>*</include>
            </includes>
          </artifactSet>
          <transformers>
            <transformer />
          </transformers>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.rat</groupId>
        <artifactId>apache-rat-plugin</artifactId>
        <configuration>
          <excludes>
            <exclude>src/license/THIRD-PARTY.properties</exclude>
            <exclude>src/main/resources/indexing/config/dbpedia/conf/spellings.txt</exclude>
            <exclude>src/test/resources/indexing/resources/incoming_links.txt</exclude>
            <exclude>dbpedia-3.8/copy_en_values.ldpath</exclude>
            <exclude>src/main/resources/indexing/config/**/*.ldpath</exclude>
            <exclude>src/main/resources/indexing/config/**/*.mappings</exclude>
            <exclude>src/main/resources/indexing/config/**/*.txt</exclude>
            <exclude>src/main/resources/indexing/config/**/*.config</exclude>
          </excludes>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>hamcrest-core</artifactId>
          <groupId>org.hamcrest</groupId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>
</project>

