You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by re...@apache.org on 2013/08/10 14:49:39 UTC

svn commit: r1512681 - in /uima/sandbox/uimafit/trunk: uimafit-core/pom.xml uimafit-cpe/pom.xml uimafit-examples/pom.xml uimafit-legacy-support/pom.xml uimafit-maven-plugin/pom.xml uimafit-parent/pom.xml uimafit-spring/pom.xml

Author: rec
Date: Sat Aug 10 12:49:38 2013
New Revision: 1512681

URL: http://svn.apache.org/r1512681
Log:
[UIMA-3177] Fix Maven warnings
- Fixed issues found by dependency:analyze


Modified:
    uima/sandbox/uimafit/trunk/uimafit-core/pom.xml
    uima/sandbox/uimafit/trunk/uimafit-cpe/pom.xml
    uima/sandbox/uimafit/trunk/uimafit-examples/pom.xml
    uima/sandbox/uimafit/trunk/uimafit-legacy-support/pom.xml
    uima/sandbox/uimafit/trunk/uimafit-maven-plugin/pom.xml
    uima/sandbox/uimafit/trunk/uimafit-parent/pom.xml
    uima/sandbox/uimafit/trunk/uimafit-spring/pom.xml

Modified: uima/sandbox/uimafit/trunk/uimafit-core/pom.xml
URL: http://svn.apache.org/viewvc/uima/sandbox/uimafit/trunk/uimafit-core/pom.xml?rev=1512681&r1=1512680&r2=1512681&view=diff
==============================================================================
--- uima/sandbox/uimafit/trunk/uimafit-core/pom.xml (original)
+++ uima/sandbox/uimafit/trunk/uimafit-core/pom.xml Sat Aug 10 12:49:38 2013
@@ -40,6 +40,10 @@
 			<artifactId>commons-io</artifactId>
 		</dependency>
 		<dependency>
+			<groupId>commons-logging</groupId>
+			<artifactId>commons-logging-api</artifactId>
+		</dependency>
+		<dependency>
 			<groupId>org.apache.uima</groupId>
 			<artifactId>uimaj-core</artifactId>
 		</dependency>
@@ -53,6 +57,10 @@
 		</dependency>
 		<dependency>
 			<groupId>org.springframework</groupId>
+			<artifactId>spring-beans</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.springframework</groupId>
 			<artifactId>spring-test</artifactId>
 			<scope>test</scope>
 		</dependency>

Modified: uima/sandbox/uimafit/trunk/uimafit-cpe/pom.xml
URL: http://svn.apache.org/viewvc/uima/sandbox/uimafit/trunk/uimafit-cpe/pom.xml?rev=1512681&r1=1512680&r2=1512681&view=diff
==============================================================================
--- uima/sandbox/uimafit/trunk/uimafit-cpe/pom.xml (original)
+++ uima/sandbox/uimafit/trunk/uimafit-cpe/pom.xml Sat Aug 10 12:49:38 2013
@@ -35,7 +35,15 @@
 		</dependency>
 		<dependency>
 			<groupId>org.apache.uima</groupId>
-			<artifactId>uimaj-tools</artifactId>
+			<artifactId>uimaj-cpe</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.uima</groupId>
+			<artifactId>uimaj-core</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>commons-io</groupId>
+			<artifactId>commons-io</artifactId>
 		</dependency>
 	</dependencies>
 </project>
\ No newline at end of file

Modified: uima/sandbox/uimafit/trunk/uimafit-examples/pom.xml
URL: http://svn.apache.org/viewvc/uima/sandbox/uimafit/trunk/uimafit-examples/pom.xml?rev=1512681&r1=1512680&r2=1512681&view=diff
==============================================================================
--- uima/sandbox/uimafit/trunk/uimafit-examples/pom.xml (original)
+++ uima/sandbox/uimafit/trunk/uimafit-examples/pom.xml Sat Aug 10 12:49:38 2013
@@ -36,13 +36,16 @@
 			<version>2.0.0-SNAPSHOT</version>
 		</dependency>
 		<dependency>
-			<groupId>junit</groupId>
-			<artifactId>junit</artifactId>
+			<groupId>org.apache.uima</groupId>
+			<artifactId>uimaj-core</artifactId>
 		</dependency>
 		<dependency>
-			<groupId>org.apache.uima</groupId>
-			<artifactId>uimaj-tools</artifactId>
-			<scope>test</scope>
+			<groupId>commons-io</groupId>
+			<artifactId>commons-io</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
 		</dependency>
 	</dependencies>
 	<licenses>

Modified: uima/sandbox/uimafit/trunk/uimafit-legacy-support/pom.xml
URL: http://svn.apache.org/viewvc/uima/sandbox/uimafit/trunk/uimafit-legacy-support/pom.xml?rev=1512681&r1=1512680&r2=1512681&view=diff
==============================================================================
--- uima/sandbox/uimafit/trunk/uimafit-legacy-support/pom.xml (original)
+++ uima/sandbox/uimafit/trunk/uimafit-legacy-support/pom.xml Sat Aug 10 12:49:38 2013
@@ -41,6 +41,10 @@
 			<artifactId>uimaj-core</artifactId>
 		</dependency>
 		<dependency>
+			<groupId>commons-lang</groupId>
+			<artifactId>commons-lang</artifactId>
+		</dependency>
+		<dependency>
 			<groupId>commons-io</groupId>
 			<artifactId>commons-io</artifactId>
 			<scope>test</scope>

Modified: uima/sandbox/uimafit/trunk/uimafit-maven-plugin/pom.xml
URL: http://svn.apache.org/viewvc/uima/sandbox/uimafit/trunk/uimafit-maven-plugin/pom.xml?rev=1512681&r1=1512680&r2=1512681&view=diff
==============================================================================
--- uima/sandbox/uimafit/trunk/uimafit-maven-plugin/pom.xml (original)
+++ uima/sandbox/uimafit/trunk/uimafit-maven-plugin/pom.xml Sat Aug 10 12:49:38 2013
@@ -47,6 +47,14 @@
 			<artifactId>commons-io</artifactId>
 		</dependency>
 		<dependency>
+			<groupId>commons-lang</groupId>
+			<artifactId>commons-lang</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.uima</groupId>
+			<artifactId>uimaj-core</artifactId>
+		</dependency>
+		<dependency>
 			<groupId>org.apache.uima</groupId>
 			<artifactId>uimafit-core</artifactId>
 			<version>2.0.0-SNAPSHOT</version>
@@ -71,12 +79,27 @@
 			<version>3.0</version>
 		</dependency>
 		<dependency>
+			<groupId>org.apache.maven</groupId>
+			<artifactId>maven-artifact</artifactId>
+			<version>3.0</version>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.maven</groupId>
+			<artifactId>maven-model</artifactId>
+			<version>3.0</version>
+		</dependency>
+		<dependency>
 			<groupId>org.apache.maven.plugin-tools</groupId>
 			<artifactId>maven-plugin-annotations</artifactId>
 			<version>3.2</version>
 			<scope>provided</scope>
 		</dependency>
 		<dependency>
+			<groupId>org.codehaus.plexus</groupId>
+			<artifactId>plexus-utils</artifactId>
+			<version>2.0.4</version>
+		</dependency>
+		<dependency>
 			<groupId>org.sonatype.plexus</groupId>
 			<artifactId>plexus-build-api</artifactId>
 			<version>0.0.7</version>

Modified: uima/sandbox/uimafit/trunk/uimafit-parent/pom.xml
URL: http://svn.apache.org/viewvc/uima/sandbox/uimafit/trunk/uimafit-parent/pom.xml?rev=1512681&r1=1512680&r2=1512681&view=diff
==============================================================================
--- uima/sandbox/uimafit/trunk/uimafit-parent/pom.xml (original)
+++ uima/sandbox/uimafit/trunk/uimafit-parent/pom.xml Sat Aug 10 12:49:38 2013
@@ -75,12 +75,22 @@
 				<!-- 2.2 is the last Java 5 compatible version -->
 			</dependency>
 			<dependency>
+				<groupId>commons-logging</groupId>
+				<artifactId>commons-logging-api</artifactId>
+				<version>1.1</version>
+			</dependency>
+			<dependency>
 				<groupId>org.apache.uima</groupId>
 				<artifactId>uimaj-core</artifactId>
 				<version>${uima.version}</version>
 			</dependency>
 			<dependency>
 				<groupId>org.apache.uima</groupId>
+				<artifactId>uimaj-cpe</artifactId>
+				<version>${uima.version}</version>
+			</dependency>
+			<dependency>
+				<groupId>org.apache.uima</groupId>
 				<artifactId>uimaj-tools</artifactId>
 				<version>${uima.version}</version>
 			</dependency>
@@ -96,6 +106,11 @@
 			</dependency>
 			<dependency>
 				<groupId>org.springframework</groupId>
+				<artifactId>spring-beans</artifactId>
+				<version>${spring.version}</version>
+			</dependency>
+			<dependency>
+				<groupId>org.springframework</groupId>
 				<artifactId>spring-context</artifactId>
 				<version>${spring.version}</version>
 				<!--  

Modified: uima/sandbox/uimafit/trunk/uimafit-spring/pom.xml
URL: http://svn.apache.org/viewvc/uima/sandbox/uimafit/trunk/uimafit-spring/pom.xml?rev=1512681&r1=1512680&r2=1512681&view=diff
==============================================================================
--- uima/sandbox/uimafit/trunk/uimafit-spring/pom.xml (original)
+++ uima/sandbox/uimafit/trunk/uimafit-spring/pom.xml Sat Aug 10 12:49:38 2013
@@ -33,26 +33,17 @@
 	<dependencies>
 		<dependency>
 			<groupId>org.springframework</groupId>
-			<artifactId>spring-core</artifactId>
+			<artifactId>spring-beans</artifactId>
 		</dependency>
 		<dependency>
 			<groupId>org.springframework</groupId>
 			<artifactId>spring-context</artifactId>
 		</dependency>
 		<dependency>
-			<groupId>org.springframework</groupId>
-			<artifactId>spring-test</artifactId>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
 			<groupId>org.apache.uima</groupId>
 			<artifactId>uimaj-core</artifactId>
 		</dependency>
 		<dependency>
-			<groupId>commons-io</groupId>
-			<artifactId>commons-io</artifactId>
-		</dependency>
-		<dependency>
 			<groupId>org.apache.uima</groupId>
 			<artifactId>uimafit-core</artifactId>
 			<version>2.0.0-SNAPSHOT</version>