Author: fchrist
Date: Mon Jun 27 14:44:16 2011
New Revision: 1140181

URL: http://svn.apache.org/viewvc?rev=1140181&view=rev
Log:
STANBOL-241 Initial commit of stable launcher

Added:
    incubator/stanbol/trunk/launchers/stable/   (with props)
    incubator/stanbol/trunk/launchers/stable/README.txt
    incubator/stanbol/trunk/launchers/stable/pom.xml
    incubator/stanbol/trunk/launchers/stable/src/
    incubator/stanbol/trunk/launchers/stable/src/main/
    incubator/stanbol/trunk/launchers/stable/src/main/bundles/
    incubator/stanbol/trunk/launchers/stable/src/main/bundles/list.xml
    incubator/stanbol/trunk/launchers/stable/src/main/resources/
    incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/
    
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/
    
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine-dbpedia.config
    
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine-local.config
    
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.core.impl.EntityhubConfigurationImpl.config
    
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.core.site.CacheImpl-dbpedia.config
    
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.site.referencedSite-dbpedia.config
    
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.DefaultSolrDirectoryManager.cfg
    
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-dbpediaCache.config
    
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-entityhub.config
    
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.examples.ExampleBootstrapConfig.cfg

Propchange: incubator/stanbol/trunk/launchers/stable/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Mon Jun 27 14:44:16 2011
@@ -0,0 +1,7 @@
+.classpath
+.project
+.settings
+.settings/
+target
+target/
+

Added: incubator/stanbol/trunk/launchers/stable/README.txt
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/stable/README.txt?rev=1140181&view=auto
==============================================================================
--- incubator/stanbol/trunk/launchers/stable/README.txt (added)
+++ incubator/stanbol/trunk/launchers/stable/README.txt Mon Jun 27 14:44:16 2011
@@ -0,0 +1,26 @@
+This module builds a runnable Stanbol jar using the Sling Launchpad Maven 
plugin,
+including the bundles defined at src/main/bundles/list.xml.
+
+This launcher includes only Stanbol components that were agreed on being stable
+components.
+
+To start this after building use:
+
+  java -Xmx512M -jar 
target/org.apache.stanbol.enhancer.launchers.stable-0.9-SNAPSHOT.jar
+
+The Stanbol Enhancer HTTP endpoint should then be available at 
+
+  http://localhost:8080
+
+So that you can POST content using, for example:
+
+  curl -H "Content-Type: text/plain" -T data/text-examples/obama-signing.txt 
http://localhost:8080/engines
+
+Configure any required parameter for the enhancement engines, 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/stable/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/stable/pom.xml?rev=1140181&view=auto
==============================================================================
--- incubator/stanbol/trunk/launchers/stable/pom.xml (added)
+++ incubator/stanbol/trunk/launchers/stable/pom.xml Mon Jun 27 14:44:16 2011
@@ -0,0 +1,96 @@
+<?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.stable</artifactId>
+  <packaging>jar</packaging>
+
+  <name>Apache Stanbol Launcher - Stable</name>
+  <description>Runnable jar that runs the stable Stanbol 
configuration.</description>
+
+  <scm>
+    <connection>
+      
scm:svn:http://svn.apache.org/repos/asf/incubator/stanbol/trunk/launchers/stable/
+    </connection>
+    <developerConnection>
+      
scm:svn:https://svn.apache.org/repos/asf/incubator/stanbol/trunk/launchers/stable/
+    </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/stable/src/main/bundles/list.xml
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/stable/src/main/bundles/list.xml?rev=1140181&view=auto
==============================================================================
--- incubator/stanbol/trunk/launchers/stable/src/main/bundles/list.xml (added)
+++ incubator/stanbol/trunk/launchers/stable/src/main/bundles/list.xml Mon Jun 
27 14:44:16 2011
@@ -0,0 +1,522 @@
+<?xml version="1.0" encoding="UTF-8"?>
+  <!--
+               List of initial bundles for the Stanbol Sling-based standalone 
launcher.
+       -->
+<bundles>
+  
+  <!-- *********************************************************************
+          start level < 10 reserved for OSGI and Sling Infrastructure
+       ********************************************************************* 
-->
+  <!-- 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.4.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.2.0</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>org.osgi.compendium</artifactId>
+      <version>1.4.0</version>
+    </bundle>
+  </startLevel>
+  
+  <!-- Sling installer and Stanbol extensions -->
+  <startLevel level="8">
+    <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>
+  </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>
+
+  <!-- Sling launchpad -->
+  <startLevel level="9">
+    <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>
+
+  <!-- *********************************************************************
+          start level 10 TO 19 reserved for required libraries
+          (internal and external)
+       ********************************************************************* 
-->
+  <!-- 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-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> <!-- only used by the Entityhub -->
+      <groupId>joda-time</groupId>
+      <artifactId>joda-time</artifactId>
+      <version>1.6.2</version>
+    </bundle>
+    <!--
+    <bundle>  only used by the Contenthub 
+      <groupId>eu.medsea.mimeutil</groupId>
+      <artifactId>mime-util</artifactId>
+      <version>2.1.3</version>
+    </bundle> -->
+    <!--
+    <bundle>  only used by the Factstore 
+      <groupId>org.apache.derby</groupId>
+      <artifactId>derby</artifactId>
+      <version>10.7.1.1</version>
+    </bundle> -->
+  </startLevel>
+
+  <!-- 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>
+    <!-- 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>
+  
+  <!-- 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>
+
+  <!-- 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>
+
+  <!-- The default data expected by the default configuration of Stanbol -->
+  <startLevel level="19">
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.defaultdata</artifactId>
+      <version>0.0.2</version>
+    </bundle>
+  </startLevel>
+
+  <!-- *********************************************************************
+          start level 20 TO 24 reserved for Stanbol Framework
+          (Enhancer, Entityhub, Contenthub, Factstore ... incl. Web Fragments)
+       ********************************************************************* 
-->
+
+  <!-- Stanbol Enhancer infrastructure and required libraries-->
+  <startLevel level="20">
+    <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 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> -->
+
+  <!-- Stanbol Entityhub infrastructure and required libraries-->
+  <startLevel level="20">
+    <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>
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.entityhub.core</artifactId>
+      <version>0.9-SNAPSHOT</version>
+    </bundle>
+  </startLevel>  
+  <!-- FactStore 
+  <startLevel level="20">
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.factstore</artifactId>
+      <version>0.9-SNAPSHOT</version>
+    </bundle>
+  </startLevel> -->
+
+  <!-- Stanbol Web Fragments -->
+  <startLevel level="21">
+    <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.entityhub.jersey</artifactId>
+      <version>0.9-SNAPSHOT</version>
+    </bundle>
+  </startLevel>
+  <!-- Benchmarks for the Stanbol Enhancer 
+  <startLevel level="21">
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.enhancer.benchmark</artifactId>
+      <version>0.9-SNAPSHOT</version>
+    </bundle>
+  </startLevel> -->
+ 
+  <!-- *********************************************************************
+          start level 25 TO 29 reserved for Stanbol plug-ins
+          (currently the Enhancement Engines)
+       ********************************************************************* 
-->
+  
+  <!-- Stanbol Enhancer plug-ins (the Enhancement Engines) -->
+  <startLevel level="25">
+    <!-- unstable
+    <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.metaxa</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.enhancer.engines.zemanta</artifactId>
+      <version>0.9-SNAPSHOT</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 (depends on the Entityhub) -->
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.enhancer.engine.entitytagging</artifactId>
+      <version>0.9-SNAPSHOT</version>
+    </bundle>
+  </startLevel>
+
+  <!-- *********************************************************************
+          start level >= 30 are unused
+       ********************************************************************* 
-->
+  
+</bundles>

Added: 
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine-dbpedia.config
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine-dbpedia.config?rev=1140181&view=auto
==============================================================================
--- 
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine-dbpedia.config
 (added)
+++ 
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine-dbpedia.config
 Mon Jun 27 14:44:16 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/stable/src/main/resources/resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine-local.config
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine-local.config?rev=1140181&view=auto
==============================================================================
--- 
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine-local.config
 (added)
+++ 
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine-local.config
 Mon Jun 27 14:44:16 2011
@@ -0,0 +1,8 @@
+org.apache.stanbol.enhancer.engines.entitytagging.nameField="name"
+org.apache.stanbol.enhancer.engines.entitytagging.personType="Person"
+org.apache.stanbol.enhancer.engines.entitytagging.personState=B"true"
+org.apache.stanbol.enhancer.engines.entitytagging.referencedSiteId="local"
+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="Organization"
+org.apache.stanbol.enhancer.engines.entitytagging.placeType="Place"

Added: 
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.core.impl.EntityhubConfigurationImpl.config
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.core.impl.EntityhubConfigurationImpl.config?rev=1140181&view=auto
==============================================================================
--- 
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.core.impl.EntityhubConfigurationImpl.config
 (added)
+++ 
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.core.impl.EntityhubConfigurationImpl.config
 Mon Jun 27 14:44:16 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/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.core.site.CacheImpl-dbpedia.config
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.core.site.CacheImpl-dbpedia.config?rev=1140181&view=auto
==============================================================================
--- 
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.core.site.CacheImpl-dbpedia.config
 (added)
+++ 
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.core.site.CacheImpl-dbpedia.config
 Mon Jun 27 14:44:16 2011
@@ -0,0 +1,2 @@
+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/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.site.referencedSite-dbpedia.config
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.site.referencedSite-dbpedia.config?rev=1140181&view=auto
==============================================================================
--- 
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.site.referencedSite-dbpedia.config
 (added)
+++ 
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.site.referencedSite-dbpedia.config
 Mon Jun 27 14:44:16 2011
@@ -0,0 +1,18 @@
+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="DBpedia"
+org.apache.stanbol.entityhub.site.description="DBpedia\ (dbpedia.org)\ is 
\the\ LOD(linked\ open\ data)\ 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"
+org.apache.stanbol.entityhub.site.licenseName=["Creative\ Commons\ 
Attribution-ShareAlike\ 3.0","GNU Free Documentation License"]
+org.apache.stanbol.entityhub.site.licenseUrl=["http://en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License","http://en.wikipedia.org/wiki/Wikipedia:Text_of_the_GNU_Free_Documentation_License";]
+org.apache.stanbol.entityhub.site.attributionUrl="http://wiki.dbpedia.org/About";
+org.apache.stanbol.entityhub.site.attribution="DBpedia"
\ No newline at end of file

Added: 
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.DefaultSolrDirectoryManager.cfg
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.DefaultSolrDirectoryManager.cfg?rev=1140181&view=auto
==============================================================================
--- 
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.DefaultSolrDirectoryManager.cfg
 (added)
+++ 
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.DefaultSolrDirectoryManager.cfg
 Mon Jun 27 14:44:16 2011
@@ -0,0 +1 @@
+org.apache.stanbol.entityhub.yard.solr.managedSolrDir=${user.dir}/sling/entityhub/solrYard/indexes

Added: 
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-dbpediaCache.config
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-dbpediaCache.config?rev=1140181&view=auto
==============================================================================
--- 
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-dbpediaCache.config
 (added)
+++ 
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-dbpediaCache.config
 Mon Jun 27 14:44:16 2011
@@ -0,0 +1,9 @@
+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.solr.useDefaultConfig="true"
+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/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-entityhub.config
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-entityhub.config?rev=1140181&view=auto
==============================================================================
--- 
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-entityhub.config
 (added)
+++ 
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-entityhub.config
 Mon Jun 27 14:44:16 2011
@@ -0,0 +1,8 @@
+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/stable/src/main/resources/resources/config/org.apache.stanbol.examples.ExampleBootstrapConfig.cfg
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.examples.ExampleBootstrapConfig.cfg?rev=1140181&view=auto
==============================================================================
--- 
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.examples.ExampleBootstrapConfig.cfg
 (added)
+++ 
incubator/stanbol/trunk/launchers/stable/src/main/resources/resources/config/org.apache.stanbol.examples.ExampleBootstrapConfig.cfg
 Mon Jun 27 14:44:16 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


Reply via email to