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 2020/03/24 20:47:26 UTC

svn commit: r1875588 - in /uima/ruta/trunk: ruta-core/src/test/java/org/apache/uima/ruta/rule/RuleInference3Test.java ruta-docbook/src/docbook/tools.ruta.howtos.xml

Author: pkluegl
Date: Tue Mar 24 20:47:26 2020
New Revision: 1875588

URL: http://svn.apache.org/viewvc?rev=1875588&view=rev
Log:
no jira - cleanup in docs, updated versions i docs, removed cas.release in test

Modified:
    uima/ruta/trunk/ruta-core/src/test/java/org/apache/uima/ruta/rule/RuleInference3Test.java
    uima/ruta/trunk/ruta-docbook/src/docbook/tools.ruta.howtos.xml

Modified: uima/ruta/trunk/ruta-core/src/test/java/org/apache/uima/ruta/rule/RuleInference3Test.java
URL: http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-core/src/test/java/org/apache/uima/ruta/rule/RuleInference3Test.java?rev=1875588&r1=1875587&r2=1875588&view=diff
==============================================================================
--- uima/ruta/trunk/ruta-core/src/test/java/org/apache/uima/ruta/rule/RuleInference3Test.java (original)
+++ uima/ruta/trunk/ruta-core/src/test/java/org/apache/uima/ruta/rule/RuleInference3Test.java Tue Mar 24 20:47:26 2020
@@ -32,6 +32,5 @@ public class RuleInference3Test {
 
     RutaTestUtils.assertAnnotationsEquals(cas, 4, 4, "[1]", "[2]", "[3]", "[4]");
 
-    cas.release();
   }
 }

Modified: uima/ruta/trunk/ruta-docbook/src/docbook/tools.ruta.howtos.xml
URL: http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-docbook/src/docbook/tools.ruta.howtos.xml?rev=1875588&r1=1875587&r2=1875588&view=diff
==============================================================================
--- uima/ruta/trunk/ruta-docbook/src/docbook/tools.ruta.howtos.xml (original)
+++ uima/ruta/trunk/ruta-docbook/src/docbook/tools.ruta.howtos.xml Tue Mar 24 20:47:26 2020
@@ -250,7 +250,7 @@ The|DT rabbit|NN made|VBD up|RP this|DT
 		<programlisting><![CDATA[<plugin>
 <groupId>org.apache.uima</groupId>
 <artifactId>ruta-maven-plugin</artifactId>
-<version>2.3.0</version>
+<version>2.8.1</version>
 <configuration>
 
  <!-- This is a exemplary configuration, which explicitly specifies the 
@@ -384,12 +384,12 @@ The|DT rabbit|NN made|VBD up|RP this|DT
     or the configuration of the generated analysis engine descriptor, e.g., 
     the values of the configuration parameter scriptPaths.
     However, there are also other parameters: addRutaNature and buildPaths. 
-    Both can be utilzed to configure the current Eclipse project (due to the missing m2e connector).
-    This is required if the functionality of the UIMA Ruta Workbench, e.g., syntax checking or auto-completeion,
+    Both can be utilized to configure the current Eclipse project (due to the missing m2e connector).
+    This is required if the functionality of the UIMA Ruta Workbench, e.g., syntax checking or auto-completion,
      should be available in the maven project. If the parameter addRutaNature is set to true, then
      the UIMA Ruta Workbench will recognize the project as a script project. Only then, 
      the buildpath of the UIMA Ruta project can be configured using the buildPaths parameter, which specifies 
-     the three important source folders of the UIMA Ruta project. In normal UIMA Ruta Workbnech projects, 
+     the three important source folders of the UIMA Ruta project. In normal UIMA Ruta Workbench projects, 
      these are script, descriptor and resources.
     </para>
 		</section>
@@ -403,7 +403,7 @@ The|DT rabbit|NN made|VBD up|RP this|DT
     <programlisting><![CDATA[<plugin>
 <groupId>org.apache.uima</groupId>
 <artifactId>ruta-maven-plugin</artifactId>
-<version>2.3.0</version>
+<version>2.8.1</version>
 <configuration></configuration>
 <executions>
 <execution>
@@ -456,7 +456,7 @@ The|DT rabbit|NN made|VBD up|RP this|DT
     <programlisting><![CDATA[<plugin>
 <groupId>org.apache.uima</groupId>
 <artifactId>ruta-maven-plugin</artifactId>
-<version>2.3.0</version>
+<version>2.8.1</version>
 <configuration></configuration>
 <executions>
 <execution>
@@ -527,7 +527,7 @@ The|DT rabbit|NN made|VBD up|RP this|DT
     </para>  
     
     <programlisting><![CDATA[mvn archetype:generate -DarchetypeGroupId=org.apache.uima 
-    -DarchetypeArtifactId=ruta-maven-archetype -DarchetypeVersion=2.6.0
+    -DarchetypeArtifactId=ruta-maven-archetype -DarchetypeVersion=2.8.1
     -DgroupId=my.domain -DartifactId=my-ruta-project]]></programlisting>
     
     <para>