Author: enridaga
Date: Tue May 17 10:21:33 2011
New Revision: 1104107
URL: http://svn.apache.org/viewvc?rev=1104107&view=rev
Log:
Copied the kres launcher in the /launchers folder. The artifact has been
renamed org.apache.stanbol.launchers.kres (STANBOL-204). Next steps: 1) remove
the old version in the /kres folder and 2) remove the /kres folder from root
Added:
incubator/stanbol/trunk/launchers/kres/ (with props)
incubator/stanbol/trunk/launchers/kres/README.txt
incubator/stanbol/trunk/launchers/kres/pom.xml
incubator/stanbol/trunk/launchers/kres/src/
incubator/stanbol/trunk/launchers/kres/src/main/
incubator/stanbol/trunk/launchers/kres/src/main/bundles/
incubator/stanbol/trunk/launchers/kres/src/main/bundles/list.xml
incubator/stanbol/trunk/launchers/kres/src/main/resources/
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.ReferencedSiteEntityTaggingEnhancementEngine-dbPedia.config
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.core.impl.EntityhubConfigurationImpl.config
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.core.site.CacheImpl-dbPediaLocalCache.config
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.site.referencedSite-dbPediaSite.config
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.DefaultSolrDirectoryManager.cfg
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-dbPediaLocalCacheYard.config
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-entityhubYard.config
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.examples.ExampleBootstrapConfig.cfg
Propchange: incubator/stanbol/trunk/launchers/kres/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue May 17 10:21:33 2011
@@ -0,0 +1,4 @@
+.settings
+.project
+target
+.classpath
Added: incubator/stanbol/trunk/launchers/kres/README.txt
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/kres/README.txt?rev=1104107&view=auto
==============================================================================
--- incubator/stanbol/trunk/launchers/kres/README.txt (added)
+++ incubator/stanbol/trunk/launchers/kres/README.txt Tue May 17 10:21:33 2011
@@ -0,0 +1,24 @@
+This module builds a runnable Stanbol jar using the Sling Launchpad Maven
plugin,
+including Knowledge Representation and Reasoning modules.
+
+The bundles included are defined at src/main/bundles/list.xml
+
+That Sling plugin is not released as I write this, so you need to build it
+(source at
http://svn.apache.org/repos/asf/sling/trunk/maven/maven-launchpad-plugin)
+
+To start this after building use:
+
+ java -Xmx512M -jar target/org.apache.stanbol.launchers.kres-0.9-SNAPSHOT.jar
+
+The main Stanbol HTTP endpoint should then be available at
+
+ http://localhost:8080
+
+Configure any required parameter at
+
+ http://localhost:8080/system/console/
+
+The OSGi state is stored in the ./sling folder.
+
+The logs are found at sling/logs/error.log and can be configured from the
+OSGi console.
Added: incubator/stanbol/trunk/launchers/kres/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/kres/pom.xml?rev=1104107&view=auto
==============================================================================
--- incubator/stanbol/trunk/launchers/kres/pom.xml (added)
+++ incubator/stanbol/trunk/launchers/kres/pom.xml Tue May 17 10:21:33 2011
@@ -0,0 +1,94 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.stanbol</groupId>
+ <artifactId>stanbol-parent</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ <relativePath>../../../parent</relativePath>
+ </parent>
+
+ <groupId>org.apache.stanbol</groupId>
+ <artifactId>org.apache.stanbol.launchers.kres</artifactId>
+ <packaging>jar</packaging>
+
+ <name>Apache Stanbol KReS Sling-based standalone launcher</name>
+ <description>Runnable jar that runs the KReS configuration</description>
+ <scm>
+ <connection>
+
scm:svn:http://svn.apache.org/repos/asf/incubator/stanbol/trunk/launchers/kres/
+ </connection>
+ <developerConnection>
+
scm:svn:https://svn.apache.org/repos/asf/incubator/stanbol/trunk/launchers/kres/
+ </developerConnection>
+ <url>http://incubator.apache.org/stanbol/</url>
+ </scm>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-clean-plugin</artifactId>
+ <configuration>
+ <filesets>
+ <fileset>
+ <directory>.</directory>
+ <includes>
+
<include>sling/**</include>
+ </includes>
+ </fileset>
+ </filesets>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.sling</groupId>
+ <artifactId>maven-launchpad-plugin</artifactId>
+ <!--
+ TODO the maven-launchpad-plugin can
also generate a war file and
+ Karaf description, we could add this.
See
+
http://sling.apache.org/site/maven-launchpad-plugin.html
+ -->
+ <executions>
+ <execution>
+ <id>prepare-package</id>
+ <goals>
+
<goal>prepare-package</goal>
+ </goals>
+ <configuration>
+
<includeDefaultBundles>false</includeDefaultBundles>
+ <!-- Standalone jar
requires an OSGi http service implementation -->
+ <jarWebSupport>
+
<groupId>org.apache.felix</groupId>
+
<artifactId>org.apache.felix.http.jetty</artifactId>
+
<version>2.2.0</version>
+ </jarWebSupport>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifest>
+ <!-- make the generated
jar runnable -->
+
<addClasspath>true</addClasspath>
+
<mainClass>org.apache.sling.launchpad.app.Main</mainClass>
+
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+ </manifest>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <!-- maven-launchpad-plugin builds on the
launchpad.base app -->
+ <groupId>org.apache.sling</groupId>
+ <artifactId>org.apache.sling.launchpad.base</artifactId>
+ <classifier>app</classifier>
+ </dependency>
+ </dependencies>
+</project>
Added: incubator/stanbol/trunk/launchers/kres/src/main/bundles/list.xml
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/kres/src/main/bundles/list.xml?rev=1104107&view=auto
==============================================================================
--- incubator/stanbol/trunk/launchers/kres/src/main/bundles/list.xml (added)
+++ incubator/stanbol/trunk/launchers/kres/src/main/bundles/list.xml Tue May 17
10:21:33 2011
@@ -0,0 +1,604 @@
+<?xml version="1.0" encoding="UTF-8"?>
+ <!--
+ List of initial bundles for the Stanbol Enhancer Sling-based
standalone launcher.
+ -->
+<bundles>
+
+ <!-- OSGi infrastructure -->
+ <startLevel level="5">
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.frameworkfragment</artifactId>
+ <version>0.9.0-SNAPSHOT</version>
+ </bundle>
+ <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.4</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="10">
+ <bundle>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>org.apache.felix.webconsole</artifactId>
+ <version>3.1.2</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.felix</groupId>
+
<artifactId>org.apache.felix.webconsole.plugins.memoryusage
+ </artifactId>
+ <version>1.0.2</version>
+ </bundle>
+ </startLevel>
+
+ <!-- Sling installer and Stanbol extensions -->
+ <startLevel level="9">
+ <bundle>
+ <groupId>org.apache.sling</groupId>
+ <artifactId>org.apache.sling.installer.core</artifactId>
+ <version>3.1.2</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.commons.installer.bundleprovider</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+<!-- <bundle>
+ <groupId>org.apache.sling</groupId>
+
<artifactId>org.apache.sling.installer.provider.file</artifactId>
+ <version>1.0.0</version>
+ </bundle> -->
+ </startLevel>
+ <!-- Sling launchpad -->
+ <startLevel level="10">
+ <bundle>
+ <groupId>org.apache.sling</groupId>
+ <artifactId>org.apache.sling.launchpad.installer</artifactId>
+ <version>1.0.0</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.sling</groupId>
+ <artifactId>org.apache.sling.launchpad.api</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>commons-httpclient</groupId>
+ <artifactId>commons-httpclient</artifactId>
+ <version>3.1</version>
+ </bundle>
+ <bundle>
+ <groupId>commons-codec</groupId>
+ <artifactId>commons-codec</artifactId>
+ <version>1.4</version>
+ </bundle>
+ <bundle>
+ <groupId>commons-fileupload</groupId>
+ <artifactId>commons-fileupload</artifactId>
+ <version>1.2.2</version>
+ </bundle>
+ <bundle>
+ <groupId>joda-time</groupId>
+ <artifactId>joda-time</artifactId>
+ <version>1.6.2</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>
+
+ <!-- Jersey -->
+ <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>
+
+ <!-- Stanbol 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>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.commons.stanboltools.offline</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.commons.stanboltools.datafileprovider</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>
+
+ <!-- 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>org.apache.clerezza.rdf.jena.serializer</artifactId>
+ <version>0.9-incubating-SNAPSHOT</version>
+ </bundle>
+ <!-- Stanbol JSON-LD implementation -->
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+ <artifactId>org.apache.stanbol.jsonld</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <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>
+
+ <!-- Stanbol 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.contenthub.web</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>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.enhancer.benchmark</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ </startLevel>
+
+ <!-- Stanbol Enhancer Enhancement Engines -->
+ <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.opencalais</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) jettyjson 2) commons-io. Both of them are
already
+ present in the bundle list.
+ -->
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.enhancer.engines.geonames</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <!-- Entity Tagging Engine based on RICK -->
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.enhancer.engine.entitytagging</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ </startLevel>
+
+ <!-- RICK infrastructure and required libraries-->
+ <startLevel level="15">
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+ <artifactId>org.apache.stanbol.entityhub.servicesapi</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+ <artifactId>org.apache.stanbol.entityhub.model.clerezza</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+ <artifactId>org.apache.stanbol.entityhub.query.clerezza</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+ <artifactId>org.apache.stanbol.entityhub.site.linkeddata</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+ <artifactId>org.apache.stanbol.entityhub.yard.clerezza</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+ <artifactId>org.apache.stanbol.entityhub.yard.solr</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ </startLevel>
+ <startLevel level="16">
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+ <artifactId>org.apache.stanbol.entityhub.core</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+ <artifactId>org.apache.stanbol.entityhub.jersey</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ </startLevel>
+
+ <startLevel level="20">
+ <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.ontologymanager.ontonet</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.reasoners.base</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.reasoners.hermit</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>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.reengineer.base</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.reengineer.xerces</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+ <artifactId>org.apache.stanbol.rules.base</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.rules.manager</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.rules.refactor</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ </startLevel>
+
+ <startLevel level="28">
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.reengineer.db</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.reengineer.xml</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ </startLevel>
+
+ <!--
+ <startLevel level="29">
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+ <artifactId>org.apache.stanbol.kres.jersey</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ </startLevel>
+ -->
+
+ <startLevel level="30">
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.ontologymanager.web</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.reasoners.web</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.reengineer.web</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+ <artifactId>org.apache.stanbol.rules.web</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ </startLevel>
+
+ <!-- Persistence Store Bundles-->
+ <!-- <startLevel level="25">
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.enhancer.stores.persistencestore
+ </artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.enhancer.stores.persistencestore.jena
+ </artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.enhancer.stores.persistencestore.jena.tdb
+ </artifactId>
+ <version>0.9-SNAPSHOT</version>
+ </bundle>
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.enhancer.stores.persistencestore.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>-->
+
+</bundles>
Added:
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.ReferencedSiteEntityTaggingEnhancementEngine-dbPedia.config
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.ReferencedSiteEntityTaggingEnhancementEngine-dbPedia.config?rev=1104107&view=auto
==============================================================================
---
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.ReferencedSiteEntityTaggingEnhancementEngine-dbPedia.config
(added)
+++
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.ReferencedSiteEntityTaggingEnhancementEngine-dbPedia.config
Tue May 17 10:21:33 2011
@@ -0,0 +1,8 @@
+org.apache.stanbol.enhancer.engines.entitytagging.nameField="rdfs:label"
+org.apache.stanbol.enhancer.engines.entitytagging.personType="dbp-ont:Person"
+org.apache.stanbol.enhancer.engines.entitytagging.personState=B"true"
+org.apache.stanbol.enhancer.engines.entitytagging.referencedSiteId="dbpedia"
+org.apache.stanbol.enhancer.engines.entitytagging.placeState=B"true"
+org.apache.stanbol.enhancer.engines.entitytagging.organisationState=B"true"
+org.apache.stanbol.enhancer.engines.entitytagging.organisationType="dbp-ont:Organisation"
+org.apache.stanbol.enhancer.engines.entitytagging.placeType="dbp-ont:Place"
Added:
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.core.impl.EntityhubConfigurationImpl.config
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.core.impl.EntityhubConfigurationImpl.config?rev=1104107&view=auto
==============================================================================
---
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.core.impl.EntityhubConfigurationImpl.config
(added)
+++
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.core.impl.EntityhubConfigurationImpl.config
Tue May 17 10:21:33 2011
@@ -0,0 +1,8 @@
+org.apache.stanbol.entityhub.description="The\ entityhub\ holding\ all\
locally\ managed\ entities"
+org.apache.stanbol.entityhub.id="entityhub"
+org.apache.stanbol.entityhub.name="Entityhub"
+org.apache.stanbol.entityhub.defaultSymbolState="proposed"
+org.apache.stanbol.entityhub.defaultMappingState="proposed"
+org.apache.stanbol.entityhub.mapping.entityhub=["|\
@\=null;en;de;fr;it","rdfs:label","rdfs:label\ >\
entityhub:label","rdfs:comment","rdfs:comment\ >\
entityhub:description","rdf:type\ |\ d\=entityhub:ref","owl:sameAs\ |\
d\=entityhub:ref","dc:*","dc:title\ >\ entityhub:label","dc:description\ >\
entityhub:description","dc-elements:*","dc-elements:title\ >\
entityhub:label","dc-elements:description\ >\ entityhub:description","geo:lat\
|\ d\=xsd:double","geo:long\ |\ d\=xsd:double","geo:alt\ |\
d\=xsd:int;xsd:float","skos:*","skos:prefLabel\ \ >\
entityhub:label","skos:definition\ >\ entityhub:description","skos:note\ >\
entityhub:description","skos:broader\ |\ d\=entityhub:ref","skos:narrower\ |\
d\=entityhub:ref","skos:related\ |\ d\=entityhub:ref","skos:subject\ |\
d\=entityhub:ref","skos:inScheme\ |\ d\=entityhub:ref","foaf:*","foaf:name\ >\
entityhub:label","foaf:homepage\ |\ d\=xsd:anyURI","foaf:depiction\ |\
d\=xsd:anyURI","foaf:img\ |\ d\=xsd:anyURI","foaf:logo\ |\ d
\=xsd:anyURI","foaf:page\ |\ d\=xsd:anyURI"]
+org.apache.stanbol.entityhub.yard.entityhubYardId="entityhubYard"
+org.apache.stanbol.entityhub.prefix="urn:org.apache.stanbol:entityhub:"
Added:
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.core.site.CacheImpl-dbPediaLocalCache.config
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.core.site.CacheImpl-dbPediaLocalCache.config?rev=1104107&view=auto
==============================================================================
---
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.core.site.CacheImpl-dbPediaLocalCache.config
(added)
+++
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.core.site.CacheImpl-dbPediaLocalCache.config
Tue May 17 10:21:33 2011
@@ -0,0 +1,3 @@
+service.pid="org.apache.stanbol.entityhub.core.site.CacheImpl.dbpediaLocalCache"
+org.apache.stanbol.entityhub.yard.cacheYardId="dbpediaCache"
+org.apache.stanbol.entityhub.yard.cache.additionalMappings=["|\
@\=null;en;de;fr;it;es","*"]
Added:
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.site.referencedSite-dbPediaSite.config
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.site.referencedSite-dbPediaSite.config?rev=1104107&view=auto
==============================================================================
---
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.site.referencedSite-dbPediaSite.config
(added)
+++
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.site.referencedSite-dbPediaSite.config
Tue May 17 10:21:33 2011
@@ -0,0 +1,15 @@
+service.pid="org.apache.stanbol.entityhub.site.referencedSite.dbpediaSite"
+org.apache.stanbol.entityhub.site.entityPrefix=["http://dbpedia.org/resource/","http://dbpedia.org/ontology/"]
+org.apache.stanbol.entityhub.site.defaultMappedEntityState="proposed"
+org.apache.stanbol.entityhub.site.accessUri="http://dbpedia.org/sparql/"
+org.apache.stanbol.entityhub.site.id="dbpedia"
+org.apache.stanbol.entityhub.site.fieldMappings=["dbp-ont:*","dbp-ont:thumbnail\
|\ d\=xsd:anyURI\ >\ foaf:depiction","dbp-prop:latitude\ |\ d\=xsd:decimal\ >\
geo:lat","dbp-prop:longitude\ |\ d\=xsd:decimal\ >\
geo:long","dbp-prop:population\ |\ d\=xsd:integer","dbp-prop:website\ |\
d\=xsd:anyURI\ >\ foaf:homepage"]
+org.apache.stanbol.entityhub.site.dereferencerType="org.apache.stanbol.entityhub.dereferencer.SparqlDereferencer"
+org.apache.stanbol.entityhub.site.cacheStrategy="used"
+org.apache.stanbol.entityhub.site.cacheId="dbpediaCache"
+org.apache.stanbol.entityhub.site.name="DB\ Pedia"
+org.apache.stanbol.entityhub.site.description="The\ OLD\ Endpoint\ for\
Wikipedia"
+org.apache.stanbol.entityhub.site.queryUri="http://dbpedia.org/sparql"
+org.apache.stanbol.entityhub.site.defaultSymbolState="proposed"
+org.apache.stanbol.entityhub.site.defaultExpireDuration="0"
+org.apache.stanbol.entityhub.site.searcherType="org.apache.stanbol.entityhub.searcher.VirtuosoSearcher"
Added:
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.DefaultSolrDirectoryManager.cfg
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.DefaultSolrDirectoryManager.cfg?rev=1104107&view=auto
==============================================================================
---
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.DefaultSolrDirectoryManager.cfg
(added)
+++
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.DefaultSolrDirectoryManager.cfg
Tue May 17 10:21:33 2011
@@ -0,0 +1 @@
+org.apache.stanbol.entityhub.yard.solr.managedSolrDir=${user.dir}/sling/entityhub/solrYard/indexes
Added:
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-dbPediaLocalCacheYard.config
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-dbPediaLocalCacheYard.config?rev=1104107&view=auto
==============================================================================
---
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-dbPediaLocalCacheYard.config
(added)
+++
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-dbPediaLocalCacheYard.config
Tue May 17 10:21:33 2011
@@ -0,0 +1,9 @@
+service.pid="org.apache.stanbol.entityhub.yard.solr.impl.SolrYard.dbpediaLocalCacheYard"
+org.apache.stanbol.entityhub.yard.maxQueryResultNumber=I"-1"
+org.apache.stanbol.entityhub.yard.solr.maxBooleanClauses=I"1024"
+org.apache.stanbol.entityhub.yard.description="The\ Cache\ used\ to\ store\
downloaded\ dbpedia\ entities"
+org.apache.stanbol.entityhub.yard.solr.solrUri="cache"
+org.apache.stanbol.entityhub.yard.defaultQueryResultNumber=I"-1"
+org.apache.stanbol.entityhub.yard.name="dbpedia\ Cache"
+org.apache.stanbol.entityhub.yard.id="dbpediaCache"
+org.apache.stanbol.entityhub.yard.solr.multiYardIndexLayout="true"
Added:
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-entityhubYard.config
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-entityhubYard.config?rev=1104107&view=auto
==============================================================================
---
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-entityhubYard.config
(added)
+++
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-entityhubYard.config
Tue May 17 10:21:33 2011
@@ -0,0 +1,9 @@
+service.pid="org.apache.stanbol.entityhub.yard.solr.impl.SolrYard.entityhubYard"
+org.apache.stanbol.entityhub.yard.maxQueryResultNumber=I"-1"
+org.apache.stanbol.entityhub.yard.solr.maxBooleanClauses=I"1024"
+org.apache.stanbol.entityhub.yard.description="The\ Yard\ used\ by\ the\
Entityhub\ to\ store\ the\ data"
+org.apache.stanbol.entityhub.yard.solr.solrUri="entityhub"
+org.apache.stanbol.entityhub.yard.defaultQueryResultNumber=I"-1"
+org.apache.stanbol.entityhub.yard.name="Entityhub\ Yard"
+org.apache.stanbol.entityhub.yard.id="entityhubYard"
+org.apache.stanbol.entityhub.yard.solr.multiYardIndexLayout="false"
Added:
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.examples.ExampleBootstrapConfig.cfg
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.examples.ExampleBootstrapConfig.cfg?rev=1104107&view=auto
==============================================================================
---
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.examples.ExampleBootstrapConfig.cfg
(added)
+++
incubator/stanbol/trunk/launchers/kres/src/main/resources/resources/config/org.apache.stanbol.examples.ExampleBootstrapConfig.cfg
Tue May 17 10:21:33 2011
@@ -0,0 +1,15 @@
+# Example default OSGi config that's loaded
+# at startup if Sling's org.apache.sling.launchpad.installer
+# bundle is active.
+#
+# The filename defines the config PID.
+
+# Factory configs should be named like foo.bar-X.cfg
+# whereo.foo.bar is the factory PID and X a unique value
+# for that PID. The actual config PID is then automatically
+# generated PID, and the value of X is stored as an alias
+# property in the configuration.
+
+message=This test config should be loaded at startup
+
+anotherValue = This is AnotherValue.
\ No newline at end of file