| <?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- |
| |
| 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"> |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <artifactId>clerezza</artifactId> |
| <groupId>org.apache.clerezza</groupId> |
| <version>0.3-SNAPSHOT</version> |
| <relativePath>../parent</relativePath> |
| </parent> |
| <groupId>org.apache.clerezza.ext</groupId> |
| <artifactId>org.openrdf.sesame</artifactId> |
| <version>0.5-SNAPSHOT</version> |
| <packaging>bundle</packaging> |
| <name>Clerezza Ext - Sesame 2 Libraries</name> |
| <description>Sesame Libraries as OSGi bundle</description> |
| <dependencies> |
| <dependency> |
| <groupId>org.openrdf.sesame</groupId> |
| <artifactId>sesame-repository-sail</artifactId> |
| <version>2.3.2</version> |
| </dependency> |
| <dependency> |
| <groupId>org.openrdf.sesame</groupId> |
| <artifactId>sesame-sail-nativerdf</artifactId> |
| <version>2.3.2</version> |
| </dependency> |
| <dependency> |
| <groupId>org.openrdf.sesame</groupId> |
| <artifactId>sesame-queryparser-api</artifactId> |
| <version>2.3.2</version> |
| </dependency> |
| <dependency> |
| <groupId>org.openrdf.sesame</groupId> |
| <artifactId>sesame-queryresultio-api</artifactId> |
| <version>2.3.2</version> |
| </dependency> |
| <dependency> |
| <groupId>org.openrdf.sesame</groupId> |
| <artifactId>sesame-http-client</artifactId> |
| <version>2.3.2</version> |
| </dependency> |
| <dependency> |
| <groupId>org.openrdf.sesame</groupId> |
| <artifactId>sesame-queryalgebra-evaluation</artifactId> |
| <version>2.3.2</version> |
| </dependency> |
| <dependency> |
| <groupId>org.openrdf.sesame</groupId> |
| <artifactId>sesame-rio-rdfxml</artifactId> |
| <version>2.3.2</version> |
| </dependency> |
| <dependency> |
| <groupId>org.openrdf.sesame</groupId> |
| <artifactId>sesame-rio-n3</artifactId> |
| <version>2.3.2</version> |
| </dependency> |
| <dependency> |
| <groupId>org.openrdf.sesame</groupId> |
| <artifactId>sesame-rio-turtle</artifactId> |
| <version>2.3.2</version> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-jdk14</artifactId> |
| <version>1.6.1</version> |
| <scope>runtime</scope> |
| </dependency> |
| </dependencies> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>maven-bundle-plugin</artifactId> |
| <extensions>true</extensions> |
| <configuration> |
| <instructions> |
| <Embed-Dependency>*;scope=compile|runtime</Embed-Dependency> |
| <Embed-Transitive>true</Embed-Transitive> |
| <Export-Package> |
| org.openrdf.* |
| </Export-Package> |
| <Import-Package> |
| !org.apache.commons.*, |
| !org.openrdf.*, |
| * |
| </Import-Package> |
| </instructions> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| <repositories> |
| <repository> |
| <id>aduna</id> |
| <name>Aduna releases</name> |
| <url>http://repo.aduna-software.org/maven2/releases/</url> |
| </repository> |
| </repositories> |
| </project> |