You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ctakes.apache.org by al...@apache.org on 2017/11/27 23:44:58 UTC

svn commit: r1816508 - in /ctakes/trunk: ctakes-core/pom.xml ctakes-coreference/pom.xml ctakes-examples/pom.xml pom.xml

Author: alexz
Date: Mon Nov 27 23:44:58 2017
New Revision: 1816508

URL: http://svn.apache.org/viewvc?rev=1816508&view=rev
Log:
CTAKES-457: manage uimafit-* dependencies using pom properties

Modified:
    ctakes/trunk/ctakes-core/pom.xml
    ctakes/trunk/ctakes-coreference/pom.xml
    ctakes/trunk/ctakes-examples/pom.xml
    ctakes/trunk/pom.xml

Modified: ctakes/trunk/ctakes-core/pom.xml
URL: http://svn.apache.org/viewvc/ctakes/trunk/ctakes-core/pom.xml?rev=1816508&r1=1816507&r2=1816508&view=diff
==============================================================================
--- ctakes/trunk/ctakes-core/pom.xml (original)
+++ ctakes/trunk/ctakes-core/pom.xml Mon Nov 27 23:44:58 2017
@@ -119,11 +119,6 @@
          <groupId>com.lexicalscope.jewelcli</groupId>
          <artifactId>jewelcli</artifactId>
       </dependency>
-        <!--  uimafit core is added by type system.  -->
-        <!--<dependency>-->
-        <!--<groupId>org.apache.uima</groupId>-->
-        <!--<artifactId>uimafit-core</artifactId>-->
-        <!--</dependency>-->
       <dependency>
          <groupId>org.cleartk</groupId>
          <artifactId>cleartk-ml</artifactId>
@@ -131,7 +126,6 @@
         <dependency>
             <groupId>org.apache.uima</groupId>
             <artifactId>uimafit-cpe</artifactId>
-            <version>2.3.0</version>
         </dependency>
 	</dependencies>
 </project>

Modified: ctakes/trunk/ctakes-coreference/pom.xml
URL: http://svn.apache.org/viewvc/ctakes/trunk/ctakes-coreference/pom.xml?rev=1816508&r1=1816507&r2=1816508&view=diff
==============================================================================
--- ctakes/trunk/ctakes-coreference/pom.xml (original)
+++ ctakes/trunk/ctakes-coreference/pom.xml Mon Nov 27 23:44:58 2017
@@ -46,7 +46,6 @@
 		<dependency>
 			<groupId>org.apache.uima</groupId>
 			<artifactId>uimafit-cpe</artifactId>
-			<version>2.3.0</version>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.ctakes</groupId>

Modified: ctakes/trunk/ctakes-examples/pom.xml
URL: http://svn.apache.org/viewvc/ctakes/trunk/ctakes-examples/pom.xml?rev=1816508&r1=1816507&r2=1816508&view=diff
==============================================================================
--- ctakes/trunk/ctakes-examples/pom.xml (original)
+++ ctakes/trunk/ctakes-examples/pom.xml Mon Nov 27 23:44:58 2017
@@ -54,7 +54,6 @@
      <dependency>
      	<groupId>org.apache.uima</groupId>
      	<artifactId>uimafit-cpe</artifactId>
-     	<version>2.3.0</version>
      </dependency>
   </dependencies>
     <profiles>

Modified: ctakes/trunk/pom.xml
URL: http://svn.apache.org/viewvc/ctakes/trunk/pom.xml?rev=1816508&r1=1816507&r2=1816508&view=diff
==============================================================================
--- ctakes/trunk/pom.xml (original)
+++ ctakes/trunk/pom.xml Mon Nov 27 23:44:58 2017
@@ -84,6 +84,7 @@
 		<maven-surefire-plugin.version>2.12.1</maven-surefire-plugin.version>
 		<exec-maven-plugin.version>1.2.1</exec-maven-plugin.version>
 		<uimaj.version>2.9.0</uimaj.version>
+		<uimafit.version>2.3.0</uimafit.version>
 		<spring.version>4.3.12.RELEASE</spring.version>
 		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 	</properties>
@@ -254,7 +255,12 @@
 			<dependency>
 				<groupId>org.apache.uima</groupId>
 				<artifactId>uimafit-core</artifactId>
-				<version>2.2.0</version>
+				<version>${uimafit.version}</version>
+			</dependency>
+			<dependency>
+				<groupId>org.apache.uima</groupId>
+				<artifactId>uimafit-cpe</artifactId>
+				<version>${uimafit.version}</version>
 			</dependency>
 			<dependency>
 				<groupId>org.apache.opennlp</groupId>