| <?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>5-SNAPSHOT</version> |
| <relativePath>../../parent</relativePath> |
| </parent> |
| |
| <groupId>org.apache.stanbol</groupId> |
| <artifactId>org.apache.stanbol.rules.web</artifactId> |
| <version>1.0.0-SNAPSHOT</version> |
| <packaging>bundle</packaging> |
| |
| <name>Apache Stanbol Rules Web</name> |
| <description>Apache Stanbol Rules HTTP endpoints.</description> |
| |
| <scm> |
| <connection> |
| scm:svn:http://svn.apache.org/repos/asf/stanbol/trunk/rules/web |
| </connection> |
| <developerConnection> |
| scm:svn:https://svn.apache.org/repos/asf/stanbol/trunk/rules/web |
| </developerConnection> |
| <url>http://stanbol.apache.org/</url> |
| </scm> |
| |
| <build> |
| <!-- make it an OSGi bundle --> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>maven-scr-plugin</artifactId> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>maven-bundle-plugin</artifactId> |
| <extensions>true</extensions> |
| <configuration> |
| <instructions> |
| <!-- Export-Package> |
| org.apache.stanbol.rules.web.* |
| </Export-Package --> |
| <Import-Package> |
| !org.apache.felix.http.jetty, |
| !org.mortbay.jetty.*, |
| javax.servlet.*; version="[2.5.0,4.0.0)", |
| javax.ws.rs.*; version="[2.0,3)", |
| org.apache.stanbol.commons.web.base; provide:=true, |
| * |
| </Import-Package> |
| <Private-Package> |
| org.apache.stanbol.rules.web; version=${project.version}, |
| org.apache.stanbol.rules.web.resources; version=${project.version}, |
| org.apache.stanbol.rules.web.writers; version=${project.version} |
| </Private-Package> |
| </instructions> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.rat</groupId> |
| <artifactId>apache-rat-plugin</artifactId> |
| <configuration> |
| <excludes> |
| <!-- AL20 License --> |
| <exclude>src/license/THIRD-PARTY.properties</exclude> |
| |
| <!-- MIT License --> |
| <exclude>src/main/resources/META-INF/resources/static/rules/jquery/jquery-1.6.1</exclude> |
| </excludes> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <dependencies> |
| <!-- Stanbol --> |
| <dependency> |
| <groupId>org.apache.stanbol</groupId> |
| <artifactId>org.apache.stanbol.commons.web.base</artifactId> |
| <version>1.0.0-SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.stanbol</groupId> |
| <artifactId>org.apache.stanbol.commons.web.viewable</artifactId> |
| <version>1.0.0-SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.stanbol</groupId> |
| <artifactId>org.apache.stanbol.rules.manager</artifactId> |
| <version>1.0.0-SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.stanbol</groupId> |
| <artifactId>org.apache.stanbol.rules.refactor</artifactId> |
| <version>1.0.0-SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.stanbol</groupId> |
| <artifactId>org.apache.stanbol.rules.base</artifactId> |
| <version>1.0.0-SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.stanbol</groupId> |
| <artifactId>org.apache.stanbol.commons.owl</artifactId> |
| <version>1.0.0-SNAPSHOT</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.hp.hpl.jena</groupId> |
| <artifactId>jena</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>commons-io</groupId> |
| <artifactId>commons-io</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>commons-lang</groupId> |
| <artifactId>commons-lang</artifactId> |
| </dependency> |
| <!-- |
| <dependency> |
| <groupId>com.sun.jersey</groupId> |
| <artifactId>jersey-server</artifactId> |
| <version>1.15</version> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.sun.jersey</groupId> |
| <artifactId>jersey-core</artifactId> |
| <version>1.15</version> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.sun.jersey.contribs</groupId> |
| <artifactId>jersey-multipart</artifactId> |
| <version>1.15</version> |
| <scope>compile</scope> |
| </dependency> |
| --> |
| |
| <!-- OSGi tax --> |
| <dependency> |
| <groupId>org.osgi</groupId> |
| <artifactId>org.osgi.core</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.osgi</groupId> |
| <artifactId>org.osgi.compendium</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>org.apache.felix.scr.annotations</artifactId> |
| </dependency> |
| |
| <!-- Clerezza --> |
| <dependency> |
| <groupId>org.apache.clerezza</groupId> |
| <artifactId>rdf.core</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.clerezza</groupId> |
| <artifactId>jaxrs.utils</artifactId> |
| </dependency> |
| |
| <!-- Tests --> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| </dependency> |
| |
| </dependencies> |
| |
| </project> |