Author: rwesten
Date: Thu Jun 30 22:05:20 2011
New Revision: 1141737

URL: http://svn.apache.org/viewvc?rev=1141737&view=rev
Log:
STANBOL-241:

* updated version of the defaultdata bundle to 0.0.3
* The configuration and the default data for dbpedia is now loaded form the 
defaultdata bundle. Therefore the according configurations where removed from 
the stable and the full launcher.
* The dbpedia referenced site (entityhub) and the Entity Linking Engine 
(Enhancer) now fully operates in offline mode (on a 43k Entity big local index)

STANBOL 245:

* added metatype.properties file for this engine
* The TaxonomylinkingEngine is now part of the full launcher

Broken Build (266,267 and 268)

Resolved a cyclic build dependency maven was not aware of because internal 
dependencies of the maven-launchpad-plugin (defined in the bundles/list.xml 
file) are not exposed to maven. Previously the reasoners/web bundle included 
integration tests that needed the full launcher. In the meantime those test 
where moved to stanbol/integration-tests  however the dependency was never 
removed. When recently the reasoners/web bundle was also added to the full 
launcher maven started to build the full launcher before the reasonsers/web 
bundle what caused the build to fail.
This removes the unused dependency to the full launcher and therefore should 
resolve this problem.

Added:
    
incubator/stanbol/trunk/enhancer/engines/taxonomylinking/src/main/resources/OSGI-INF/metatype/metatype.properties
   (with props)
Removed:
    
incubator/stanbol/trunk/launchers/full/src/main/resources/resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine-dbpedia.config
    
incubator/stanbol/trunk/launchers/full/src/main/resources/resources/config/org.apache.stanbol.entityhub.core.site.CacheImpl-dbpedia.config
    
incubator/stanbol/trunk/launchers/full/src/main/resources/resources/config/org.apache.stanbol.entityhub.site.referencedSite-dbpedia.config
    
incubator/stanbol/trunk/launchers/full/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.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine-dbpedia.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.SolrYard-dbpediaCache.config
Modified:
    incubator/stanbol/trunk/enhancer/engines/taxonomylinking/   (props changed)
    incubator/stanbol/trunk/launchers/full/src/main/bundles/list.xml
    incubator/stanbol/trunk/launchers/stable/src/main/bundles/list.xml
    incubator/stanbol/trunk/parent/pom.xml
    incubator/stanbol/trunk/reasoners/web/pom.xml

Propchange: incubator/stanbol/trunk/enhancer/engines/taxonomylinking/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Thu Jun 30 22:05:20 2011
@@ -0,0 +1,7 @@
+.classpath
+
+.project
+
+.settings
+
+target

Added: 
incubator/stanbol/trunk/enhancer/engines/taxonomylinking/src/main/resources/OSGI-INF/metatype/metatype.properties
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/enhancer/engines/taxonomylinking/src/main/resources/OSGI-INF/metatype/metatype.properties?rev=1141737&view=auto
==============================================================================
--- 
incubator/stanbol/trunk/enhancer/engines/taxonomylinking/src/main/resources/OSGI-INF/metatype/metatype.properties
 (added)
+++ 
incubator/stanbol/trunk/enhancer/engines/taxonomylinking/src/main/resources/OSGI-INF/metatype/metatype.properties
 Thu Jun 30 22:05:20 2011
@@ -0,0 +1,26 @@
+#===============================================================================
+#Properties and Options used to configure 
+#===============================================================================
+org.apache.stanbol.enhancer.engines.taxonomy.impl.TaxonomyLinkingEngine.name=Apache
 Stanbol Enhancement Engine for Taxonomy linking
+org.apache.stanbol.enhancer.engines.taxonomy.impl.TaxonomyLinkingEngine.description=An
 engine that extracts occurrencies of Taxonomy Terms within a parsed ContentItem
+
+org.apache.stanbol.enhancer.engines.taxonomy.referencedSiteId.name=Referenced 
Site
+org.apache.stanbol.enhancer.engines.taxonomy.referencedSiteId.description=The 
ID of the Entityhub Referenced Site holding the Taxonomy
+
+org.apache.stanbol.enhancer.engines.taxonomy.simpleTokenizer.name=Use Simple 
Tokenizer
+org.apache.stanbol.enhancer.engines.taxonomy.simpleTokenizer.description=This 
allows to deactivate the use of Language specific Tokenizers. For most European 
languages the Simple Tokenizer is sufficient.
+
+org.apache.stanbol.enhancer.engines.taxonomy.minSearchTokenLength.name=Min 
Token Length
+org.apache.stanbol.enhancer.engines.taxonomy.minSearchTokenLength.description=The
 minimum length of Tokens used to lookup Terms in the Taxonomy. This parameter 
is ignored in case a POS (Part of Speech) tagger is available.
+
+org.apache.stanbol.enhancer.engines.taxonomy.enableChunker.name=Use Chunker
+org.apache.stanbol.enhancer.engines.taxonomy.enableChunker.description=This 
allows to enable/disable the use of a Chunker. Even if enabled it will only be 
used if one is present for the language of the content.
+
+org.apache.stanbol.enhancer.engines.taxonomy.nameField.name=Label Field 
+org.apache.stanbol.enhancer.engines.taxonomy.nameField.description=The field 
used to search for Entities with a Label similar to the selected text of the 
Text Annotation.
+
+org.apache.stanbol.enhancer.engines.taxonomy.maxSuggestions.name=Suggestions
+org.apache.stanbol.enhancer.engines.taxonomy.maxSuggestions.description=The 
maximal number of suggestions returned for a single word
+
+org.apache.stanbol.enhancer.engines.taxonomy.minFoundTokens.name=Number of 
Required Tokens
+org.apache.stanbol.enhancer.engines.taxonomy.minFoundTokens.description=For 
lookups with several words (e.g. Dr Patrick Marshall) this is the minimum 
number of Tokens a Term in the Taxonomy must contain to be suggested.
\ No newline at end of file

Propchange: 
incubator/stanbol/trunk/enhancer/engines/taxonomylinking/src/main/resources/OSGI-INF/metatype/metatype.properties
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: incubator/stanbol/trunk/launchers/full/src/main/bundles/list.xml
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/full/src/main/bundles/list.xml?rev=1141737&r1=1141736&r2=1141737&view=diff
==============================================================================
--- incubator/stanbol/trunk/launchers/full/src/main/bundles/list.xml (original)
+++ incubator/stanbol/trunk/launchers/full/src/main/bundles/list.xml Thu Jun 30 
22:05:20 2011
@@ -362,7 +362,7 @@
     <bundle>
       <groupId>org.apache.stanbol</groupId>
       <artifactId>org.apache.stanbol.defaultdata</artifactId>
-      <version>0.0.2</version>
+      <version>0.0.3</version>
     </bundle>
   </startLevel>
 
@@ -631,6 +631,12 @@
       <artifactId>org.apache.stanbol.enhancer.engine.entitytagging</artifactId>
       <version>0.9-SNAPSHOT</version>
     </bundle>
+    <!-- Taxonomy Linking Engine (depends on the Entityhub) -->
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.enhancer.engine.taxonomy</artifactId>
+      <version>0.9-SNAPSHOT</version>
+    </bundle>
   </startLevel>
 
   <!-- *********************************************************************

Modified: 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=1141737&r1=1141736&r2=1141737&view=diff
==============================================================================
--- incubator/stanbol/trunk/launchers/stable/src/main/bundles/list.xml 
(original)
+++ incubator/stanbol/trunk/launchers/stable/src/main/bundles/list.xml Thu Jun 
30 22:05:20 2011
@@ -350,7 +350,7 @@
     <bundle>
       <groupId>org.apache.stanbol</groupId>
       <artifactId>org.apache.stanbol.defaultdata</artifactId>
-      <version>0.0.2</version>
+      <version>0.0.3</version>
     </bundle>
   </startLevel>
 
@@ -499,14 +499,15 @@
       <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.
-    
+      The geonames.org webservice is often overloaded and than causes errors.
+      To use the api.geonames.org service users need to create a free account
+      and change the configuration.
+      Therefore this is deactivated in the stable launcher
     <bundle>
       <groupId>org.apache.stanbol</groupId>
       <artifactId>org.apache.stanbol.enhancer.engines.geonames</artifactId>
       <version>0.9-SNAPSHOT</version>
-    </bundle> -->
+    </bundle>     -->
     <!-- Entity Tagging Engine (depends on the Entityhub) -->
     <bundle>
       <groupId>org.apache.stanbol</groupId>

Modified: incubator/stanbol/trunk/parent/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/parent/pom.xml?rev=1141737&r1=1141736&r2=1141737&view=diff
==============================================================================
--- incubator/stanbol/trunk/parent/pom.xml (original)
+++ incubator/stanbol/trunk/parent/pom.xml Thu Jun 30 22:05:20 2011
@@ -270,7 +270,7 @@
       <dependency>
         <groupId>org.apache.stanbol</groupId>
         <artifactId>org.apache.stanbol.defaultdata</artifactId>
-        <version>0.0.2</version>
+        <version>0.0.3</version>
         <scope>provided</scope>
       </dependency>
 

Modified: incubator/stanbol/trunk/reasoners/web/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/web/pom.xml?rev=1141737&r1=1141736&r2=1141737&view=diff
==============================================================================
--- incubator/stanbol/trunk/reasoners/web/pom.xml (original)
+++ incubator/stanbol/trunk/reasoners/web/pom.xml Thu Jun 30 22:05:20 2011
@@ -74,7 +74,7 @@
          </instructions>
        </configuration>
      </plugin>
-         <plugin>
+<!-- <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-dependency-plugin</artifactId>
        <executions>
@@ -94,7 +94,6 @@
        </executions>
      </plugin>
      <plugin>
-       <!-- Find free ports to run our server -->
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>build-helper-maven-plugin</artifactId>
        <executions>
@@ -130,7 +129,7 @@
            <server.ready.path.3>/contenthub:Recently uploaded Content 
Items</server.ready.path.3>
          </systemPropertyVariables>
        </configuration>
-     </plugin>
+     </plugin> -->
    </plugins>
  </build>
 


Reply via email to