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 2015/10/23 18:13:54 UTC

svn commit: r1710262 - in /uima/ruta/trunk/example-projects/Misc/script/uima/ruta/example: Sorter.ruta TEIConverter.ruta

Author: pkluegl
Date: Fri Oct 23 16:13:54 2015
New Revision: 1710262

URL: http://svn.apache.org/viewvc?rev=1710262&view=rev
Log:
no jira - added missing package declaration in example scripts

Modified:
    uima/ruta/trunk/example-projects/Misc/script/uima/ruta/example/Sorter.ruta
    uima/ruta/trunk/example-projects/Misc/script/uima/ruta/example/TEIConverter.ruta

Modified: uima/ruta/trunk/example-projects/Misc/script/uima/ruta/example/Sorter.ruta
URL: http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/Misc/script/uima/ruta/example/Sorter.ruta?rev=1710262&r1=1710261&r2=1710262&view=diff
==============================================================================
--- uima/ruta/trunk/example-projects/Misc/script/uima/ruta/example/Sorter.ruta (original)
+++ uima/ruta/trunk/example-projects/Misc/script/uima/ruta/example/Sorter.ruta Fri Oct 23 16:13:54 2015
@@ -15,6 +15,8 @@
 // specific language governing permissions and limitations
 // under the License.
 
+PACKAGE uima.ruta.example;
+
 ENGINE utils.XMIWriter;
 TYPESYSTEM utils.SourceDocumentInformation;
 

Modified: uima/ruta/trunk/example-projects/Misc/script/uima/ruta/example/TEIConverter.ruta
URL: http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/Misc/script/uima/ruta/example/TEIConverter.ruta?rev=1710262&r1=1710261&r2=1710262&view=diff
==============================================================================
--- uima/ruta/trunk/example-projects/Misc/script/uima/ruta/example/TEIConverter.ruta (original)
+++ uima/ruta/trunk/example-projects/Misc/script/uima/ruta/example/TEIConverter.ruta Fri Oct 23 16:13:54 2015
@@ -15,6 +15,8 @@
 // specific language governing permissions and limitations
 // under the License.
 
+PACKAGE uima.ruta.example;
+
 ENGINE utils.HtmlAnnotator;
 TYPESYSTEM utils.HtmlTypeSystem;
 ENGINE utils.HtmlConverter;