Author: suat
Date: Fri Jul 15 15:52:54 2011
New Revision: 1147204
URL: http://svn.apache.org/viewvc?rev=1147204&view=rev
Log:
STANBOL-284:
-Deleted ext module containing local OWLAPI and OWLlink libraries
-Updated some methods according to new version of OWLAPI and OWLlink
-Updated parent and launcher to use org.apache.stanbol.owl and
org.apache.stanbol.reasoners.owllink bundles
-Updated exported packages of owllink pom according to required packages for
Ontology Manager Store
Removed:
incubator/stanbol/trunk/ontologymanager/store/ext/
Modified:
incubator/stanbol/trunk/ontologymanager/store/jena/pom.xml
incubator/stanbol/trunk/ontologymanager/store/jena/src/main/java/org/apache/stanbol/ontologymanager/store/jena/JenaPersistenceStore.java
incubator/stanbol/trunk/ontologymanager/store/launchers/fise/pom.xml
incubator/stanbol/trunk/ontologymanager/store/launchers/fise/src/main/bundles/list.xml
incubator/stanbol/trunk/ontologymanager/store/parent/pom.xml
incubator/stanbol/trunk/ontologymanager/store/pom.xml
incubator/stanbol/trunk/reasoners/owllink/pom.xml
Modified: incubator/stanbol/trunk/ontologymanager/store/jena/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/ontologymanager/store/jena/pom.xml?rev=1147204&r1=1147203&r2=1147204&view=diff
==============================================================================
--- incubator/stanbol/trunk/ontologymanager/store/jena/pom.xml (original)
+++ incubator/stanbol/trunk/ontologymanager/store/jena/pom.xml Fri Jul 15
15:52:54 2011
@@ -56,12 +56,12 @@
<dependency>
<groupId>org.apache.stanbol</groupId>
- <artifactId>org.semanticweb.owlapi</artifactId>
+ <artifactId>org.apache.stanbol.owl</artifactId>
</dependency>
<dependency>
<groupId>org.apache.stanbol</groupId>
- <artifactId>org.semanticweb.owlapi.owllink</artifactId>
- </dependency>
+
<artifactId>org.apache.stanbol.reasoners.owllink</artifactId>
+ </dependency>
<dependency>
<groupId>org.apache.felix</groupId>
@@ -132,16 +132,10 @@
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.installer.core</artifactId>
- <version>3.1.2</version>
- <type>bundle</type>
- <scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.stanbol</groupId>
<artifactId>org.apache.stanbol.commons.stanboltools.datafileprovider</artifactId>
- <version>0.9-SNAPSHOT</version>
- <type>bundle</type>
- <scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
Modified:
incubator/stanbol/trunk/ontologymanager/store/jena/src/main/java/org/apache/stanbol/ontologymanager/store/jena/JenaPersistenceStore.java
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/ontologymanager/store/jena/src/main/java/org/apache/stanbol/ontologymanager/store/jena/JenaPersistenceStore.java?rev=1147204&r1=1147203&r2=1147204&view=diff
==============================================================================
---
incubator/stanbol/trunk/ontologymanager/store/jena/src/main/java/org/apache/stanbol/ontologymanager/store/jena/JenaPersistenceStore.java
(original)
+++
incubator/stanbol/trunk/ontologymanager/store/jena/src/main/java/org/apache/stanbol/ontologymanager/store/jena/JenaPersistenceStore.java
Fri Jul 15 15:52:54 2011
@@ -87,11 +87,13 @@ import org.semanticweb.owlapi.model.AddA
import org.semanticweb.owlapi.model.IRI;
import org.semanticweb.owlapi.model.OWLAxiom;
import org.semanticweb.owlapi.model.OWLClass;
+import org.semanticweb.owlapi.model.OWLClassExpression;
import org.semanticweb.owlapi.model.OWLDataFactory;
import org.semanticweb.owlapi.model.OWLDataProperty;
import org.semanticweb.owlapi.model.OWLLiteral;
import org.semanticweb.owlapi.model.OWLNamedIndividual;
import org.semanticweb.owlapi.model.OWLObjectProperty;
+import org.semanticweb.owlapi.model.OWLObjectPropertyExpression;
import org.semanticweb.owlapi.model.OWLOntology;
import org.semanticweb.owlapi.model.OWLOntologyChange;
import org.semanticweb.owlapi.model.OWLOntologyCreationException;
@@ -1561,7 +1563,7 @@ public class JenaPersistenceStore implem
OWLClass owlClass,
OWLReasoner reasoner) {
DisjointClasses disjointClasses =
objectFactory.createDisjointClasses();
- Set<OWLClass> disjClasses = reasoner.getDisjointClasses(owlClass,
false).getFlattened();
+ Set<OWLClass> disjClasses =
reasoner.getDisjointClasses(owlClass).getFlattened();
for (OWLClass klazz : disjClasses) {
ClassMetaInformation classMetaInformation =
generateClassMetaInformation(klazz.getIRI()
.toString());
@@ -2198,12 +2200,12 @@ public class JenaPersistenceStore implem
OWLObjectProperty owlObjectProperty,
OWLReasoner reasoner) {
EquivalentProperties equivalentProperties =
objectFactory.createEquivalentProperties();
- Set<OWLObjectProperty> equiProperties =
reasoner.getEquivalentObjectProperties(owlObjectProperty)
+ Set<OWLObjectPropertyExpression> equiProperties =
reasoner.getEquivalentObjectProperties(owlObjectProperty)
.getEntities();
- for (OWLObjectProperty objectProp : equiProperties) {
+ for (OWLObjectPropertyExpression objectProp : equiProperties) {
PropertyMetaInformation datatypePropertyMetaInformation =
generatePropertyMetaInformation(objectProp
- .getIRI().toString());
+ .getNamedProperty().getIRI().toString());
equivalentProperties.getPropertyMetaInformation().add(datatypePropertyMetaInformation);
}
return equivalentProperties;
@@ -2230,11 +2232,11 @@ public class JenaPersistenceStore implem
OWLObjectProperty owlObjectProperty,
OWLReasoner
reasoner) {
SuperProperties superProperties =
objectFactory.createSuperProperties();
- Set<OWLObjectProperty> supProperties =
reasoner.getSuperObjectProperties(owlObjectProperty, false)
+ Set<OWLObjectPropertyExpression> supProperties =
reasoner.getSuperObjectProperties(owlObjectProperty, false)
.getFlattened();
- for (OWLObjectProperty objectProp : supProperties) {
+ for (OWLObjectPropertyExpression objectProp : supProperties) {
PropertyMetaInformation datatypePropertyMetaInformation =
generatePropertyMetaInformation(objectProp
- .getIRI().toString());
+ .getNamedProperty().getIRI().toString());
superProperties.getPropertyMetaInformation().add(datatypePropertyMetaInformation);
}
return superProperties;
Modified: incubator/stanbol/trunk/ontologymanager/store/launchers/fise/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/ontologymanager/store/launchers/fise/pom.xml?rev=1147204&r1=1147203&r2=1147204&view=diff
==============================================================================
--- incubator/stanbol/trunk/ontologymanager/store/launchers/fise/pom.xml
(original)
+++ incubator/stanbol/trunk/ontologymanager/store/launchers/fise/pom.xml Fri
Jul 15 15:52:54 2011
@@ -16,7 +16,7 @@
<parent>
<groupId>org.apache.stanbol</groupId>
<artifactId>org.apache.stanbol.ontologymanager.store.parent</artifactId>
- <version>${stanbol-version}</version>
+ <version>0.9-SNAPSHOT</version>
<relativePath>../../parent</relativePath>
</parent>
@@ -24,7 +24,6 @@
<artifactId>org.apache.stanbol.ontologymanager.store.launchers.fise</artifactId>
<packaging>jar</packaging>
<name>Apache Stanbol Ontology Manager Store - Sling-based standalone
launcher - FISE version</name>
- <version>${stanbol-version}</version>
<description>Runnable jar that runs the Apache Stanbol Ontology Manager
Store with Enhancer</description>
<build>
Modified:
incubator/stanbol/trunk/ontologymanager/store/launchers/fise/src/main/bundles/list.xml
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/ontologymanager/store/launchers/fise/src/main/bundles/list.xml?rev=1147204&r1=1147203&r2=1147204&view=diff
==============================================================================
---
incubator/stanbol/trunk/ontologymanager/store/launchers/fise/src/main/bundles/list.xml
(original)
+++
incubator/stanbol/trunk/ontologymanager/store/launchers/fise/src/main/bundles/list.xml
Fri Jul 15 15:52:54 2011
@@ -1,389 +1,450 @@
<?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.
--->
- <!--
- List of initial bundles for the enhancer Sling-based
standalone launcher.
- -->
+<!-- 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. -->
+<!-- List of initial bundles for the enhancer Sling-based standalone launcher.
-->
<bundles>
- <!-- OSGi infrastructure -->
- <startLevel level="5">
- <bundle>
- <groupId>org.apache.sling</groupId>
- <artifactId>org.apache.sling.commons.log</artifactId>
- <version>2.0.6</version>
- </bundle>
- <bundle>
- <groupId>org.apache.felix</groupId>
- <artifactId>org.osgi.core</artifactId>
- <version>1.2.0</version>
- </bundle>
- <bundle>
- <groupId>org.apache.felix</groupId>
- <artifactId>org.apache.felix.scr</artifactId>
- <version>1.6.0</version>
- </bundle>
- <bundle>
- <groupId>org.apache.felix</groupId>
- <artifactId>org.apache.felix.configadmin</artifactId>
- <version>1.2.4</version>
- </bundle>
- <bundle>
- <groupId>org.apache.felix</groupId>
- <artifactId>org.apache.felix.metatype</artifactId>
- <version>1.0.4</version>
- </bundle>
- <bundle>
- <groupId>org.osgi</groupId>
- <artifactId>org.osgi.compendium</artifactId>
- <version>4.1.0</version>
- </bundle>
- </startLevel>
-
- <!-- HTTP service -->
- <startLevel level="5">
- <bundle>
- <groupId>org.apache.felix</groupId>
-
<artifactId>org.apache.felix.http.whiteboard</artifactId>
- <version>2.0.4</version>
- </bundle>
- </startLevel>
-
- <!-- Felix web console and plugins -->
- <startLevel level="10">
- <bundle>
- <groupId>org.apache.felix</groupId>
- <artifactId>org.apache.felix.webconsole</artifactId>
- <version>3.0.0</version>
- </bundle>
- <bundle>
- <groupId>org.apache.felix</groupId>
-
<artifactId>org.apache.felix.webconsole.plugins.memoryusage
- </artifactId>
- <version>1.0.0</version>
- </bundle>
- </startLevel>
-
- <!-- General-purpose libraries -->
- <startLevel level="10">
- <bundle>
- <groupId>commons-cli</groupId>
- <artifactId>commons-cli</artifactId>
- <version>1.2</version>
- </bundle>
- <bundle>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- <version>2.4</version>
- </bundle>
- <bundle>
- <groupId>commons-collections</groupId>
- <artifactId>commons-collections</artifactId>
- <version>3.2.1</version>
- </bundle>
- <bundle>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>1.4</version>
- </bundle>
- <bundle>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-compress</artifactId>
- <version>1.0</version>
- </bundle>
- <bundle>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpcore-osgi</artifactId>
- <version>4.0.1</version>
- </bundle>
- <bundle>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-math</artifactId>
- <version>2.1</version>
- </bundle>
- <bundle>
- <groupId>org.apache.derby</groupId>
- <artifactId>derby</artifactId>
- <version>10.6.2.1</version>
- </bundle>
- </startLevel>
-
- <!-- enhancer infrastructure and required libraries-->
- <startLevel level="15">
- <bundle>
- <groupId>org.apache.stanbol</groupId>
-
<artifactId>org.apache.stanbol.enhancer.servicesapi</artifactId>
- <version>0.9-SNAPSHOT</version>
- </bundle>
- <bundle>
- <groupId>org.apache.stanbol</groupId>
-
<artifactId>org.apache.stanbol.enhancer.standalone</artifactId>
- <version>0.9-SNAPSHOT</version>
- </bundle>
- <bundle>
- <groupId>org.apache.stanbol</groupId>
-
<artifactId>org.apache.stanbol.enhancer.jobmanager</artifactId>
- <version>0.9-SNAPSHOT</version>
- </bundle>
- </startLevel>
-
- <!-- Clerezza storage and sparql infrastructure -->
- <startLevel level="16">
- <bundle>
- <groupId>org.apache.clerezza</groupId>
- <artifactId>rdf.core</artifactId>
- <version>0.12-incubating-SNAPSHOT</version>
- </bundle>
- <bundle>
- <groupId>org.apache.clerezza</groupId>
- <artifactId>rdf.utils</artifactId>
- <version>0.13-incubating-SNAPSHOT</version>
- </bundle>
- <bundle>
- <groupId>org.apache.clerezza</groupId>
- <artifactId>utils</artifactId>
- <version>0.1-incubating-SNAPSHOT</version>
- </bundle>
- <bundle>
- <groupId>org.apache.clerezza</groupId>
- <artifactId>rdf.ontologies</artifactId>
- <version>0.11-incubating-SNAPSHOT</version>
- </bundle>
- <!--
- <bundle> <groupId>org.apache.clerezza</groupId>
- <artifactId>rdf.simple.storage</artifactId>
- <version>0.7-incubating-SNAPSHOT</version> </bundle>
- -->
- <bundle>
- <groupId>org.apache.clerezza</groupId>
- <artifactId>rdf.jena.sparql</artifactId>
- <version>0.5-incubating-SNAPSHOT</version>
- </bundle>
- <bundle>
- <groupId>org.apache.clerezza</groupId>
- <artifactId>rdf.jena.commons</artifactId>
- <version>0.5-incubating-SNAPSHOT</version>
- </bundle>
- <bundle>
- <groupId>org.apache.clerezza</groupId>
- <artifactId>rdf.jena.facade</artifactId>
- <version>0.12-incubating-SNAPSHOT</version>
- </bundle>
- <bundle>
- <groupId>org.apache.clerezza.ext</groupId>
- <artifactId>com.hp.hpl.jena.tdb</artifactId>
- <version>0.3-incubating-SNAPSHOT</version>
- </bundle>
- <bundle>
- <groupId>org.apache.clerezza.ext</groupId>
- <artifactId>javax.mail</artifactId>
- <version>0.4-incubating-SNAPSHOT</version>
- </bundle>
- <bundle>
- <groupId>org.wymiwyg</groupId>
- <artifactId>wymiwyg-commons-core</artifactId>
- <version>0.7.5</version>
- </bundle>
- <bundle>
- <groupId>org.apache.clerezza.ext</groupId>
- <artifactId>com.ibm.icu</artifactId>
- <version>0.5-incubating-SNAPSHOT</version>
- </bundle>
- <bundle>
- <groupId>org.apache.clerezza</groupId>
- <artifactId>rdf.jena.storage</artifactId>
- <version>0.5-incubating-SNAPSHOT</version>
- </bundle>
- <bundle>
- <groupId>org.apache.clerezza</groupId>
- <artifactId>rdf.jena.tdb.storage</artifactId>
- <version>0.5-incubating-SNAPSHOT</version>
- </bundle>
- <bundle>
- <groupId>org.apache.clerezza</groupId>
- <artifactId>rdf.jena.serializer</artifactId>
- <version>0.9-incubating-SNAPSHOT</version>
- </bundle>
- <bundle>
- <groupId>org.apache.clerezza</groupId>
- <artifactId>rdf.jena.parser</artifactId>
- <version>0.10-incubating-SNAPSHOT</version>
- </bundle>
- <bundle>
- <groupId>org.apache.clerezza</groupId>
- <artifactId>rdf.rdfjson</artifactId>
- <version>0.3-incubating-SNAPSHOT</version>
- </bundle>
- <bundle>
- <groupId>org.apache.clerezza.ext</groupId>
- <artifactId>org.json.simple</artifactId>
- <version>0.3-incubating-SNAPSHOT</version>
- </bundle>
- </startLevel>
-
- <!-- Clerezza SPARQL query engine -->
- <startLevel level="17">
- <bundle>
- <groupId>org.apache.stanbol</groupId>
-
<artifactId>org.apache.stanbol.enhancer.clerezza.sparql</artifactId>
- <version>0.9-SNAPSHOT</version>
- </bundle>
- </startLevel>
-
- <!-- Additional Clerezza serializers -->
-
- <startLevel level="17">
- <bundle>
- <groupId>org.apache.clerezza</groupId>
- <artifactId>rdf.jena.serializer</artifactId>
- <version>0.9-incubating-SNAPSHOT</version>
- </bundle>
- <!-- enhancer JSON-LD implementation -->
- <bundle>
- <groupId>org.apache.stanbol</groupId>
- <artifactId>org.apache.stanbol.jsonld</artifactId>
- <version>0.9-SNAPSHOT</version>
- </bundle>
- </startLevel>
-
- <!-- JAX-RS -->
- <startLevel level="5">
- <!--
- WARNING: jersey-core bug, must start before
jersey-server to avoid
- jersey spi class not found errors. Restart
jersey-server manually if
- getting those.
- -->
- <bundle>
- <groupId>com.sun.jersey</groupId>
- <artifactId>jersey-core</artifactId>
- <version>1.2</version>
- </bundle>
- </startLevel>
- <startLevel level="15">
- <bundle>
- <groupId>javax.ws.rs</groupId>
- <artifactId>jsr311-api</artifactId>
- <version>1.1.1</version>
- </bundle>
- <bundle>
- <groupId>com.sun.jersey</groupId>
- <artifactId>jersey-server</artifactId>
- <version>1.2</version>
- </bundle>
- <bundle>
- <groupId>org.codehaus.jettison</groupId>
- <artifactId>jettison</artifactId>
- <version>1.2</version>
- </bundle>
- </startLevel>
-
- <!-- enhancer plug-ins -->
- <startLevel level="20">
- <bundle> <groupId>org.apache.stanbol</groupId>
-
<artifactId>org.apache.stanbol.enhancer.jersey</artifactId>
- <version>0.9-SNAPSHOT</version>
- </bundle>
- <bundle>
- <groupId>org.apache.stanbol</groupId>
-
<artifactId>org.apache.stanbol.enhancer.engines.metaxa</artifactId>
- <version>0.9-SNAPSHOT</version>
- </bundle>
- </startLevel>
- <startLevel level="30">
- <bundle>
- <groupId>org.apache.stanbol</groupId>
-
<artifactId>org.apache.stanbol.enhancer.engines.langid</artifactId>
- <version>0.9-SNAPSHOT</version>
- </bundle>
- <bundle>
- <groupId>org.apache.stanbol</groupId>
-
<artifactId>org.apache.stanbol.enhancer.engines.autotagging</artifactId>
- <version>0.9-SNAPSHOT</version>
- </bundle>
- <bundle>
-
<groupId>org.apache.stanbol</groupId>
-
<artifactId>org.apache.stanbol.defaultdata</artifactId>
- <version>0.0.1</version>
- </bundle>
- <bundle>
- <groupId>org.apache.stanbol</groupId>
-
<artifactId>org.apache.stanbol.enhancer.engines.opennlp.ner</artifactId>
- <version>0.9-SNAPSHOT</version>
- </bundle>
- <!--
- The geonames.org LocationEnhancement Engines needs two
additional
- bundles 1) com.springsource.org.jdom 2)
- org.apache.stanbol.enhancer.ext.org.geonames (Rupert
Westenthaler 20100619)
- -->
- <bundle>
- <groupId>org.apache.stanbol</groupId>
-
<artifactId>org.apache.stanbol.enhancer.engines.geonames</artifactId>
- <version>0.9-SNAPSHOT</version>
- </bundle>
- <bundle>
-
<groupId>org.apache.stanbol</groupId>
-
<artifactId>org.apache.stanbol.commons.stanboltools.offline</artifactId>
- <version>0.9-SNAPSHOT</version>
- </bundle>
- <bundle>
- <groupId>org.jdom</groupId>
- <artifactId>jdom</artifactId>
- <version>1.1</version>
- </bundle>
-
- </startLevel>
- <!-- Persistence Store Bundles-->
- <startLevel level="25">
- <bundle>
- <groupId>org.apache.stanbol</groupId>
-
<artifactId>org.apache.stanbol.ontologymanager.store.api</artifactId>
- <version>0.9-SNAPSHOT</version>
- </bundle>
- <bundle>
- <groupId>org.apache.stanbol</groupId>
-
<artifactId>org.apache.stanbol.ontologymanager.store.web</artifactId>
- <version>0.9-SNAPSHOT</version>
- </bundle>
- <bundle>
- <groupId>org.apache.stanbol</groupId>
-
<artifactId>org.apache.stanbol.ontologymanager.store.jena</artifactId>
- <version>0.9-SNAPSHOT</version>
- </bundle>
- <bundle>
- <groupId>org.apache.stanbol</groupId>
-
<artifactId>org.apache.stanbol.ontologymanager.store.clerezza</artifactId>
- <version>0.9-SNAPSHOT</version>
- </bundle>
- <!-- <bundle>
- <groupId>org.apache.stanbol</groupId>
-
<artifactId>org.apache.stanbol.ontologymanager.store.adapter</artifactId>
- <version>0.9-SNAPSHOT</version>
- </bundle> -->
- <bundle>
- <groupId>org.apache.stanbol</groupId>
- <artifactId>org.semanticweb.owlapi.owllink</artifactId>
- <version>1.0.2-SNAPSHOT</version>
- </bundle>
- <bundle>
- <groupId>org.apache.stanbol</groupId>
- <artifactId>org.semanticweb.owlapi</artifactId>
- <version>3.0.0-SNAPSHOT</version>
- </bundle>
-
- </startLevel>
+ <!-- OSGi infrastructure -->
+ <startLevel level="5">
+ <bundle>
+ <groupId>org.apache.sling</groupId>
+ <artifactId>org.apache.sling.commons.log</artifactId>
+ <version>2.1.2</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>org.osgi.core</artifactId>
+ <version>1.2.0</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>org.apache.felix.scr</artifactId>
+ <version>1.6.0</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>org.apache.felix.configadmin</artifactId>
+ <version>1.2.8</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>org.apache.felix.metatype</artifactId>
+ <version>1.0.4</version>
+ </bundle>
+ </startLevel>
+
+ <!-- HTTP service -->
+ <startLevel level="5">
+ <bundle>
+ <groupId>org.apache.felix</groupId>
+
<artifactId>org.apache.felix.http.whiteboard</artifactId>
+ <version>2.0.4</version>
+ </bundle>
+ <bundle>
+ <groupId>org.osgi</groupId>
+ <artifactId>org.osgi.compendium</artifactId>
+ <version>4.1.0</version>
+ </bundle>
+ </startLevel>
+
+ <!-- Felix web console and plugins -->
+ <startLevel level="9">
+ <bundle>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>org.apache.felix.webconsole</artifactId>
+ <version>3.1.8</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.felix</groupId>
+
<artifactId>org.apache.felix.webconsole.plugins.memoryusage
+ </artifactId>
+ <version>1.0.2</version>
+ </bundle>
+ </startLevel>
+
+ <!-- General-purpose libraries -->
+ <startLevel level="10">
+ <bundle>
+ <groupId>commons-cli</groupId>
+ <artifactId>commons-cli</artifactId>
+ <version>1.2</version>
+ </bundle>
+ <bundle>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ <version>2.4</version>
+ </bundle>
+ <bundle>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ <version>3.2.1</version>
+ </bundle>
+ <bundle>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <version>1.4</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-compress</artifactId>
+ <version>1.0</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpcore-osgi</artifactId>
+ <version>4.0.1</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-math</artifactId>
+ <version>2.1</version>
+ </bundle>
+ <bundle>
+ <groupId>commons-codec</groupId>
+ <artifactId>commons-codec</artifactId>
+ <version>1.5</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.tika</groupId>
+ <artifactId>tika-core</artifactId>
+ <version>0.9</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.derby</groupId>
+ <artifactId>derby</artifactId>
+ <version>10.7.1.1</version>
+ </bundle>
+ </startLevel>
+
+ <!-- Jersey -->
+ <!-- Jersey -->
+ <startLevel level="14">
+ <!-- NOTE: jersey-core bug, must start before jersey-server to
avoid jersey
+ spi class not found errors. Restart jersey-server
manually if getting those. -->
+ <bundle>
+ <groupId>com.sun.jersey</groupId>
+ <artifactId>jersey-core</artifactId>
+ <version>1.7</version>
+ </bundle>
+ </startLevel>
+ <startLevel level="15">
+ <bundle>
+ <groupId>com.sun.jersey</groupId>
+ <artifactId>jersey-server</artifactId>
+ <version>1.7</version>
+ </bundle>
+ <bundle>
+ <groupId>com.sun.jersey</groupId>
+ <artifactId>jersey-client</artifactId>
+ <version>1.7</version>
+ </bundle>
+ <!-- needed to read data from mime multipart requests -->
+ <bundle>
+ <groupId>com.sun.jersey.contribs</groupId>
+ <artifactId>jersey-multipart</artifactId>
+ <version>1.7</version>
+ </bundle>
+ <!-- dependency of jersey-multipart -->
+ <bundle>
+ <groupId>org.jvnet</groupId>
+ <artifactId>mimepull</artifactId>
+ <version>1.4</version>
+ </bundle>
+ <bundle> <!-- used also for all the other JSON parsing/writing
in Stanbol -->
+ <groupId>org.codehaus.jettison</groupId>
+ <artifactId>jettison</artifactId>
+ <version>1.3</version>
+ </bundle>
+ </startLevel>
+
+
+ <!-- enhancer infrastructure and required libraries -->
+ <startLevel level="15">
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.enhancer.servicesapi</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.enhancer.standalone</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.enhancer.jobmanager</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ </startLevel>
+
+ <!-- Clerezza storage and sparql infrastructure -->
+ <startLevel level="16">
+ <bundle>
+ <groupId>org.apache.clerezza</groupId>
+ <artifactId>org.apache.clerezza.rdf.core</artifactId>
+ <version>0.12-incubating-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.clerezza</groupId>
+ <artifactId>org.apache.clerezza.rdf.utils</artifactId>
+ <version>0.13-incubating-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.clerezza</groupId>
+ <artifactId>org.apache.clerezza.utils</artifactId>
+ <version>0.1-incubating-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.clerezza</groupId>
+
<artifactId>org.apache.clerezza.rdf.ontologies</artifactId>
+ <version>0.11-incubating-SNAPSHOT</version>
+ </bundle>
+ <!-- <bundle> <groupId>org.apache.clerezza</groupId>
<artifactId>org.apache.clerezza.rdf.simple.storage</artifactId>
+ <version>0.7-incubating-SNAPSHOT</version> </bundle> -->
+ <bundle>
+ <groupId>org.apache.clerezza</groupId>
+
<artifactId>org.apache.clerezza.rdf.jena.sparql</artifactId>
+ <version>0.5-incubating-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.clerezza</groupId>
+
<artifactId>org.apache.clerezza.rdf.jena.commons</artifactId>
+ <version>0.5-incubating-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.clerezza</groupId>
+
<artifactId>org.apache.clerezza.rdf.jena.facade</artifactId>
+ <version>0.12-incubating-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.clerezza.ext</groupId>
+ <artifactId>com.hp.hpl.jena.tdb</artifactId>
+ <version>0.3-incubating-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.clerezza.ext</groupId>
+ <artifactId>javax.mail</artifactId>
+ <version>0.4-incubating-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.wymiwyg</groupId>
+ <artifactId>wymiwyg-commons-core</artifactId>
+ <version>0.7.5</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.clerezza.ext</groupId>
+ <artifactId>com.ibm.icu</artifactId>
+ <version>0.5-incubating-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.clerezza</groupId>
+
<artifactId>org.apache.clerezza.rdf.jena.storage</artifactId>
+ <version>0.5-incubating-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.clerezza</groupId>
+
<artifactId>org.apache.clerezza.rdf.jena.tdb.storage</artifactId>
+ <version>0.5-incubating-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.clerezza</groupId>
+
<artifactId>org.apache.clerezza.rdf.jena.serializer</artifactId>
+ <version>0.9-incubating-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.clerezza</groupId>
+
<artifactId>org.apache.clerezza.rdf.jena.parser</artifactId>
+ <version>0.10-incubating-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.clerezza</groupId>
+ <artifactId>org.apache.clerezza.rdf.rdfjson</artifactId>
+ <version>0.3-incubating-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.clerezza.ext</groupId>
+ <artifactId>org.json.simple</artifactId>
+ <version>0.3-incubating-SNAPSHOT</version>
+ </bundle>
+ </startLevel>
+
+ <!-- Additional Clerezza serializers -->
+ <startLevel level="16">
+ <bundle>
+ <groupId>org.apache.clerezza</groupId>
+
<artifactId>org.apache.clerezza.rdf.jena.serializer</artifactId>
+ <version>0.9-incubating-SNAPSHOT</version>
+ </bundle>
+ </startLevel>
+
+ <!-- Stanbol Commons -->
+ <startLevel level="17">
+ <!-- Allows to run Stanbol in offline mode -->
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.commons.stanboltools.offline
+ </artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <!-- DataFileProvider and implementations -->
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.commons.stanboltools.datafileprovider
+ </artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.commons.stanboltools.datafileprovider.bundle
+ </artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <!-- OpenNLP as bundle + utilities -->
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.commons.opennlp</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <!-- support for JSON-LD -->
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.commons.jsonld</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <!-- The common web interface -->
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.commons.web.base</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.commons.web.home</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.commons.web.sparql</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+
+ </startLevel>
+
+ <!-- Clerezza based SPARQL query engine -->
+ <startLevel level="20">
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.enhancer.clerezza.sparql</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ </startLevel>
+
+ <!-- enhancer plug-ins -->
+ <startLevel level="20">
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.enhancer.jersey</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.enhancer.engines.metaxa</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ </startLevel>
+
+ <!-- OWLAPI and OWLLINK -->
+ <startLevel level="22">
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+ <artifactId>org.apache.stanbol.owl</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.reasoners.owllink</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ </startLevel>
+
+
+ <!-- Persistence Store Bundles -->
+ <startLevel level="25">
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.ontologymanager.store.api</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.ontologymanager.store.rest.client
+ </artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.ontologymanager.store.jena
+ </artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.ontologymanager.store.clerezza
+ </artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.commons.web.ontology</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ </startLevel>
+
+ <startLevel level="30">
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.enhancer.engines.langid</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.enhancer.engines.autotagging
+ </artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+ <artifactId>org.apache.stanbol.defaultdata</artifactId>
+ <version>0.0.3</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.enhancer.engines.opennlp.ner
+ </artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <!-- The geonames.org LocationEnhancement Engines needs two
additional
+ bundles 1) com.springsource.org.jdom 2)
org.apache.stanbol.enhancer.ext.org.geonames
+ (Rupert Westenthaler 20100619) -->
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.enhancer.engines.geonames</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.commons.stanboltools.offline
+ </artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ </startLevel>
</bundles>
Modified: incubator/stanbol/trunk/ontologymanager/store/parent/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/ontologymanager/store/parent/pom.xml?rev=1147204&r1=1147203&r2=1147204&view=diff
==============================================================================
--- incubator/stanbol/trunk/ontologymanager/store/parent/pom.xml (original)
+++ incubator/stanbol/trunk/ontologymanager/store/parent/pom.xml Fri Jul 15
15:52:54 2011
@@ -29,14 +29,9 @@
<inceptionYear>2010</inceptionYear>
- <scm>
-
<connection>scm:svn:http://iks-project.googlecode.com/svn/sandbox/persistencestore/trunk/parent</connection>
-
<developerConnection>scm:svn:https://iks-project.googlecode.com/svn/sandbox/persistencestore/trunk/parent</developerConnection>
- </scm>
-
<dependencyManagement>
<dependencies>
- <!-- Ontology Manager - Store-->
+ <!-- Ontology Manager - Store -->
<dependency>
<groupId>org.apache.stanbol</groupId>
<artifactId>org.apache.stanbol.ontologymanager.store.api</artifactId>
@@ -79,32 +74,18 @@
<version>${stanbol-version}</version>
<scope>provided</scope>
</dependency>
-
+
<!-- OWL -->
<dependency>
<groupId>org.apache.stanbol</groupId>
- <artifactId>org.semanticweb.owlapi</artifactId>
- <version>3.0.0-SNAPSHOT</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.semanticweb.owlapi</groupId>
- <artifactId>owlapi</artifactId>
- <version>3.0.0</version>
- <type>jar</type>
+ <artifactId>org.apache.stanbol.owl</artifactId>
+ <version>${stanbol-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.stanbol</groupId>
-
<artifactId>org.semanticweb.owlapi.owllink</artifactId>
- <version>1.0.2-SNAPSHOT</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.semanticweb.owlapi</groupId>
- <artifactId>owllink</artifactId>
- <version>1.0.2</version>
- <type>jar</type>
+
<artifactId>org.apache.stanbol.reasoners.owllink</artifactId>
+ <version>${stanbol-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
@@ -114,7 +95,7 @@
<type>jar</type>
<scope>provided</scope>
</dependency>
-
+
<!--Apache Derby -->
<dependency>
<groupId>org.apache.derby</groupId>
@@ -122,7 +103,7 @@
<version>10.6.2.1</version>
<scope>provided</scope>
</dependency>
-
+
<!-- Commmons -->
<dependency>
<groupId>org.apache.commons</groupId>
@@ -130,15 +111,15 @@
<version>2.1</version>
<scope>provided</scope>
</dependency>
-
- <!-- Jersey Client-->
+
+ <!-- Jersey Client -->
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-client</artifactId>
<version>${jersey-version}</version>
- <scope>provided</scope>
+ <scope>provided</scope>
</dependency>
- </dependencies>
+ </dependencies>
</dependencyManagement>
</project>
Modified: incubator/stanbol/trunk/ontologymanager/store/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/ontologymanager/store/pom.xml?rev=1147204&r1=1147203&r2=1147204&view=diff
==============================================================================
--- incubator/stanbol/trunk/ontologymanager/store/pom.xml (original)
+++ incubator/stanbol/trunk/ontologymanager/store/pom.xml Fri Jul 15 15:52:54
2011
@@ -44,14 +44,12 @@
<modules>
<module>parent</module>
- <module>ext/org.semanticweb.owlapi</module>
- <module>ext/org.semanticweb.owlapi.owllink</module>
<module>api</module>
<module>rest-client</module>
<module>jena</module>
<module>clerezza</module>
<module>tdb</module>
- <!--<module>fise-adapter</module>-->
- <!--<module>launchers/lite</module>-->
+ <module>../../commons/web/ontology</module>
+ <module>launchers/fise</module>
</modules>
</project>
Modified: incubator/stanbol/trunk/reasoners/owllink/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/owllink/pom.xml?rev=1147204&r1=1147203&r2=1147204&view=diff
==============================================================================
--- incubator/stanbol/trunk/reasoners/owllink/pom.xml (original)
+++ incubator/stanbol/trunk/reasoners/owllink/pom.xml Fri Jul 15 15:52:54 2011
@@ -61,6 +61,13 @@
<version>${stanbol-version}</version>
<scope>provided</scope>
</dependency>
+ <dependency>
+ <groupId>com.sun.org.apache</groupId>
+ <artifactId>jaxp-ri</artifactId>
+ <version>1.4</version>
+ <type>jar</type>
+ <scope>compile</scope>
+ </dependency>
<!-- Testing deps -->
<dependency>
@@ -73,7 +80,7 @@
<artifactId>slf4j-log4j12</artifactId>
<scope>test</scope>
</dependency>
-
+
</dependencies>
<build>
@@ -91,13 +98,10 @@
<Private-Package>
eu.iksproject.kres.shared.dependency.owllink.*
</Private-Package>
+ <Embed-Dependency>jaxp-ri</Embed-Dependency>
+ <Embed-Transitive>true</Embed-Transitive>
<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,
+ !com.sun.java_cup.*,
!org.mortbay.http,
!org.mortbay.http.handler,
!org.mortbay.util,
@@ -107,17 +111,10 @@
!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
+ !uk.ac.manchester.cs.owl,
+ *
</Import-Package>
<_nouses>true</_nouses>
</instructions>