This is an automated email from the ASF dual-hosted git repository. rec pushed a commit to branch refactoring/202-Import-internal-type-systems-by-name-instead-of-location in repository https://gitbox.apache.org/repos/asf/uima-ruta.git
commit e3532f82361163aad4bddc43b424ea371f83f48c Author: Richard Eckart de Castilho <[email protected]> AuthorDate: Wed Oct 22 13:10:57 2025 +0200 Issue #202: Import internal type systems by name instead of location - Use import-by-name instead of location --- .../main/resources/org/apache/uima/ruta/engine/BasicTypeSystem.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ruta-core/src/main/resources/org/apache/uima/ruta/engine/BasicTypeSystem.xml b/ruta-core/src/main/resources/org/apache/uima/ruta/engine/BasicTypeSystem.xml index 9226ee27..62551915 100644 --- a/ruta-core/src/main/resources/org/apache/uima/ruta/engine/BasicTypeSystem.xml +++ b/ruta-core/src/main/resources/org/apache/uima/ruta/engine/BasicTypeSystem.xml @@ -23,8 +23,8 @@ <version>1.0</version> <vendor/> <imports> - <import location="RutaInternalTypeSystem.xml"/> - <import location="RutaBasicTypeSystem.xml"/> - <import location="DefaultSeederTypeSystem.xml"/> + <import name="org.apache.uima.ruta.engine.RutaInternalTypeSystem"/> + <import name="org.apache.uima.ruta.engine.RutaBasicTypeSystem"/> + <import name="org.apache.uima.ruta.engine.DefaultSeederTypeSystem"/> </imports> </typeSystemDescription>
