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 2019/11/24 18:24:51 UTC

svn commit: r1870329 - /uima/uv3/ruta-v3/trunk/ruta-docbook/src/docbook/tools.ruta.howtos.xml

Author: pkluegl
Date: Sun Nov 24 18:24:51 2019
New Revision: 1870329

URL: http://svn.apache.org/viewvc?rev=1870329&view=rev
Log:
no jira - update some example v2 versions, fixed some typos

Modified:
    uima/uv3/ruta-v3/trunk/ruta-docbook/src/docbook/tools.ruta.howtos.xml

Modified: uima/uv3/ruta-v3/trunk/ruta-docbook/src/docbook/tools.ruta.howtos.xml
URL: http://svn.apache.org/viewvc/uima/uv3/ruta-v3/trunk/ruta-docbook/src/docbook/tools.ruta.howtos.xml?rev=1870329&r1=1870328&r2=1870329&view=diff
==============================================================================
--- uima/uv3/ruta-v3/trunk/ruta-docbook/src/docbook/tools.ruta.howtos.xml (original)
+++ uima/uv3/ruta-v3/trunk/ruta-docbook/src/docbook/tools.ruta.howtos.xml Sun Nov 24 18:24:51 2019
@@ -239,7 +239,7 @@ The|DT rabbit|NN made|VBD up|RP this|DT
 			the more efficient structures, tree word list and multi tree word
 			list. The usage and configuration is shortly summarized in the
 			following. An exemplary maven project for UIMA Ruta is given here:
-			<code>https://svn.apache.org/repos/asf/uima/ruta/trunk/example-projects/ruta-maven-example</code>
+			<code>https://svn.apache.org/repos/asf/uima/uv3/ruta-v3/trunk/example-projects/ruta-maven-example</code>
 		</para>
 		<section>
 		<title>generate goal</title>
@@ -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>3.0.0</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>3.0.0</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>3.0.0</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=3.0.0
     -DgroupId=my.domain -DartifactId=my-ruta-project]]></programlisting>
     
     <para>