blob: 6187c3ad404cf0ad1b030d46c22557d27126e6d5 [file] [log] [blame]
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.gsoc.freebase</groupId>
<artifactId>gsoc-freebase-disambiguation-engine</artifactId>
<version>1.0-SNAPSHOT</version>
<name>Freebase Disambiguation Engine</name>
<description>Freebase Disambiguation Engine which makes use of the Graph generated by the gsoc-freebase-importer to disambiguate entities in the Stanbol Enhancer Chain</description>
<!-- Developers -->
<developers>
<developer>
<name>Antonio David Perez Morales</name>
<email>adperezmorales@gmail.com</email>
<id>adpm</id>
</developer>
</developers>
<!-- Properties -->
<properties>
<stanbol.version>0.10.0</stanbol.version>
<stanbol.snapshotversion>0.10.0-SNAPSHOT</stanbol.snapshotversion>
<felix.version>1.6.0</felix.version>
<blueprints.version>2.3.0</blueprints.version>
</properties>
<!-- Dependencies -->
<dependencies>
<!-- Stanbol dependencies -->
<dependency>
<groupId>org.apache.stanbol</groupId>
<artifactId>org.apache.stanbol.enhancer.servicesapi</artifactId>
<version>${stanbol.version}</version>
</dependency>
<dependency>
<groupId>org.apache.stanbol</groupId>
<artifactId>org.apache.stanbol.enhancer.test</artifactId>
<version>${stanbol.version}</version>
</dependency>
<dependency>
<groupId>org.apache.stanbol</groupId>
<artifactId>org.apache.stanbol.enhancer.engine.disambiguation.mlt</artifactId>
<version>${stanbol.snapshotversion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.scr.annotations</artifactId>
<version>${felix.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.tinkerpop.blueprints</groupId>
<artifactId>blueprints-core</artifactId>
<version>2.3.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.tinkerpop.blueprints</groupId>
<artifactId>blueprints-neo4j-graph</artifactId>
<version>${blueprints.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.tinkerpop.blueprints</groupId>
<artifactId>blueprints-graph-jung</artifactId>
<version>${blueprints.version}</version>
<scope>compile</scope>
</dependency>
<!-- Guava Dependency -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>14.0.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugin</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<!-- Enable this for including your --> <!-- enhancement chain configuration --> <!-- <Install-Path>config</Install-Path> -->
<Export-Package>
org.apache.stanbol.enhancer.engine.disambiguation.freebase*;version=${project.version}
</Export-Package>
<Import-Package>com.google.common.collect;version="13.0.1",
*;resolution:="optional"</Import-Package>
<!-- <Embed-Dependency>*;scope=compile;inline=true;artifactId=!neo4j|!org.codehaus|!org.apache.stanbol.enhancer.engine.disambiguation.mlt</Embed-Dependency>
<Embed-Directory>lib/</Embed-Directory> <Embed-Transitive>true</Embed-Transitive>
<Include-Resource>{maven-dependencies}</Include-Resource> -->
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-scr-plugin</artifactId>
<executions>
<execution>
<id>generate-scr-scrdescriptor</id>
<goals>
<goal>scr</goal>
</goals>
<configuration>
<properties>
<service.vendor>gsoc-freebase-disambiguation-engine</service.vendor>
</properties>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<!-- Plugins Management -->
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.7</version>
<inherited>true</inherited>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
<instructions>
<Bundle-DocURL>http://stanbol.apache.org</Bundle-DocURL>
<Bundle-Vendor>gsoc</Bundle-Vendor>
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
<_versionpolicy>$${version;===;${@}}</_versionpolicy>
</instructions>
</configuration>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
<execution>
<id>bundle-bundle</id>
<phase>package</phase>
<goals>
<goal>bundle</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-scr-plugin</artifactId>
<version>1.7.4</version>
<executions>
<execution>
<id>generate-scr-scrdescriptor</id>
<goals>
<goal>scr</goal>
</goals>
<configuration>
<properties>
<service.vendor>gsoc-freebase-disambiguation-engine</service.vendor>
</properties>
</configuration>
</execution>
</executions>
</plugin>
<!--This plugin's configuration is used to store Eclipse m2e settings
only. It has no influence on the Maven build itself. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.felix</groupId>
<artifactId>
maven-scr-plugin
</artifactId>
<versionRange>
[1.7.4,)
</versionRange>
<goals>
<goal>scr</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<!-- End Plugins Management -->
</build>
</project>