blob: 339cd66175fc4524d7cbfbfef1c9039ae0840bfe [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>stanbol-parent</artifactId>
<version>6-SNAPSHOT</version>
<relativePath>../../../parent</relativePath>
</parent>
<artifactId>org.apache.stanbol.commons.marmotta.kiwi</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>bundle</packaging>
<name>Marmotta Kiwi Repository Service</name>
<description>
Provides the Kiwi TripleStore as OSGI service
</description>
<inceptionYear>2014</inceptionYear>
<!-- properties>
<sling.url>http://localhost:8180/system/console</sling.url>
</properties -->
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Export-Package>
</Export-Package>
<!-- Allow the use of Kiwi Triplestore spcific APIs -->
<_exportcontents>
org.apache.marmotta.kiwi.*;version=${marmotta-version}
</_exportcontents>
<Private-Package>
org.apache.stanbol.commons.marmotta.kiwi;version=${project.version}
</Private-Package>
<Embed-Dependency>
kiwi-triplestore, kiwi-sparql,
marmotta-util-tripletable,
kiwi-caching-infinispan, kiwi-caching-hazelcast,
kiwi-caching-ehcache,
marmotta-model-vocabs,
tomcat-jdbc, tomcat-juli, postgresql
</Embed-Dependency>
<!-- DynamicImport-Package is needed for
* Infinispan to load different cache implementations
* Loading data base drivers with class for name
-->
<DynamicImport-Package>*</DynamicImport-Package>
<!-- NOTE: all Cache implementations are optional -->
<Import-Package>
!javax.microedition,
!org.apache.felix.scrplugin,
!javax.swing,
com.google.common.*;version="[14,18)",
org.hibernate.*;resolution:=optional,
com.thoughtworks.qdox;resolution:=optional,
javax.inject;resolution:=optional,
javax.transaction.*;resolution:=optional,
net.sf.ehcache*;resolution:=optional,
org.infinispan*;resolution:=optional,
org.jboss.marshalling*;resolution:=optional,
com.hazelcast.*;resolution:=optional,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-scr-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.marmotta</groupId>
<artifactId>kiwi-triplestore</artifactId>
</dependency>
<dependency>
<groupId>org.apache.marmotta</groupId>
<artifactId>marmotta-util-tripletable</artifactId>
</dependency>
<dependency>
<groupId>org.apache.marmotta</groupId>
<artifactId>kiwi-sparql</artifactId>
</dependency>
<!-- Caching dependencies -->
<!-- The marmotta caching implementations are requred and embedded
the Caching frameworks and their dependencies are marked as
optional. Users will need to make those available if they want
to use the according caching dependency. (see also the
marmotta kiwirepository bundlelist
-->
<dependency>
<groupId>org.apache.marmotta</groupId>
<artifactId>kiwi-caching-infinispan</artifactId>
</dependency>
<dependency>
<groupId>org.apache.marmotta</groupId>
<artifactId>kiwi-caching-ehcache</artifactId>
</dependency>
<dependency>
<groupId>org.apache.marmotta</groupId>
<artifactId>kiwi-caching-hazelcast</artifactId>
</dependency>
<dependency>
<groupId>org.apache.marmotta</groupId>
<artifactId>marmotta-model-vocabs</artifactId>
</dependency>
<dependency>
<groupId>org.openrdf.sesame</groupId>
<artifactId>sesame-repository-sail</artifactId>
</dependency>
<dependency>
<groupId>org.openrdf.sesame</groupId>
<artifactId>sesame-repository-contextaware</artifactId>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.2-1003-jdbc4</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-jdbc</artifactId>
<version>7.0.50</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-juli</artifactId>
<version>7.0.50</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.scr.annotations</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>