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/19 16:28:28 UTC

svn commit: r1815741 - in /ctakes/trunk: ctakes-assertion/pom.xml ctakes-regression-test/pom.xml pom.xml

Author: alexz
Date: Sun Nov 19 16:28:28 2017
New Revision: 1815741

URL: http://svn.apache.org/viewvc?rev=1815741&view=rev
Log:
CTAKES-481: fix uimaj dependencies - remove version from modules

Modified:
    ctakes/trunk/ctakes-assertion/pom.xml
    ctakes/trunk/ctakes-regression-test/pom.xml
    ctakes/trunk/pom.xml

Modified: ctakes/trunk/ctakes-assertion/pom.xml
URL: http://svn.apache.org/viewvc/ctakes/trunk/ctakes-assertion/pom.xml?rev=1815741&r1=1815740&r2=1815741&view=diff
==============================================================================
--- ctakes/trunk/ctakes-assertion/pom.xml (original)
+++ ctakes/trunk/ctakes-assertion/pom.xml Sun Nov 19 16:28:28 2017
@@ -94,7 +94,6 @@
 		<dependency>
             <groupId>org.apache.uima</groupId>
             <artifactId>uimaj-document-annotation</artifactId>
-            <version>2.9.0</version>
 		</dependency>
         <!--  libsvm added by type system.  -->
         <!--<dependency>-->

Modified: ctakes/trunk/ctakes-regression-test/pom.xml
URL: http://svn.apache.org/viewvc/ctakes/trunk/ctakes-regression-test/pom.xml?rev=1815741&r1=1815740&r2=1815741&view=diff
==============================================================================
--- ctakes/trunk/ctakes-regression-test/pom.xml (original)
+++ ctakes/trunk/ctakes-regression-test/pom.xml Sun Nov 19 16:28:28 2017
@@ -13,7 +13,6 @@
 		<dependency>
 			<groupId>org.apache.uima</groupId>
 			<artifactId>uimaj-cpe</artifactId>
-			<version>2.9.0</version>
 		</dependency>
 		<!--  Allow for use of example notes, example dictionaries, example models ...  -->
 		<dependency>

Modified: ctakes/trunk/pom.xml
URL: http://svn.apache.org/viewvc/ctakes/trunk/pom.xml?rev=1815741&r1=1815740&r2=1815741&view=diff
==============================================================================
--- ctakes/trunk/pom.xml (original)
+++ ctakes/trunk/pom.xml Sun Nov 19 16:28:28 2017
@@ -83,6 +83,7 @@
 		<maven.compiler.target>1.8</maven.compiler.target>
 		<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>
 		<spring.version>4.3.12.RELEASE</spring.version>
 		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 	</properties>
@@ -233,17 +234,17 @@
 			<dependency>
 				<groupId>org.apache.uima</groupId>
 				<artifactId>uimaj-core</artifactId>
-				<version>2.9.0</version>
+				<version>${uimaj.version}</version>
 			</dependency>
 			<dependency>
 				<groupId>org.apache.uima</groupId>
 				<artifactId>uimaj-tools</artifactId>
-				<version>2.9.0</version>
+				<version>${uimaj.version}</version>
 			</dependency>
 			<dependency>
 				<groupId>org.apache.uima</groupId>
 				<artifactId>uimaj-document-annotation</artifactId>
-				<version>2.9.0</version>
+				<version>${uimaj.version}</version>
 			</dependency>
 			<dependency>
 				<groupId>org.apache.uima</groupId>