You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by sc...@apache.org on 2009/10/01 20:01:36 UTC

svn commit: r820736 - /incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/pom.xml

Author: schor
Date: Thu Oct  1 18:01:36 2009
New Revision: 820736

URL: http://svn.apache.org/viewvc?rev=820736&view=rev
Log:
UIMA-1065 Fix issue with pom scope

Modified:
    incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/pom.xml

Modified: incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/pom.xml
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/pom.xml?rev=820736&r1=820735&r2=820736&view=diff
==============================================================================
--- incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/pom.xml (original)
+++ incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/pom.xml Thu Oct  1 18:01:36 2009
@@ -82,7 +82,9 @@
     <dependency>
       <groupId>org.apache.uima</groupId>
       <artifactId>uimaj-core</artifactId>
-      <scope>test</scope>
+      <!-- next scope has to be compile, not runtime, 
+           because classes needed for compiling the base -->
+      <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.uima</groupId>
@@ -199,7 +201,9 @@
               <excludes>
                 <exclude>docs/html/images/*.svg</exclude> <!-- generated image files for docbook -->
                 <exclude>cfeModelGen/*</exclude> <!-- generated EMF model files -->
-                <exclude>src/test/resources/testData.txt</exclude>
+                <exclude>src/test/resources/testData*.txt*</exclude> <!-- test data -->
+                <exclude>src/test/java/example/PersonTitle*.java</exclude> <!-- generated -->
+                <exclude>src/test/java/org/apache/uima/examples/SourceDocumentInformation*.java</exclude> <!-- generated -->
               </excludes>
             </configuration>
           </execution>