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/02 00:01:18 UTC

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

Author: schor
Date: Thu Oct  1 22:01:17 2009
New Revision: 820819

URL: http://svn.apache.org/viewvc?rev=820819&view=rev
Log:
UIMA-1065 fix pom - remove <scope>test for uimaj-core because it deletes the <scope>provided, used by the src/main code. <scope>provided seems to include uimaj-core in the test classpath - the test runs.

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=820819&r1=820818&r2=820819&view=diff
==============================================================================
--- incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/pom.xml (original)
+++ incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/pom.xml Thu Oct  1 22:01:17 2009
@@ -38,6 +38,7 @@
     <dependency>
       <groupId>org.apache.uima</groupId>
       <artifactId>uimaj-core</artifactId>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>commons-jxpath</groupId>
@@ -79,13 +80,15 @@
     </dependency>
 
     <!-- testing resources -->
-    <dependency>
+    <!-- uimaj-core is already "provided" and this seems to let it be 
+         available for testing
+         If you make it test scope, it removes it from the 'provided'
+         category and the main code won't compile -->
+    <!--dependency>
       <groupId>org.apache.uima</groupId>
       <artifactId>uimaj-core</artifactId>
-      <!-- next scope has to be compile, not runtime, 
-           because classes needed for compiling the base -->
-      <scope>compile</scope>
-    </dependency>
+      <scope>test</scope>
+    </dependency-->
     <dependency>
       <groupId>org.apache.uima</groupId>
       <artifactId>uimaj-test-util</artifactId>