blob: c7d7db3e79483de35122388968095daea0802cc9 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
license agreements. See the NOTICE file distributed with this work for additional
information regarding copyright ownership. The ASF licenses this file to
You under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of
the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
OF ANY KIND, either express or implied. See the License for the specific
language governing permissions and limitations under the License. -->
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.stanbol</groupId>
<artifactId>apache-stanbol-enhancement-engines</artifactId>
<version>0.10.1-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<groupId>org.apache.stanbol</groupId>
<artifactId>org.apache.stanbol.enhancer.engines.dbpspotlight</artifactId>
<version>0.10.1-SNAPSHOT</version>
<packaging>bundle</packaging>
<name>Apache Stanbol Enhancement Engine : DBPedia Spotlight</name>
<description>
This module provides four Enhancement Engines for the
DBpedia Spotlight RESTful services. This includes the Annotate Engine
- supporting the whole processing workflow as well as a Spotting,
Candidate and Disambiguation Engine that can be used by Users that whant
only to use part of DBpedia Spotlights functionalities within their
own Enhancement Engines.
Users that do not want to send their Content to the public Spotlight
server can also install a local Spotlight server and change the
Configuration of the Engines accordingly.
</description>
<inceptionYear>2012</inceptionYear>
<scm>
<connection>
scm:svn:http://svn.apache.org/repos/asf/stanbol/branches/STANBOL-913/dbpedia-spotlight-annotate
</connection>
<developerConnection>
scm:svn:https://svn.apache.org/repos/asf/stanbol/branches/STANBOL-913/dbpedia-spotlight-annotate
</developerConnection>
<url>http://stanbol.apache.org/</url>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Import-Package>
org.apache.stanbol.enhancer.servicesapi; provide:=true; version="[0.10,0.12)",
org.apache.stanbol.enhancer.servicesapi.impl; provide:=true; version="[0.10,0.12)",
*
</Import-Package>
<Export-Package>
org.apache.stanbol.enhancer.engines.dbpspotlight;version=${project.version}
</Export-Package>
<Private-Package>
org.apache.stanbol.enhancer.engines.dbpspotlight.annotate,
org.apache.stanbol.enhancer.engines.dbpspotlight.candidates,
org.apache.stanbol.enhancer.engines.dbpspotlight.disambiguate,
org.apache.stanbol.enhancer.engines.dbpspotlight.model,
org.apache.stanbol.enhancer.engines.dbpspotlight.spot,
org.apache.stanbol.enhancer.engines.dbpspotlight.utils
</Private-Package>
<!-- configure a dbpedia chain -->
<Install-Path>config</Install-Path>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-scr-plugin</artifactId>
</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/config/org.apache.stanbol.enhancer.chain.weighted.impl.WeightedChain-dbpspotlight.config</exclude>
<!-- AL20 licensed files: See src/test/resources/README -->
<exclude>src/test/resources/en.txt</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency><!-- to ensure deactivation in offline mode -->
<groupId>org.apache.stanbol</groupId>
<artifactId>org.apache.stanbol.commons.stanboltools.offline</artifactId>
<version>0.11.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.stanbol</groupId>
<artifactId>org.apache.stanbol.enhancer.servicesapi</artifactId>
<version>0.10.0</version>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.scr.annotations</artifactId>
</dependency>
<dependency>
<groupId>org.apache.clerezza</groupId>
<artifactId>rdf.core</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<!-- test -->
<dependency>
<groupId>org.apache.stanbol</groupId>
<artifactId>org.apache.stanbol.enhancer.test</artifactId>
<version>0.10.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.stanbol</groupId>
<artifactId>org.apache.stanbol.enhancer.core</artifactId>
<version>0.10.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>