You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ctakes.apache.org by ch...@apache.org on 2014/11/04 23:36:01 UTC

svn commit: r1636765 - /ctakes/trunk/pom.xml

Author: chenpei
Date: Tue Nov  4 22:36:00 2014
New Revision: 1636765

URL: http://svn.apache.org/r1636765
Log:
CTAKES-321 - <!-- Exclude LGPL Licensed transitive dependency -->
com.google.code.findbugs:jsr305 from guava

Modified:
    ctakes/trunk/pom.xml

Modified: ctakes/trunk/pom.xml
URL: http://svn.apache.org/viewvc/ctakes/trunk/pom.xml?rev=1636765&r1=1636764&r2=1636765&view=diff
==============================================================================
--- ctakes/trunk/pom.xml (original)
+++ ctakes/trunk/pom.xml Tue Nov  4 22:36:00 2014
@@ -534,10 +534,13 @@
 				<groupId>com.google.guava</groupId>
 				<artifactId>guava</artifactId>
 				<version>10.0</version>
-				<excludes>
+				<exclusions>
 				    <!-- Exclude LGPL Licensed transitive dependency -->
-				    <exclude>com.google.code.findbugs:jsr305</exclude>
-				</excludes>
+				    <exclusion>
+				        <groupId>com.google.code.findbugs</groupId>
+				        <artifact>jsr305</artifact>
+				    </exclusion>
+				</exclusions>
 			</dependency>
 			<dependency>
 				<groupId>com.carrotsearch</groupId>