Author: alexdma Date: Tue Feb 7 18:00:02 2012 New Revision: 1241536 URL: http://svn.apache.org/viewvc?rev=1241536&view=rev Log: * OntoNet collectors can now return managed ontologies in OWLOntology format including the merged owl:imports closure (STANBOL-486) * Applied Alberto Musetti's patch for Refactor Engine metatype labeling. Thanks for the job (STANBOL-468) * Renamed Java packages in commons.owl and their references across the entire Stanbol (STANBOL-463) * Changed old references to stanbol.owl that I had missed in the previous commit. Sorry (STANBOL-463)
Modified: incubator/stanbol/branches/ontonet-showcase/explanation/core/pom.xml incubator/stanbol/branches/ontonet-showcase/explanation/core/src/main/java/org/apache/stanbol/explanation/impl/clerezza/ClerezzaSchemaMatcherImpl.java Modified: incubator/stanbol/branches/ontonet-showcase/explanation/core/pom.xml URL: http://svn.apache.org/viewvc/incubator/stanbol/branches/ontonet-showcase/explanation/core/pom.xml?rev=1241536&r1=1241535&r2=1241536&view=diff ============================================================================== --- incubator/stanbol/branches/ontonet-showcase/explanation/core/pom.xml (original) +++ incubator/stanbol/branches/ontonet-showcase/explanation/core/pom.xml Tue Feb 7 18:00:02 2012 @@ -143,7 +143,7 @@ </dependency> <dependency> <groupId>org.apache.stanbol</groupId> - <artifactId>org.apache.stanbol.owl</artifactId> + <artifactId>org.apache.stanbol.commons.owl</artifactId> <scope>provided</scope> </dependency> <dependency> Modified: incubator/stanbol/branches/ontonet-showcase/explanation/core/src/main/java/org/apache/stanbol/explanation/impl/clerezza/ClerezzaSchemaMatcherImpl.java URL: http://svn.apache.org/viewvc/incubator/stanbol/branches/ontonet-showcase/explanation/core/src/main/java/org/apache/stanbol/explanation/impl/clerezza/ClerezzaSchemaMatcherImpl.java?rev=1241536&r1=1241535&r2=1241536&view=diff ============================================================================== --- incubator/stanbol/branches/ontonet-showcase/explanation/core/src/main/java/org/apache/stanbol/explanation/impl/clerezza/ClerezzaSchemaMatcherImpl.java (original) +++ incubator/stanbol/branches/ontonet-showcase/explanation/core/src/main/java/org/apache/stanbol/explanation/impl/clerezza/ClerezzaSchemaMatcherImpl.java Tue Feb 7 18:00:02 2012 @@ -30,6 +30,7 @@ import org.apache.felix.scr.annotations. import org.apache.felix.scr.annotations.Deactivate; import org.apache.felix.scr.annotations.Reference; import org.apache.felix.scr.annotations.Service; +import org.apache.stanbol.commons.owl.transformation.OWLAPIToClerezzaConverter; import org.apache.stanbol.explanation.api.Configuration; import org.apache.stanbol.explanation.api.Schema; import org.apache.stanbol.explanation.api.SchemaMatcher; @@ -44,7 +45,6 @@ import org.apache.stanbol.ontologymanage import org.apache.stanbol.ontologymanager.ontonet.api.ontology.UnmodifiableOntologyCollectorException; import org.apache.stanbol.ontologymanager.registry.api.RegistryContentException; import org.apache.stanbol.ontologymanager.registry.api.model.Library; -import org.apache.stanbol.owl.transformation.OWLAPIToClerezzaConverter; import org.osgi.service.component.ComponentContext; import org.semanticweb.owlapi.model.OWLOntology; import org.slf4j.Logger;