You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by pk...@apache.org on 2021/03/11 17:04:22 UTC

[uima-ruta] branch UIMA-6332-Ruta-change-seeders-param-default-to-TextSeeder created (now ba0e010)

This is an automated email from the ASF dual-hosted git repository.

pkluegl pushed a change to branch UIMA-6332-Ruta-change-seeders-param-default-to-TextSeeder
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git.


      at ba0e010  UIMA-6332: Ruta: change seeders param default to TextSeeder

This branch includes the following new commits:

     new ba0e010  UIMA-6332: Ruta: change seeders param default to TextSeeder

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[uima-ruta] 01/01: UIMA-6332: Ruta: change seeders param default to TextSeeder

Posted by pk...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

pkluegl pushed a commit to branch UIMA-6332-Ruta-change-seeders-param-default-to-TextSeeder
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git

commit ba0e01031e490abb64de7605ef0ed244672f249f
Author: Peter Klügl <pe...@averbis.com>
AuthorDate: Thu Mar 11 18:04:02 2021 +0100

    UIMA-6332: Ruta: change seeders param default to TextSeeder
    
    - seeders default value
---
 ruta-core/src/main/java/org/apache/uima/ruta/engine/RutaEngine.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ruta-core/src/main/java/org/apache/uima/ruta/engine/RutaEngine.java b/ruta-core/src/main/java/org/apache/uima/ruta/engine/RutaEngine.java
index 093e35a..d2a98fc 100644
--- a/ruta-core/src/main/java/org/apache/uima/ruta/engine/RutaEngine.java
+++ b/ruta-core/src/main/java/org/apache/uima/ruta/engine/RutaEngine.java
@@ -247,7 +247,7 @@ public class RutaEngine extends JCasAnnotator_ImplBase {
   public static final String PARAM_SEEDERS = "seeders";
 
   @ConfigurationParameter(name = PARAM_SEEDERS, mandatory = false, defaultValue = {
-      "org.apache.uima.ruta.seed.DefaultSeeder" })
+      "org.apache.uima.ruta.seed.TextSeeder" })
   private String[] seeders;
 
   /**