You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stanbol.apache.org by sf...@apache.org on 2011/04/06 13:34:15 UTC

svn commit: r1089406 [1/2] - in /incubator/stanbol/trunk: reasoners/ reasoners/base/ reasoners/hermit/ reasoners/owllink/ reasoners/web/ reengineer/base/ reengineer/db/ reengineer/web/ reengineer/xerces/ reengineer/xml/

Author: sfermigier
Date: Wed Apr  6 11:34:15 2011
New Revision: 1089406

URL: http://svn.apache.org/viewvc?rev=1089406&view=rev
Log:
Format POMs.


Modified:
    incubator/stanbol/trunk/reasoners/base/pom.xml
    incubator/stanbol/trunk/reasoners/hermit/pom.xml
    incubator/stanbol/trunk/reasoners/owllink/pom.xml
    incubator/stanbol/trunk/reasoners/pom.xml
    incubator/stanbol/trunk/reasoners/web/pom.xml
    incubator/stanbol/trunk/reengineer/base/pom.xml
    incubator/stanbol/trunk/reengineer/db/pom.xml
    incubator/stanbol/trunk/reengineer/web/pom.xml
    incubator/stanbol/trunk/reengineer/xerces/pom.xml
    incubator/stanbol/trunk/reengineer/xml/pom.xml

Modified: incubator/stanbol/trunk/reasoners/base/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/base/pom.xml?rev=1089406&r1=1089405&r2=1089406&view=diff
==============================================================================
--- incubator/stanbol/trunk/reasoners/base/pom.xml (original)
+++ incubator/stanbol/trunk/reasoners/base/pom.xml Wed Apr  6 11:34:15 2011
@@ -1,245 +1,245 @@
 <?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.
-	-->
+<!--
+    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">
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
-	<modelVersion>4.0.0</modelVersion>
+  <modelVersion>4.0.0</modelVersion>
 
-	<parent>
-		<groupId>org.apache.stanbol</groupId>
-		<artifactId>stanbol-parent</artifactId>
-		<version>0.9-SNAPSHOT</version>
-		<relativePath>../../parent</relativePath>
-	</parent>
-
-	<groupId>org.apache.stanbol</groupId>
-	<artifactId>org.apache.stanbol.reasoners.base</artifactId>
-	<packaging>bundle</packaging>
-
-	<name>Apache Stanbol Reasoners</name>
-	<description>
-		The base module containing the essentials 
-		for reasoning service invocation.
-	</description>
-
-	<inceptionYear>2010</inceptionYear>
-
-	<build>
-		<plugins>
-			<plugin>
-				<groupId>org.apache.felix</groupId>
-				<artifactId>maven-bundle-plugin</artifactId>
-				<extensions>true</extensions>
-				<configuration>
-					<instructions>
-						<Export-Package>
-							org.apache.stanbol.reasoners.base.*;version=${stanbol-version}
-	          			</Export-Package>
-						<Import-Package>
-							com.hp.hpl.jena.*,
-							org.semanticweb.owlapi.owllink.*,
-							org.slf4j.*;version=1.5.2,
-							org.semanticweb.HermiT.*,
-							uk.ac.manchester.cs.owl.owlapi,
-							org.semanticweb.owlapi.*,
-							*
-            			</Import-Package>
-						<_nouses>true</_nouses>
-					</instructions>
-				</configuration>
-			</plugin>
-			<plugin>
-				<groupId>org.apache.felix</groupId>
-				<artifactId>maven-scr-plugin</artifactId>
-			</plugin>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<configuration>
-					<source>1.6</source>
-					<target>1.6</target>
-				</configuration>
-			</plugin>
-		</plugins>
-	</build>
-
-	<dependencies>
-
-		<!-- OSGi deps -->
-		<dependency>
-			<groupId>org.apache.felix</groupId>
-			<artifactId>org.apache.felix.scr.annotations</artifactId>
-			<version>1.2.0</version>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.felix</groupId>
-			<artifactId>org.osgi.core</artifactId>
-			<version>1.4.0</version>
-		</dependency>
-		<dependency>
-			<groupId>com.ibm.icu</groupId>
-			<artifactId>icu4j</artifactId>
-			<version>3.4.4</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>javax.servlet</groupId>
-			<artifactId>servlet-api</artifactId>
-			<version>2.4</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>xerces</groupId>
-			<artifactId>xercesImpl</artifactId>
-			<version>2.7.1</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.lucene</groupId>
-			<artifactId>lucene-core</artifactId>
-			<version>3.0.1</version>
-			<scope>provided</scope>
-		</dependency>
-
-		<!-- OWL deps -->
-		<dependency>
-			<groupId>owlapi</groupId>
-			<artifactId>owlapi</artifactId>
-			<version>3.0.0</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>owl-link</groupId>
-			<artifactId>owl-link</artifactId>
-			<version>1.0.2</version>
-		</dependency>
-		<dependency>
-			<groupId>hermit</groupId>
-			<artifactId>hermit</artifactId>
-			<version>1.2.4</version>
-		</dependency>
-		<dependency>
-			<groupId>com.hp.hpl.jena</groupId>
-			<artifactId>arq</artifactId>
-			<version>2.8.3</version>
-			<scope>provided</scope>
-		</dependency>
-		
-		<!-- Clerezza deps -->
-		<dependency>
-			<groupId>org.apache.clerezza</groupId>
-			<artifactId>org.apache.clerezza.rdf.core</artifactId>
-			<version>0.12-incubating-SNAPSHOT</version>
-			<scope>provided</scope>
-		</dependency>
-
-		<!-- Stanbol deps -->
-		<dependency>
-			<groupId>org.apache.stanbol</groupId>
-			<artifactId>org.apache.stanbol.owl</artifactId>
-			<version>${stanbol-version}</version>
-			<exclusions>
-				<exclusion>
-					<artifactId>slf4j-log4j12</artifactId>
-					<groupId>org.slf4j</groupId>
-				</exclusion>
-			</exclusions>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.stanbol</groupId>
-			<artifactId>org.apache.stanbol.ontologymanager.ontonet</artifactId>
-			<version>${stanbol-version}</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.stanbol</groupId>
-			<artifactId>org.apache.stanbol.rules.base</artifactId>
-			<version>${stanbol-version}</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.stanbol</groupId>
-			<artifactId>org.apache.stanbol.rules.refactor</artifactId>
-			<version>${stanbol-version}</version>
-			<scope>provided</scope>
-		</dependency>
-
-		<!-- Diagnostics deps -->
-		<dependency>
-			<groupId>org.slf4j</groupId>
-			<artifactId>slf4j-api</artifactId>
-			<version>1.5.2</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>log4j</groupId>
-			<artifactId>log4j</artifactId>
-			<version>1.2.13</version>
-			<scope>provided</scope>
-		</dependency>
-
-		<!-- Testing deps -->
-		<dependency>
-			<groupId>junit</groupId>
-			<artifactId>junit</artifactId>
-			<version>4.4</version>
-			<scope>test</scope>
-			<exclusions>
-				<exclusion>
-					<groupId>org.slf4j</groupId>
-					<artifactId>slf4j-api</artifactId>
-				</exclusion>
-			</exclusions>
-		</dependency>
-		<dependency>
-			<groupId>org.slf4j</groupId>
-			<artifactId>slf4j-simple</artifactId>
-			<version>1.5.2</version>
-			<scope>test</scope>
-		</dependency>
-	 <dependency>
-	  <groupId>org.osgi</groupId>
-	  <artifactId>org.osgi.compendium</artifactId>
-	  <version>4.0.1</version>
-	  <type>jar</type>
-	 </dependency>
-	</dependencies>
-
-	<repositories>
-                <repository>
-                    <id>stlab-cnr-repo</id>
-                    <url>http://stlab.istc.cnr.it/software/maven/repo</url>
-                </repository>
-		<repository>
-			<id>com.hp.hpl.jena</id>
-			<name>jena maven repository</name>
-			<releases>
-				<updatePolicy>interval:60</updatePolicy>
-				<checksumPolicy>warn</checksumPolicy>
-			</releases>
-			<url>http://openjena.org/repo</url>
-			<layout>default</layout>
-		</repository>
-		<!-- needed for jersey -->
-		<repository>
-			<id>maven2-repository.dev.java.net</id>
-			<name>Java.net Repository for Maven</name>
-			<url>http://download.java.net/maven/2/</url>
-		</repository>
-	</repositories>
+  <parent>
+    <groupId>org.apache.stanbol</groupId>
+    <artifactId>stanbol-parent</artifactId>
+    <version>0.9-SNAPSHOT</version>
+    <relativePath>../../parent</relativePath>
+  </parent>
+
+  <groupId>org.apache.stanbol</groupId>
+  <artifactId>org.apache.stanbol.reasoners.base</artifactId>
+  <packaging>bundle</packaging>
+
+  <name>Apache Stanbol Reasoners</name>
+  <description>
+    The base module containing the essentials
+    for reasoning service invocation.
+  </description>
+
+  <inceptionYear>2010</inceptionYear>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <extensions>true</extensions>
+        <configuration>
+          <instructions>
+            <Export-Package>
+              org.apache.stanbol.reasoners.base.*;version=${stanbol-version}
+            </Export-Package>
+            <Import-Package>
+              com.hp.hpl.jena.*,
+              org.semanticweb.owlapi.owllink.*,
+              org.slf4j.*;version=1.5.2,
+              org.semanticweb.HermiT.*,
+              uk.ac.manchester.cs.owl.owlapi,
+              org.semanticweb.owlapi.*,
+              *
+            </Import-Package>
+            <_nouses>true</_nouses>
+          </instructions>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-scr-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.6</source>
+          <target>1.6</target>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <dependencies>
+
+    <!-- OSGi deps -->
+    <dependency>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>org.apache.felix.scr.annotations</artifactId>
+      <version>1.2.0</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>org.osgi.core</artifactId>
+      <version>1.4.0</version>
+    </dependency>
+    <dependency>
+      <groupId>com.ibm.icu</groupId>
+      <artifactId>icu4j</artifactId>
+      <version>3.4.4</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>servlet-api</artifactId>
+      <version>2.4</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>xerces</groupId>
+      <artifactId>xercesImpl</artifactId>
+      <version>2.7.1</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-core</artifactId>
+      <version>3.0.1</version>
+      <scope>provided</scope>
+    </dependency>
+
+    <!-- OWL deps -->
+    <dependency>
+      <groupId>owlapi</groupId>
+      <artifactId>owlapi</artifactId>
+      <version>3.0.0</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>owl-link</groupId>
+      <artifactId>owl-link</artifactId>
+      <version>1.0.2</version>
+    </dependency>
+    <dependency>
+      <groupId>hermit</groupId>
+      <artifactId>hermit</artifactId>
+      <version>1.2.4</version>
+    </dependency>
+    <dependency>
+      <groupId>com.hp.hpl.jena</groupId>
+      <artifactId>arq</artifactId>
+      <version>2.8.3</version>
+      <scope>provided</scope>
+    </dependency>
+
+    <!-- Clerezza deps -->
+    <dependency>
+      <groupId>org.apache.clerezza</groupId>
+      <artifactId>org.apache.clerezza.rdf.core</artifactId>
+      <version>0.12-incubating-SNAPSHOT</version>
+      <scope>provided</scope>
+    </dependency>
+
+    <!-- Stanbol deps -->
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.owl</artifactId>
+      <version>${stanbol-version}</version>
+      <exclusions>
+        <exclusion>
+          <artifactId>slf4j-log4j12</artifactId>
+          <groupId>org.slf4j</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.ontologymanager.ontonet</artifactId>
+      <version>${stanbol-version}</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.rules.base</artifactId>
+      <version>${stanbol-version}</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.rules.refactor</artifactId>
+      <version>${stanbol-version}</version>
+      <scope>provided</scope>
+    </dependency>
+
+    <!-- Diagnostics deps -->
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+      <version>1.5.2</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+      <version>1.2.13</version>
+      <scope>provided</scope>
+    </dependency>
+
+    <!-- Testing deps -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.4</version>
+      <scope>test</scope>
+      <exclusions>
+        <exclusion>
+          <groupId>org.slf4j</groupId>
+          <artifactId>slf4j-api</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-simple</artifactId>
+      <version>1.5.2</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.osgi</groupId>
+      <artifactId>org.osgi.compendium</artifactId>
+      <version>4.0.1</version>
+      <type>jar</type>
+    </dependency>
+  </dependencies>
+
+  <repositories>
+    <repository>
+      <id>stlab-cnr-repo</id>
+      <url>http://stlab.istc.cnr.it/software/maven/repo</url>
+    </repository>
+    <repository>
+      <id>com.hp.hpl.jena</id>
+      <name>jena maven repository</name>
+      <releases>
+        <updatePolicy>interval:60</updatePolicy>
+        <checksumPolicy>warn</checksumPolicy>
+      </releases>
+      <url>http://openjena.org/repo</url>
+      <layout>default</layout>
+    </repository>
+    <!-- needed for jersey -->
+    <repository>
+      <id>maven2-repository.dev.java.net</id>
+      <name>Java.net Repository for Maven</name>
+      <url>http://download.java.net/maven/2/</url>
+    </repository>
+  </repositories>
 
 </project>

Modified: incubator/stanbol/trunk/reasoners/hermit/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/hermit/pom.xml?rev=1089406&r1=1089405&r2=1089406&view=diff
==============================================================================
--- incubator/stanbol/trunk/reasoners/hermit/pom.xml (original)
+++ incubator/stanbol/trunk/reasoners/hermit/pom.xml Wed Apr  6 11:34:15 2011
@@ -1,254 +1,254 @@
 <?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.
-	-->
+<!--
+    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">
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
-	<modelVersion>4.0.0</modelVersion>
+  <modelVersion>4.0.0</modelVersion>
 
-	<parent>
-		<groupId>org.apache.stanbol</groupId>
-		<artifactId>stanbol-parent</artifactId>
-		<version>0.9-SNAPSHOT</version>
-		<relativePath>../../parent</relativePath>
-	</parent>
-
-	<artifactId>org.apache.stanbol.reasoners.hermit</artifactId>
-	<packaging>bundle</packaging>
-
-	<name>Apache Stanbol Reasoners Hermit Dependency</name>
-
-	<repositories>
-		<repository>
-			<id>stlab-cnr-repo</id>
-			<url>http://stlab.istc.cnr.it/software/maven/repo</url>
-		</repository>
-	</repositories>
-	<dependencies>
-		<dependency>
-			<groupId>org.apache.felix</groupId>
-			<artifactId>org.osgi.core</artifactId>
-			<version>1.4.0</version>
-		</dependency>
-		<dependency>
-			<groupId>hermit</groupId>
-			<artifactId>hermit</artifactId>
-			<version>1.2.4</version>
-			<type>jar</type>
-		</dependency>
-		<dependency>
-			<groupId>junit</groupId>
-			<artifactId>junit</artifactId>
-			<version>4.4</version>
-			<scope>test</scope>
-		</dependency>
-	</dependencies>
-	<build>
-		<plugins>
-			<plugin>
-				<groupId>org.apache.felix</groupId>
-				<artifactId>maven-bundle-plugin</artifactId>
-				<version>2.0.1</version>
-				<extensions>true</extensions>
-				<configuration>
-					<instructions>
-						<Bundle-ClassPath>.,hermit124/hermit-1.2.4.jar</Bundle-ClassPath>
-						<Export-Package>
-							com.clarkparsia.owlapi.explanation,
-							com.clarkparsia.owlapi.explanation.io,
-							com.clarkparsia.owlapi.explanation.util,
-							com.clarkparsia.owlapi.modularity.locality,
-							de.uulm.ecs.ai.owlapi.krssparser,
-							de.uulm.ecs.ai.owlapi.krssrenderer,
-							dk.brics.automaton,gnu.getopt,
-							org.apache.axiom.attachments.*,
-							org.apache.axiom.c14n.*,
-							org.apache.axiom.om.*,
-							org.apache.axiom.soap.*,
-							org.apache.commons.logging,
-							org.apache.commons.logging.impl,
-							org.coode.owlapi.functionalparser,
-							org.coode.owlapi.functionalrenderer,
-							org.coode.owlapi.latex,
-							org.coode.owlapi.manchesterowlsyntax,
-							org.coode.owlapi.obo.parser,
-							org.coode.owlapi.obo.renderer,
-							org.coode.owlapi.owlxml.renderer,
-							org.coode.owlapi.owlxmlparser,
-							org.coode.owlapi.rdf.model,
-							org.coode.owlapi.rdf.rdfxml,
-							org.coode.owlapi.rdf.renderer,
-							org.coode.owlapi.rdfxml.parser,
-							org.coode.owlapi.turtle,
-							org.coode.string,org.coode.xml,
-							org.semanticweb.HermiT.*,
-							org.semanticweb.owlapi.*,
-							rationals.*,
-							uk.ac.manchester.cs.bhig.util,
-							uk.ac.manchester.cs.owl.explanation.ordering,
-							uk.ac.manchester.cs.owl.owlapi,
-							uk.ac.manchester.cs.owl.owlapi.mansyntaxrenderer,
-							uk.ac.manchester.cs.owl.owlapi.turtle.parser,
-							uk.ac.manchester.cs.owlapi.dlsyntax,
-							uk.ac.manchester.cs.owlapi.dlsyntax.parser,
-							uk.ac.manchester.cs.owlapi.modularity
-						</Export-Package>
-						<Private-Package />
-						<Import-Package>
-							!javax.xml.stream.*,
-							!javax.activation.*,
-							!javax.mail.*,
-							!javax.swing.*,
-							!javax.xml.namespace.*,
-							!javax.xml.parsers.*,
-							!javax.xml.transform.sax.*,
-							!javax.xml.validation.*,
-							!org.apache.avalon.framework.logger.*,
-							!org.apache.log.*,
-							!org.jaxen.*,
-							!org.protege.editor.owl.model.*,
-							!org.w3c.dom.*,
-							!org.xml.sax.*,
-							*
-						</Import-Package>
-						<_nouses>true</_nouses>
-					</instructions>
-				</configuration>
-			</plugin>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<version>2.0.2</version>
-				<configuration>
-					<source>1.6</source>
-					<target>1.6</target>
-					<encoding>${project.build.sourceEncoding}</encoding>
-				</configuration>
-			</plugin>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-resources-plugin</artifactId>
-				<version>2.2</version>
-				<configuration>
-					<encoding>${project.build.sourceEncoding}</encoding>
-				</configuration>
-			</plugin>
-		</plugins>
-	</build>
-
-	<profiles>
-		<profile>
-			<!-- this profile executes the bundle on apache felix-->
-			<id>run-on-felix</id>
-			<dependencies>
-				<dependency>
-					<groupId>org.apache.felix</groupId>
-					<artifactId>org.apache.felix.main</artifactId>
-					<version>2.0.2</version>
-					<scope>provided</scope>
-				</dependency>
-				<dependency>
-					<groupId>org.apache.felix.gogo</groupId>
-					<artifactId>org.apache.felix.gogo.commands</artifactId>
-					<version>0.2.2</version>
-				</dependency>
-			</dependencies>
-
-			<build>
-				<plugins>
-					<plugin>
-						<groupId>org.apache.maven.plugins</groupId>
-						<artifactId>maven-antrun-plugin</artifactId>
-						<version>1.3</version>
-						<executions>
-							<execution>
-								<id>compile</id>
-								<phase>compile</phase>
-								<goals>
-									<goal>run</goal>
-								</goals>
-								<configuration>
-									<tasks>
-										<property name="plugins" refid="maven.runtime.classpath" />
-										<pathconvert pathsep=" " dirsep="/"
-											property="project.build.url">
-											<path path="${project.build.directory}" />
-										</pathconvert>
-										<pathconvert property="plugins.jars" pathsep=":">
-											<path path="${plugins}" />
-											<map from="${project.build.directory}/classes" to="" />
-										</pathconvert>
-										<makeurl property="urls" separator=" " validate="false">
-											<path path="${plugins.jars}" />
-										</makeurl>
-										<pathconvert pathsep=" " property="bundles">
-											<path path="${plugins}" />
-											<mapper>
-												<chainedmapper>
-													<flattenmapper />
-													<globmapper from="*" to="file:modules/*"
-														casesensitive="no" />
-												</chainedmapper>
-											</mapper>
-										</pathconvert>
-										<makeurl property="main.bundle.url"
-											file="${project.build.directory}/${project.artifactId}-${project.version}.jar" />
-										<echo file="${project.build.directory}/run.properties">
-											felix.auto.install=${urls}
-											felix.auto.start=${main.bundle.url}
-											org.osgi.framework.storage=${project.build.url}/felix-cache
-											org.osgi.framework.bootdelegation=*
-                                        </echo>
-										<replace file="${project.build.directory}/run.properties"
-											token="\" value="\\" />
-										<echo file="${project.build.directory}/config.properties">
-											felix.auto.install="${bundles}"
-											felix.auto.start=file:modules/${project.artifactId}-${project.version}.jar
-                                        </echo>
-										<copy
-											file="${maven.dependency.org.apache.felix.org.apache.felix.main.jar.path}"
-											tofile="${project.build.directory}/felix.jar" />
-									</tasks>
-								</configuration>
-							</execution>
-						</executions>
-					</plugin>
-					<plugin>
-						<groupId>org.apache.maven.plugins</groupId>
-						<artifactId>maven-assembly-plugin</artifactId>
-						<version>2.2-beta-5</version>
-						<executions>
-							<execution>
-								<id>create-executable-jar</id>
-								<phase>package</phase>
-								<goals>
-									<goal>single</goal>
-								</goals>
-								<configuration>
-									<descriptors>
-										<descriptor>${basedir}/src/main/assembly/felix.xml</descriptor>
-									</descriptors>
-									<finalName>${project.artifactId}-${project.version}</finalName>
-								</configuration>
-							</execution>
-						</executions>
-					</plugin>
-				</plugins>
-			</build>
-		</profile>
-	</profiles>
+  <parent>
     <groupId>org.apache.stanbol</groupId>
+    <artifactId>stanbol-parent</artifactId>
+    <version>0.9-SNAPSHOT</version>
+    <relativePath>../../parent</relativePath>
+  </parent>
+
+  <artifactId>org.apache.stanbol.reasoners.hermit</artifactId>
+  <packaging>bundle</packaging>
+
+  <name>Apache Stanbol Reasoners Hermit Dependency</name>
+
+  <repositories>
+    <repository>
+      <id>stlab-cnr-repo</id>
+      <url>http://stlab.istc.cnr.it/software/maven/repo</url>
+    </repository>
+  </repositories>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>org.osgi.core</artifactId>
+      <version>1.4.0</version>
+    </dependency>
+    <dependency>
+      <groupId>hermit</groupId>
+      <artifactId>hermit</artifactId>
+      <version>1.2.4</version>
+      <type>jar</type>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.4</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <version>2.0.1</version>
+        <extensions>true</extensions>
+        <configuration>
+          <instructions>
+            <Bundle-ClassPath>.,hermit124/hermit-1.2.4.jar</Bundle-ClassPath>
+            <Export-Package>
+              com.clarkparsia.owlapi.explanation,
+              com.clarkparsia.owlapi.explanation.io,
+              com.clarkparsia.owlapi.explanation.util,
+              com.clarkparsia.owlapi.modularity.locality,
+              de.uulm.ecs.ai.owlapi.krssparser,
+              de.uulm.ecs.ai.owlapi.krssrenderer,
+              dk.brics.automaton,gnu.getopt,
+              org.apache.axiom.attachments.*,
+              org.apache.axiom.c14n.*,
+              org.apache.axiom.om.*,
+              org.apache.axiom.soap.*,
+              org.apache.commons.logging,
+              org.apache.commons.logging.impl,
+              org.coode.owlapi.functionalparser,
+              org.coode.owlapi.functionalrenderer,
+              org.coode.owlapi.latex,
+              org.coode.owlapi.manchesterowlsyntax,
+              org.coode.owlapi.obo.parser,
+              org.coode.owlapi.obo.renderer,
+              org.coode.owlapi.owlxml.renderer,
+              org.coode.owlapi.owlxmlparser,
+              org.coode.owlapi.rdf.model,
+              org.coode.owlapi.rdf.rdfxml,
+              org.coode.owlapi.rdf.renderer,
+              org.coode.owlapi.rdfxml.parser,
+              org.coode.owlapi.turtle,
+              org.coode.string,org.coode.xml,
+              org.semanticweb.HermiT.*,
+              org.semanticweb.owlapi.*,
+              rationals.*,
+              uk.ac.manchester.cs.bhig.util,
+              uk.ac.manchester.cs.owl.explanation.ordering,
+              uk.ac.manchester.cs.owl.owlapi,
+              uk.ac.manchester.cs.owl.owlapi.mansyntaxrenderer,
+              uk.ac.manchester.cs.owl.owlapi.turtle.parser,
+              uk.ac.manchester.cs.owlapi.dlsyntax,
+              uk.ac.manchester.cs.owlapi.dlsyntax.parser,
+              uk.ac.manchester.cs.owlapi.modularity
+            </Export-Package>
+            <Private-Package/>
+            <Import-Package>
+              !javax.xml.stream.*,
+              !javax.activation.*,
+              !javax.mail.*,
+              !javax.swing.*,
+              !javax.xml.namespace.*,
+              !javax.xml.parsers.*,
+              !javax.xml.transform.sax.*,
+              !javax.xml.validation.*,
+              !org.apache.avalon.framework.logger.*,
+              !org.apache.log.*,
+              !org.jaxen.*,
+              !org.protege.editor.owl.model.*,
+              !org.w3c.dom.*,
+              !org.xml.sax.*,
+              *
+            </Import-Package>
+            <_nouses>true</_nouses>
+          </instructions>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>2.0.2</version>
+        <configuration>
+          <source>1.6</source>
+          <target>1.6</target>
+          <encoding>${project.build.sourceEncoding}</encoding>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-resources-plugin</artifactId>
+        <version>2.2</version>
+        <configuration>
+          <encoding>${project.build.sourceEncoding}</encoding>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <profiles>
+    <profile>
+      <!-- this profile executes the bundle on apache felix-->
+      <id>run-on-felix</id>
+      <dependencies>
+        <dependency>
+          <groupId>org.apache.felix</groupId>
+          <artifactId>org.apache.felix.main</artifactId>
+          <version>2.0.2</version>
+          <scope>provided</scope>
+        </dependency>
+        <dependency>
+          <groupId>org.apache.felix.gogo</groupId>
+          <artifactId>org.apache.felix.gogo.commands</artifactId>
+          <version>0.2.2</version>
+        </dependency>
+      </dependencies>
+
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-antrun-plugin</artifactId>
+            <version>1.3</version>
+            <executions>
+              <execution>
+                <id>compile</id>
+                <phase>compile</phase>
+                <goals>
+                  <goal>run</goal>
+                </goals>
+                <configuration>
+                  <tasks>
+                    <property name="plugins" refid="maven.runtime.classpath"/>
+                    <pathconvert pathsep=" " dirsep="/"
+                                 property="project.build.url">
+                      <path path="${project.build.directory}"/>
+                    </pathconvert>
+                    <pathconvert property="plugins.jars" pathsep=":">
+                      <path path="${plugins}"/>
+                      <map from="${project.build.directory}/classes" to=""/>
+                    </pathconvert>
+                    <makeurl property="urls" separator=" " validate="false">
+                      <path path="${plugins.jars}"/>
+                    </makeurl>
+                    <pathconvert pathsep=" " property="bundles">
+                      <path path="${plugins}"/>
+                      <mapper>
+                        <chainedmapper>
+                          <flattenmapper/>
+                          <globmapper from="*" to="file:modules/*"
+                                      casesensitive="no"/>
+                        </chainedmapper>
+                      </mapper>
+                    </pathconvert>
+                    <makeurl property="main.bundle.url"
+                             file="${project.build.directory}/${project.artifactId}-${project.version}.jar"/>
+                    <echo file="${project.build.directory}/run.properties">
+                      felix.auto.install=${urls}
+                      felix.auto.start=${main.bundle.url}
+                      org.osgi.framework.storage=${project.build.url}/felix-cache
+                      org.osgi.framework.bootdelegation=*
+                    </echo>
+                    <replace file="${project.build.directory}/run.properties"
+                             token="\" value="\\"/>
+                    <echo file="${project.build.directory}/config.properties">
+                      felix.auto.install="${bundles}"
+                      felix.auto.start=file:modules/${project.artifactId}-${project.version}.jar
+                    </echo>
+                    <copy
+                        file="${maven.dependency.org.apache.felix.org.apache.felix.main.jar.path}"
+                        tofile="${project.build.directory}/felix.jar"/>
+                  </tasks>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <version>2.2-beta-5</version>
+            <executions>
+              <execution>
+                <id>create-executable-jar</id>
+                <phase>package</phase>
+                <goals>
+                  <goal>single</goal>
+                </goals>
+                <configuration>
+                  <descriptors>
+                    <descriptor>${basedir}/src/main/assembly/felix.xml</descriptor>
+                  </descriptors>
+                  <finalName>${project.artifactId}-${project.version}</finalName>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+  <groupId>org.apache.stanbol</groupId>
 </project>

Modified: incubator/stanbol/trunk/reasoners/owllink/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/owllink/pom.xml?rev=1089406&r1=1089405&r2=1089406&view=diff
==============================================================================
--- incubator/stanbol/trunk/reasoners/owllink/pom.xml (original)
+++ incubator/stanbol/trunk/reasoners/owllink/pom.xml Wed Apr  6 11:34:15 2011
@@ -1,235 +1,236 @@
 <?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.
-	-->
+<!--
+    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">
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
-	<modelVersion>4.0.0</modelVersion>
+  <modelVersion>4.0.0</modelVersion>
 
-	<parent>
-		<groupId>org.apache.stanbol</groupId>
-		<artifactId>stanbol-parent</artifactId>
-		<version>0.9-SNAPSHOT</version>
-		<relativePath>../../parent</relativePath>
-	</parent>
-
-	<artifactId>org.apache.stanbol.reasoners.owllink</artifactId>
-	<packaging>bundle</packaging>
-	<name>Apache Stanbol Reasoners OwlLink Dependency</name>
-
-	<repositories>
-		<repository>
-			<id>stlab-cnr-repo</id>
-			<url>http://stlab.istc.cnr.it/software/maven/repo</url>
-		</repository>
-	</repositories>
-	<dependencies>
-		<dependency>
-			<groupId>org.apache.felix</groupId>
-			<artifactId>org.osgi.core</artifactId>
-			<version>1.4.0</version>
-		</dependency>
-		<dependency>
-			<groupId>owl-link</groupId>
-			<artifactId>owl-link</artifactId>
-			<version>1.0.2</version>
-			<type>jar</type>
-		</dependency>
-		<dependency>
-			<groupId>junit</groupId>
-			<artifactId>junit</artifactId>
-			<version>4.4</version>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>owlapi</groupId>
-			<artifactId>owlapi</artifactId>
-			<version>3.0.0</version>
-			<scope>provided</scope>
-		</dependency>
-	</dependencies>
-
-	<build>
-		<plugins>
-			<plugin>
-				<groupId>org.apache.felix</groupId>
-				<artifactId>maven-bundle-plugin</artifactId>
-				<version>2.0.1</version>
-				<extensions>true</extensions>
-				<configuration>
-					<instructions>
-						<Export-Package>
-							org.semanticweb.owlapi.owllink.*
-						</Export-Package>
-						<Private-Package>
-							eu.iksproject.kres.shared.dependency.owllink.*
-						</Private-Package>
-						<Import-Package>
-							!com.sun.org.apache.xml.internal.serialize,
-							!javax.xml.parsers,
-							!org.coode.owlapi.owlxml.renderer,
-							!org.coode.owlapi.owlxmlparser,
-							!org.coode.string,
-							!org.coode.xml,
-							!org.mortbay.http,
-							!org.mortbay.http.handler,
-							!org.mortbay.util,
-							!org.semanticweb.owl.apibinding,
-							!org.semanticweb.owl.inference,
-							!org.semanticweb.owl.model,
-							!org.semanticweb.owl.util,
-							!org.semanticweb.owl.vocab,
-							!org.semanticweb.owlapi.apibinding,
-							!org.semanticweb.owlapi.io,
-							!org.semanticweb.owlapi.model,
-							!org.semanticweb.owlapi.profiles,
-							!org.semanticweb.owlapi.reasoner,
-							!org.semanticweb.owlapi.reasoner.impl,
-							!org.semanticweb.owlapi.util,
-							!org.semanticweb.owlapi.vocab,
-							!org.semanticweb.reasonerfactory.pellet,
-							!org.xml.sax,
-							!org.xml.sax.helpers,
-							!uk.ac.manchester.cs.owl
-						</Import-Package>
-						<_nouses>true</_nouses>
-					</instructions>
-				</configuration>
-			</plugin>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<version>2.0.2</version>
-				<configuration>
-					<source>1.6</source>
-					<target>1.6</target>
-					<encoding>${project.build.sourceEncoding}</encoding>
-				</configuration>
-			</plugin>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-resources-plugin</artifactId>
-				<version>2.2</version>
-				<configuration>
-					<encoding>${project.build.sourceEncoding}</encoding>
-				</configuration>
-			</plugin>
-		</plugins>
-	</build>
-
-	<profiles>
-		<profile>
-			<!-- this profile executes the bundle on apache felix-->
-			<id>run-on-felix</id>
-			<dependencies>
-				<dependency>
-					<groupId>org.apache.felix</groupId>
-					<artifactId>org.apache.felix.main</artifactId>
-					<version>2.0.2</version>
-					<scope>provided</scope>
-				</dependency>
-				<dependency>
-					<groupId>org.apache.felix.gogo</groupId>
-					<artifactId>org.apache.felix.gogo.commands</artifactId>
-					<version>0.2.2</version>
-				</dependency>
-			</dependencies>
-
-			<build>
-				<plugins>
-					<plugin>
-						<groupId>org.apache.maven.plugins</groupId>
-						<artifactId>maven-antrun-plugin</artifactId>
-						<version>1.3</version>
-						<executions>
-							<execution>
-								<id>compile</id>
-								<phase>compile</phase>
-								<goals>
-									<goal>run</goal>
-								</goals>
-								<configuration>
-									<tasks>
-										<property name="plugins" refid="maven.runtime.classpath" />
-										<pathconvert pathsep=" " dirsep="/"
-											property="project.build.url">
-											<path path="${project.build.directory}" />
-										</pathconvert>
-										<pathconvert property="plugins.jars" pathsep=":">
-											<path path="${plugins}" />
-											<map from="${project.build.directory}/classes" to="" />
-										</pathconvert>
-										<makeurl property="urls" separator=" " validate="false">
-											<path path="${plugins.jars}" />
-										</makeurl>
-										<pathconvert pathsep=" " property="bundles">
-											<path path="${plugins}" />
-											<mapper>
-												<chainedmapper>
-													<flattenmapper />
-													<globmapper from="*" to="file:modules/*"
-														casesensitive="no" />
-												</chainedmapper>
-											</mapper>
-										</pathconvert>
-										<makeurl property="main.bundle.url"
-											file="${project.build.directory}/${project.artifactId}-${project.version}.jar" />
-										<echo file="${project.build.directory}/run.properties">
-											felix.auto.install=${urls}
-											felix.auto.start=${main.bundle.url}
-											org.osgi.framework.storage=${project.build.url}/felix-cache
-											org.osgi.framework.bootdelegation=*
-                                        </echo>
-										<replace file="${project.build.directory}/run.properties"
-											token="\" value="\\" />
-										<echo file="${project.build.directory}/config.properties">
-											felix.auto.install="${bundles}"
-											felix.auto.start=file:modules/${project.artifactId}-${project.version}.jar
-                                        </echo>
-										<copy
-											file="${maven.dependency.org.apache.felix.org.apache.felix.main.jar.path}"
-											tofile="${project.build.directory}/felix.jar" />
-									</tasks>
-								</configuration>
-							</execution>
-						</executions>
-					</plugin>
-					<plugin>
-						<groupId>org.apache.maven.plugins</groupId>
-						<artifactId>maven-assembly-plugin</artifactId>
-						<version>2.2-beta-5</version>
-						<executions>
-							<execution>
-								<id>create-executable-jar</id>
-								<phase>package</phase>
-								<goals>
-									<goal>single</goal>
-								</goals>
-								<configuration>
-									<descriptors>
-										<descriptor>${basedir}/src/main/assembly/felix.xml</descriptor>
-									</descriptors>
-									<finalName>${project.artifactId}-${project.version}</finalName>
-								</configuration>
-							</execution>
-						</executions>
-					</plugin>
-				</plugins>
-			</build>
-		</profile>
-	</profiles>
+  <parent>
     <groupId>org.apache.stanbol</groupId>
+    <artifactId>stanbol-parent</artifactId>
+    <version>0.9-SNAPSHOT</version>
+    <relativePath>../../parent</relativePath>
+  </parent>
+
+  <artifactId>org.apache.stanbol.reasoners.owllink</artifactId>
+  <packaging>bundle</packaging>
+  <name>Apache Stanbol Reasoners OwlLink Dependency</name>
+
+  <repositories>
+    <repository>
+      <id>stlab-cnr-repo</id>
+      <url>http://stlab.istc.cnr.it/software/maven/repo</url>
+    </repository>
+  </repositories>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>org.osgi.core</artifactId>
+      <version>1.4.0</version>
+    </dependency>
+    <dependency>
+      <groupId>owl-link</groupId>
+      <artifactId>owl-link</artifactId>
+      <version>1.0.2</version>
+      <type>jar</type>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.4</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>owlapi</groupId>
+      <artifactId>owlapi</artifactId>
+      <version>3.0.0</version>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <version>2.0.1</version>
+        <extensions>true</extensions>
+        <configuration>
+          <instructions>
+            <Export-Package>
+              org.semanticweb.owlapi.owllink.*
+            </Export-Package>
+            <Private-Package>
+              eu.iksproject.kres.shared.dependency.owllink.*
+            </Private-Package>
+            <Import-Package>
+              !com.sun.org.apache.xml.internal.serialize,
+              !javax.xml.parsers,
+              !org.coode.owlapi.owlxml.renderer,
+              !org.coode.owlapi.owlxmlparser,
+              !org.coode.string,
+              !org.coode.xml,
+              !org.mortbay.http,
+              !org.mortbay.http.handler,
+              !org.mortbay.util,
+              !org.semanticweb.owl.apibinding,
+              !org.semanticweb.owl.inference,
+              !org.semanticweb.owl.model,
+              !org.semanticweb.owl.util,
+              !org.semanticweb.owl.vocab,
+              !org.semanticweb.owlapi.apibinding,
+              !org.semanticweb.owlapi.io,
+              !org.semanticweb.owlapi.model,
+              !org.semanticweb.owlapi.profiles,
+              !org.semanticweb.owlapi.reasoner,
+              !org.semanticweb.owlapi.reasoner.impl,
+              !org.semanticweb.owlapi.util,
+              !org.semanticweb.owlapi.vocab,
+              !org.semanticweb.reasonerfactory.pellet,
+              !org.xml.sax,
+              !org.xml.sax.helpers,
+              !uk.ac.manchester.cs.owl
+            </Import-Package>
+            <_nouses>true</_nouses>
+          </instructions>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>2.0.2</version>
+        <configuration>
+          <source>1.6</source>
+          <target>1.6</target>
+          <encoding>${project.build.sourceEncoding}</encoding>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-resources-plugin</artifactId>
+        <version>2.2</version>
+        <configuration>
+          <encoding>${project.build.sourceEncoding}</encoding>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <profiles>
+    <profile>
+      <!-- this profile executes the bundle on apache felix-->
+      <id>run-on-felix</id>
+      <dependencies>
+        <dependency>
+          <groupId>org.apache.felix</groupId>
+          <artifactId>org.apache.felix.main</artifactId>
+          <version>2.0.2</version>
+          <scope>provided</scope>
+        </dependency>
+        <dependency>
+          <groupId>org.apache.felix.gogo</groupId>
+          <artifactId>org.apache.felix.gogo.commands</artifactId>
+          <version>0.2.2</version>
+        </dependency>
+      </dependencies>
+
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-antrun-plugin</artifactId>
+            <version>1.3</version>
+            <executions>
+              <execution>
+                <id>compile</id>
+                <phase>compile</phase>
+                <goals>
+                  <goal>run</goal>
+                </goals>
+                <configuration>
+                  <tasks>
+                    <property name="plugins" refid="maven.runtime.classpath"/>
+                    <pathconvert pathsep=" " dirsep="/"
+                                 property="project.build.url">
+                      <path path="${project.build.directory}"/>
+                    </pathconvert>
+                    <pathconvert property="plugins.jars" pathsep=":">
+                      <path path="${plugins}"/>
+                      <map from="${project.build.directory}/classes" to=""/>
+                    </pathconvert>
+                    <makeurl property="urls" separator=" " validate="false">
+                      <path path="${plugins.jars}"/>
+                    </makeurl>
+                    <pathconvert pathsep=" " property="bundles">
+                      <path path="${plugins}"/>
+                      <mapper>
+                        <chainedmapper>
+                          <flattenmapper/>
+                          <globmapper from="*" to="file:modules/*"
+                                      casesensitive="no"/>
+                        </chainedmapper>
+                      </mapper>
+                    </pathconvert>
+                    <makeurl property="main.bundle.url"
+                             file="${project.build.directory}/${project.artifactId}-${project.version}.jar"/>
+                    <echo file="${project.build.directory}/run.properties">
+                      felix.auto.install=${urls}
+                      felix.auto.start=${main.bundle.url}
+                      org.osgi.framework.storage=${project.build.url}/felix-cache
+                      org.osgi.framework.bootdelegation=*
+                    </echo>
+                    <replace file="${project.build.directory}/run.properties"
+                             token="\" value="\\"/>
+                    <echo file="${project.build.directory}/config.properties">
+                      felix.auto.install="${bundles}"
+                      felix.auto.start=file:modules/${project.artifactId}-${project.version}.jar
+                    </echo>
+                    <copy
+                        file="${maven.dependency.org.apache.felix.org.apache.felix.main.jar.path}"
+                        tofile="${project.build.directory}/felix.jar"/>
+                  </tasks>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <version>2.2-beta-5</version>
+            <executions>
+              <execution>
+                <id>create-executable-jar</id>
+                <phase>package</phase>
+                <goals>
+                  <goal>single</goal>
+                </goals>
+                <configuration>
+                  <descriptors>
+                    <descriptor>${basedir}/src/main/assembly/felix.xml</descriptor>
+                  </descriptors>
+                  <finalName>${project.artifactId}-${project.version}</finalName>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+  <groupId>org.apache.stanbol</groupId>
 </project>

Modified: incubator/stanbol/trunk/reasoners/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/pom.xml?rev=1089406&r1=1089405&r2=1089406&view=diff
==============================================================================
--- incubator/stanbol/trunk/reasoners/pom.xml (original)
+++ incubator/stanbol/trunk/reasoners/pom.xml Wed Apr  6 11:34:15 2011
@@ -16,7 +16,7 @@
    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">
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
   <modelVersion>4.0.0</modelVersion>
 
@@ -43,11 +43,11 @@
     <module>../ontologymanager/ontonet</module>
     <module>../owl</module>  
     <module>../rules/base</module>  
-    <module>../rules/manager</module--> 
-    <module>base</module>      
+    <module>../rules/manager</module-->
+    <module>base</module>
     <module>hermit</module>
-    <module>owllink</module>    
+    <module>owllink</module>
     <module>web</module>
   </modules>
-  
+
 </project>

Modified: incubator/stanbol/trunk/reasoners/web/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/web/pom.xml?rev=1089406&r1=1089405&r2=1089406&view=diff
==============================================================================
--- incubator/stanbol/trunk/reasoners/web/pom.xml (original)
+++ incubator/stanbol/trunk/reasoners/web/pom.xml Wed Apr  6 11:34:15 2011
@@ -1,337 +1,338 @@
 <?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.
-	-->
+<!--
+    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">
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
-	<modelVersion>4.0.0</modelVersion>
+  <modelVersion>4.0.0</modelVersion>
 
-	<parent>
-		<groupId>org.apache.stanbol</groupId>
-		<artifactId>stanbol-parent</artifactId>
-		<version>0.9-SNAPSHOT</version>
-		<relativePath>../../parent</relativePath>
-	</parent>
-
-	<groupId>org.apache.stanbol</groupId>
-	<artifactId>org.apache.stanbol.reasoners.web</artifactId>
-	<packaging>bundle</packaging>
-
-	<name>Apache Stanbol Reasoner Web</name>
-	<description>Set of rest services to deal with reasoners</description>
-
-	<dependencies>
-
-		<!-- dependencies on other IKS modules -->
-		<dependency>
-			<groupId>org.apache.clerezza</groupId>
-			<artifactId>org.apache.clerezza.rdf.core</artifactId>
-			<version>0.12-incubating-SNAPSHOT</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.clerezza</groupId>
-			<artifactId>org.apache.clerezza.rdf.rdfjson</artifactId>
-			<version>0.3-incubating-SNAPSHOT</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.clerezza</groupId>
-			<artifactId>org.apache.clerezza.jaxrs.rdf.providers</artifactId>
-			<version>0.13-incubating-SNAPSHOT</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.clerezza</groupId>
-			<artifactId>org.apache.clerezza.rdf.jena.serializer</artifactId>
-			<version>0.9-incubating-SNAPSHOT</version>
-			<scope>provided</scope>
-		</dependency>
-
-		<!-- specific deps for this project -->
-		<dependency>
-			<groupId>com.sun.jersey</groupId>
-			<artifactId>jersey-server</artifactId>
-			<version>${jersey-version}</version>
-		</dependency>
-		<dependency>
-			<groupId>com.sun.jersey</groupId>
-			<artifactId>jersey-core</artifactId>
-			<version>${jersey-version}</version>
-		</dependency>
-		<dependency>
-			<groupId>com.sun.jersey</groupId>
-			<artifactId>jersey-json</artifactId>
-			<version>${jersey-version}</version>
-			<exclusions>
-				<!-- jaxb is now part of java 6 -->
-				<exclusion>
-					<groupId>com.sun.xml.bind</groupId>
-					<artifactId>jaxb-api</artifactId>
-				</exclusion>
-				<exclusion>
-					<groupId>com.sun.xml.bind</groupId>
-					<artifactId>jaxb-impl</artifactId>
-				</exclusion>
-			</exclusions>
-		</dependency>
-		<!--
-			<dependency> <groupId>com.sun.jersey.contribs</groupId>
-			<artifactId>jersey-multipart</artifactId> <version>1.4</version>
-			</dependency>
-		-->
-		<dependency>
-			<groupId>javax.servlet</groupId>
-			<artifactId>servlet-api</artifactId>
-			<version>2.4</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>freemarker</groupId>
-			<artifactId>freemarker</artifactId>
-			<version>2.3.9</version>
-		</dependency>
-		<!-- indirect dependency for freemarker -->
-		<dependency>
-			<groupId>org.codehaus.jettison</groupId>
-			<artifactId>jettison</artifactId>
-			<version>1.2</version>
-		</dependency>
-
-		<!-- servlet container, most useful for the tests -->
-		<dependency>
-			<groupId>org.mortbay.jetty</groupId>
-			<artifactId>jetty</artifactId>
-			<version>6.1.22</version>
-			<scope>provided</scope>
-		</dependency>
-
-		<!-- generic tax -->
-		<dependency>
-			<groupId>org.slf4j</groupId>
-			<artifactId>slf4j-api</artifactId>
-                        <version>1.5.2</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>commons-io</groupId>
-			<artifactId>commons-io</artifactId>
-			<version>1.4</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>commons-lang</groupId>
-			<artifactId>commons-lang</artifactId>
-			<version>2.4</version>
-			<scope>provided</scope>
-		</dependency>
-
-		<!-- OSGi tax -->
-		<dependency>
-			<groupId>org.osgi</groupId>
-			<artifactId>org.osgi.core</artifactId>
-			<version>4.1.0</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.osgi</groupId>
-			<artifactId>org.osgi.compendium</artifactId>
-			<version>4.1.0</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.felix</groupId>
-			<artifactId>org.apache.felix.scr.annotations</artifactId>
-			<version>1.2.0</version>
-			<scope>provided</scope>
-		</dependency>
-
-		<!-- for tests -->
-		<dependency>
-			<groupId>org.slf4j</groupId>
-			<artifactId>slf4j-simple</artifactId>
-                        <version>1.5.2</version>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>junit</groupId>
-			<artifactId>junit</artifactId>
-			<version>4.7</version>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.mockito</groupId>
-			<artifactId>mockito-all</artifactId>
-			<version>1.6</version>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>com.sun.jersey</groupId>
-			<artifactId>jersey-client</artifactId>
-			<version>${jersey-version}</version>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.ops4j.pax.exam</groupId>
-			<artifactId>pax-exam</artifactId>
-			<version>${pax-exam-version}</version>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.ops4j.pax.exam</groupId>
-			<artifactId>pax-exam-junit</artifactId>
-			<version>${pax-exam-version}</version>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.ops4j.pax.exam</groupId>
-			<artifactId>pax-exam-container-default</artifactId>
-			<version>${pax-exam-version}</version>
-			<scope>test</scope>
-		</dependency>
-
-		<!-- Stanbol deps -->
-        <dependency>
-			<groupId>org.apache.stanbol</groupId>
-			<artifactId>org.apache.stanbol.kres.jersey</artifactId>
-			<version>${stanbol-version}</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.stanbol</groupId>
-			<artifactId>org.apache.stanbol.ontologymanager.ontonet</artifactId>
-			<version>${stanbol-version}</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.stanbol</groupId>
-			<artifactId>org.apache.stanbol.reasoners.base</artifactId>
-			<version>${stanbol-version}</version>
-			<scope>provided</scope>
-		</dependency>
-        <dependency>
-			<groupId>org.apache.stanbol</groupId>
-			<artifactId>org.apache.stanbol.rules.base</artifactId>
-			<version>${stanbol-version}</version>
-			<scope>provided</scope>			
-		</dependency>
-		<dependency>
-			<groupId>org.apache.stanbol</groupId>
-			<artifactId>org.apache.stanbol.rules.manager</artifactId>
-			<version>${stanbol-version}</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.stanbol</groupId>
-			<artifactId>org.apache.stanbol.rules.refactor</artifactId>
-			<version>${stanbol-version}</version>
-			<scope>provided</scope>
-		</dependency>
-                <dependency>
-			<groupId>org.apache.stanbol</groupId>
-			<artifactId>org.apache.stanbol.owl</artifactId>
-			<version>${stanbol-version}</version>
-			<scope>provided</scope>
-		</dependency>
-
-		<dependency>
-			<groupId>com.hp.hpl.jena</groupId>
-			<artifactId>jena</artifactId>
-			<version>2.6.2</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>owlapi</groupId>
-			<artifactId>owlapi</artifactId>
-			<version>3.0.0</version>
-			<scope>provided</scope>
-		</dependency>			
-		
-	</dependencies>
-
-
-	<repositories>
-		<!-- needed for jersey -->
-		<repository>
-			<id>maven2-repository.dev.java.net</id>
-			<name>Java.net Repository for Maven</name>
-			<url>http://download.java.net/maven/2/</url>
-		</repository>
-		<repository>
-			<id>repository-codehaus</id>
-			<name>Codehaus maven repository</name>
-			<url>http://repository.codehaus.org</url>
-		</repository>
-
-		<!-- needed for clerezza SNAPSHOT only -->
-		<repository>
-			<id>apache repository - snapshot repo</id>
-			<name>apache repository</name>
-			<url>https://repository.apache.org/content/repositories/snapshots</url>
-		</repository>
-	</repositories>
-
-	<build>
-		<!-- make it an OSGi bundle -->
-		<plugins>
-			<plugin>
-				<groupId>org.apache.felix</groupId>
-				<artifactId>maven-bundle-plugin</artifactId>
-				<extensions>true</extensions>
-				<configuration>
-					<instructions>
-						<Export-Package>
-							org.apache.stanbol.reasoners.web.*;version=${stanbol-version}
-            			</Export-Package>
-						<Embed-Dependency>*;scope=compile|runtime;inline=false;artifactId=jersey-json|jettison|jackson-core-asl</Embed-Dependency>
-						<Embed-Transitive>true</Embed-Transitive>
-						<Import-Package>
-							org.semanticweb.owlapi.*,
-							!javax.servlet.jsp.*,
-							!org.apache.tools.*,
-							!org.mortbay.*,
-							!org.apache.xpath.*,
-							!org.jdom.*,
-							!org.jaxen.*,
-							!org.apache.xml.*,
-							!org.mozilla.javascript.*,
-							!org.python.*,
-							!org.dom4j.*,
-							!org.apache.log.*,
-							*
-            			</Import-Package>
-						<Embed-Dependency>freemarker</Embed-Dependency>
-						<_nouses>true</_nouses>
-					</instructions>
-				</configuration>
-			</plugin>
-			<plugin>
-				<groupId>org.apache.felix</groupId>
-				<artifactId>maven-scr-plugin</artifactId>
-			</plugin>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<version>2.0.2</version>
-				<configuration>
-					<source>1.6</source>
-					<target>1.6</target>
-				</configuration>
-			</plugin>
-		</plugins>
-	</build>
+  <parent>
+    <groupId>org.apache.stanbol</groupId>
+    <artifactId>stanbol-parent</artifactId>
+    <version>0.9-SNAPSHOT</version>
+    <relativePath>../../parent</relativePath>
+  </parent>
+
+  <groupId>org.apache.stanbol</groupId>
+  <artifactId>org.apache.stanbol.reasoners.web</artifactId>
+  <packaging>bundle</packaging>
+
+  <name>Apache Stanbol Reasoner Web</name>
+  <description>Set of rest services to deal with reasoners</description>
+
+  <dependencies>
+
+    <!-- dependencies on other IKS modules -->
+    <dependency>
+      <groupId>org.apache.clerezza</groupId>
+      <artifactId>org.apache.clerezza.rdf.core</artifactId>
+      <version>0.12-incubating-SNAPSHOT</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.clerezza</groupId>
+      <artifactId>org.apache.clerezza.rdf.rdfjson</artifactId>
+      <version>0.3-incubating-SNAPSHOT</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.clerezza</groupId>
+      <artifactId>org.apache.clerezza.jaxrs.rdf.providers</artifactId>
+      <version>0.13-incubating-SNAPSHOT</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.clerezza</groupId>
+      <artifactId>org.apache.clerezza.rdf.jena.serializer</artifactId>
+      <version>0.9-incubating-SNAPSHOT</version>
+      <scope>provided</scope>
+    </dependency>
+
+    <!-- specific deps for this project -->
+    <dependency>
+      <groupId>com.sun.jersey</groupId>
+      <artifactId>jersey-server</artifactId>
+      <version>${jersey-version}</version>
+    </dependency>
+    <dependency>
+      <groupId>com.sun.jersey</groupId>
+      <artifactId>jersey-core</artifactId>
+      <version>${jersey-version}</version>
+    </dependency>
+    <dependency>
+      <groupId>com.sun.jersey</groupId>
+      <artifactId>jersey-json</artifactId>
+      <version>${jersey-version}</version>
+      <exclusions>
+        <!-- jaxb is now part of java 6 -->
+        <exclusion>
+          <groupId>com.sun.xml.bind</groupId>
+          <artifactId>jaxb-api</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>com.sun.xml.bind</groupId>
+          <artifactId>jaxb-impl</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <!--
+       <dependency> <groupId>com.sun.jersey.contribs</groupId>
+       <artifactId>jersey-multipart</artifactId> <version>1.4</version>
+       </dependency>
+     -->
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>servlet-api</artifactId>
+      <version>2.4</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>freemarker</groupId>
+      <artifactId>freemarker</artifactId>
+      <version>2.3.9</version>
+    </dependency>
+    <!-- indirect dependency for freemarker -->
+    <dependency>
+      <groupId>org.codehaus.jettison</groupId>
+      <artifactId>jettison</artifactId>
+      <version>1.2</version>
+    </dependency>
+
+    <!-- servlet container, most useful for the tests -->
+    <dependency>
+      <groupId>org.mortbay.jetty</groupId>
+      <artifactId>jetty</artifactId>
+      <version>6.1.22</version>
+      <scope>provided</scope>
+    </dependency>
+
+    <!-- generic tax -->
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+      <version>1.5.2</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+      <version>1.4</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+      <version>2.4</version>
+      <scope>provided</scope>
+    </dependency>
+
+    <!-- OSGi tax -->
+    <dependency>
+      <groupId>org.osgi</groupId>
+      <artifactId>org.osgi.core</artifactId>
+      <version>4.1.0</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.osgi</groupId>
+      <artifactId>org.osgi.compendium</artifactId>
+      <version>4.1.0</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>org.apache.felix.scr.annotations</artifactId>
+      <version>1.2.0</version>
+      <scope>provided</scope>
+    </dependency>
+
+    <!-- for tests -->
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-simple</artifactId>
+      <version>1.5.2</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.7</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-all</artifactId>
+      <version>1.6</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.sun.jersey</groupId>
+      <artifactId>jersey-client</artifactId>
+      <version>${jersey-version}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.ops4j.pax.exam</groupId>
+      <artifactId>pax-exam</artifactId>
+      <version>${pax-exam-version}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.ops4j.pax.exam</groupId>
+      <artifactId>pax-exam-junit</artifactId>
+      <version>${pax-exam-version}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.ops4j.pax.exam</groupId>
+      <artifactId>pax-exam-container-default</artifactId>
+      <version>${pax-exam-version}</version>
+      <scope>test</scope>
+    </dependency>
+
+    <!-- Stanbol deps -->
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.kres.jersey</artifactId>
+      <version>${stanbol-version}</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.ontologymanager.ontonet</artifactId>
+      <version>${stanbol-version}</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.reasoners.base</artifactId>
+      <version>${stanbol-version}</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.rules.base</artifactId>
+      <version>${stanbol-version}</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.rules.manager</artifactId>
+      <version>${stanbol-version}</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.rules.refactor</artifactId>
+      <version>${stanbol-version}</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.owl</artifactId>
+      <version>${stanbol-version}</version>
+      <scope>provided</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>com.hp.hpl.jena</groupId>
+      <artifactId>jena</artifactId>
+      <version>2.6.2</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>owlapi</groupId>
+      <artifactId>owlapi</artifactId>
+      <version>3.0.0</version>
+      <scope>provided</scope>
+    </dependency>
+
+  </dependencies>
+
+
+  <repositories>
+    <!-- needed for jersey -->
+    <repository>
+      <id>maven2-repository.dev.java.net</id>
+      <name>Java.net Repository for Maven</name>
+      <url>http://download.java.net/maven/2/</url>
+    </repository>
+    <repository>
+      <id>repository-codehaus</id>
+      <name>Codehaus maven repository</name>
+      <url>http://repository.codehaus.org</url>
+    </repository>
+
+    <!-- needed for clerezza SNAPSHOT only -->
+    <repository>
+      <id>apache repository - snapshot repo</id>
+      <name>apache repository</name>
+      <url>https://repository.apache.org/content/repositories/snapshots</url>
+    </repository>
+  </repositories>
+
+  <build>
+    <!-- make it an OSGi bundle -->
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <extensions>true</extensions>
+        <configuration>
+          <instructions>
+            <Export-Package>
+              org.apache.stanbol.reasoners.web.*;version=${stanbol-version}
+            </Export-Package>
+            <Embed-Dependency>*;scope=compile|runtime;inline=false;artifactId=jersey-json|jettison|jackson-core-asl
+            </Embed-Dependency>
+            <Embed-Transitive>true</Embed-Transitive>
+            <Import-Package>
+              org.semanticweb.owlapi.*,
+              !javax.servlet.jsp.*,
+              !org.apache.tools.*,
+              !org.mortbay.*,
+              !org.apache.xpath.*,
+              !org.jdom.*,
+              !org.jaxen.*,
+              !org.apache.xml.*,
+              !org.mozilla.javascript.*,
+              !org.python.*,
+              !org.dom4j.*,
+              !org.apache.log.*,
+              *
+            </Import-Package>
+            <Embed-Dependency>freemarker</Embed-Dependency>
+            <_nouses>true</_nouses>
+          </instructions>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-scr-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>2.0.2</version>
+        <configuration>
+          <source>1.6</source>
+          <target>1.6</target>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 
 </project>