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/04/24 09:55:40 UTC

svn commit: r1675801 - /uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml

Author: pkluegl
Date: Fri Apr 24 07:55:39 2015
New Revision: 1675801

URL: http://svn.apache.org/r1675801
Log:
no jira - updated comments

Modified:
    uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml

Modified: uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml
URL: http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml?rev=1675801&r1=1675800&r2=1675801&view=diff
==============================================================================
--- uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml (original)
+++ uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml Fri Apr 24 07:55:39 2015
@@ -55,57 +55,68 @@
 
      <!-- The directory where the generated type system descriptors will 
       be written stored. -->
+      <!-- default value: ${project.build.directory}/generated-sources/ruta/descriptor -->
      <typeSystemOutputDirectory>${project.build.directory}/generated-sources/ruta/descriptor</typeSystemOutputDirectory>
 
      <!-- The directory where the generated analysis engine descriptors will 
       be stored. -->
+     <!-- default value: ${project.build.directory}/generated-sources/ruta/descriptor -->
      <analysisEngineOutputDirectory>${project.build.directory}/generated-sources/ruta/descriptor</analysisEngineOutputDirectory>
 
-     <!-- The template descriptor for the generated type system. -->
+     <!-- The template descriptor for the generated type system. By default the descriptor of the maven dependency is loaded. -->
+     <!-- default value: none -->
      <!-- not used in this example <typeSystemTemplate>...</typeSystemTemplate> -->
 
-     <!-- The template descriptor for the generated analysis engine. -->
+     <!-- The template descriptor for the generated analysis engine. By default the descriptor of the maven dependency is loaded. -->
+     <!-- default value: none -->
      <!-- not used in this example <analysisEngineTemplate>...</analysisEngineTemplate> -->
 
-     <!-- Script paths of the generated analysis engine descriptor. No default 
-      values given. -->
+     <!-- Script paths of the generated analysis engine descriptor. -->
+     <!-- default value: none -->
      <scriptPaths>
       <scriptPath>${basedir}/src/main/ruta/</scriptPath>
      </scriptPaths>
 
-     <!-- Descriptor paths of the generated analysis engine descriptor. No 
-      default values given. -->
+     <!-- Descriptor paths of the generated analysis engine descriptor. -->
+     <!-- default value: none -->
      <descriptorPaths>
       <descriptorPath>${project.build.directory}/generated-sources/ruta/descriptor</descriptorPath>
      </descriptorPaths>
 
-     <!-- Resource paths of the generated analysis engine descriptor. No 
-      default values given. -->
+     <!-- Resource paths of the generated analysis engine descriptor. -->
+     <!-- default value: none -->
      <resourcePaths>
       <resourcePath>${basedir}/src/main/resources/</resourcePath>
       <resourcePath>${project.build.directory}/generated-sources/ruta/resources/</resourcePath>
      </resourcePaths>
 
      <!-- Suffix used for the generated type system descriptors. -->
+     <!-- default value: Engine -->
      <analysisEngineSuffix>Engine</analysisEngineSuffix>
 
      <!-- Suffix used for the generated analysis engine descriptors. -->
+     <!-- default value: TypeSystem -->
      <typeSystemSuffix>TypeSystem</typeSystemSuffix>
 
-     <!-- Source file encoding. Default value: ${project.build.sourceEncoding} -->
+     <!-- Source file encoding. -->
+     <!-- default value: ${project.build.sourceEncoding} -->
      <encoding>UTF-8</encoding>
 
-     <!-- Type of type system imports. default false = import by location. -->
+     <!-- Type of type system imports. false = import by location. -->
+     <!-- default value: false -->
      <importByName>false</importByName>
 
      <!-- Option to resolve imports while building. -->
+     <!-- default value: false -->
      <resolveImports>false</resolveImports>
 
      <!-- Amount of retries for building dependent descriptors. Default value 
-      -1: three retires for each script. -->
+      -1 leads to three retires for each script. -->
+      <!-- default value: -1 -->
      <maxBuildRetries>-1</maxBuildRetries>
 
      <!-- List of packages with language extensions -->
+     <!-- default value: none -->
      <extensionPackages>
       <extensionPackage>org.apache.uima.ruta</extensionPackage>
      </extensionPackages>
@@ -116,7 +127,7 @@
 
 
      <!-- Buildpath of the UIMA Ruta Workbench (IDE) for this project -->
-     <!-- default value: empty -->
+     <!-- default value: none -->
      <buildPaths>
       <buildPath>script:src/main/ruta/</buildPath>
       <buildPath>descriptor:target/generated-sources/ruta/descriptor/</buildPath>
@@ -152,9 +163,11 @@
         the default configuration values if not mentioned otherwise. -->
 
        <!-- Compress resulting tree word list. -->
+       <!-- default value: true -->
        <compress>true</compress>
 
        <!-- The source files for the tree word list. -->
+       <!-- default value: none -->
        <inputFiles>
         <directory>${basedir}/src/main/resources</directory>
         <includes>
@@ -162,11 +175,12 @@
         </includes>
        </inputFiles>
 
-       <!-- The directory where the generated tree word lists will be written 
-        to. -->
+       <!-- The directory where the generated tree word lists will be written to. -->
+       <!-- default value: ${project.build.directory}/generated-sources/ruta/resources/ -->
        <outputDirectory>${project.build.directory}/generated-sources/ruta/resources/</outputDirectory>
 
-       <!-- Source file encoding. Default value: ${project.build.sourceEncoding} -->
+       <!-- Source file encoding. -->
+       <!-- default value: ${project.build.sourceEncoding} -->
        <encoding>UTF-8</encoding>
 
       </configuration>
@@ -191,9 +205,11 @@
         the default configuration values if not mentioned otherwise. -->
 
        <!-- Compress resulting tree word list. -->
+       <!-- default value: true -->
        <compress>true</compress>
 
        <!-- The source files for the multi tree word list. -->
+       <!-- default value: none -->
        <inputFiles>
         <directory>${basedir}/src/main/resources</directory>
         <includes>
@@ -201,12 +217,14 @@
         </includes>
        </inputFiles>
 
-       <!-- The directory where the generated tree word lists will be written 
-        to. -->
+       <!-- The directory where the generated tree word list will be written to. -->
+       <!-- default value: ${project.build.directory}/generated-sources/ruta/resources/generated.mtwl -->
        <outputFile>${project.build.directory}/generated-sources/ruta/resources/generated.mtwl</outputFile>
 
-       <!-- Source file encoding. Default value: ${project.build.sourceEncoding} -->
+       <!-- Source file encoding. -->
+       <!-- default value: ${project.build.sourceEncoding} -->
        <encoding>UTF-8</encoding>
+       
       </configuration>
      </execution>
     </executions>