You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by se...@apache.org on 2009/03/20 16:28:52 UTC

svn commit: r756530 - /httpcomponents/httpcore/trunk/httpcore-nio/pom.xml

Author: sebb
Date: Fri Mar 20 15:28:51 2009
New Revision: 756530

URL: http://svn.apache.org/viewvc?rev=756530&view=rev
Log:
Change JCIP dependency scope to provided

Modified:
    httpcomponents/httpcore/trunk/httpcore-nio/pom.xml

Modified: httpcomponents/httpcore/trunk/httpcore-nio/pom.xml
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/httpcore-nio/pom.xml?rev=756530&r1=756529&r2=756530&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/httpcore-nio/pom.xml (original)
+++ httpcomponents/httpcore/trunk/httpcore-nio/pom.xml Fri Mar 20 15:28:51 2009
@@ -69,8 +69,12 @@
         <groupId>net.jcip</groupId>
         <artifactId>jcip-annotations</artifactId>
         <version>1.0</version>
-        <!-- Not optional; this is a hack to stop the dependency becoming transitive -->
-        <optional>true</optional>
+        <!-- 
+            Annotations are only _required_ during a build
+            They are not needed at run-time
+            Provided means that the dependency is not transitive.
+         -->
+        <scope>provided</scope>
     </dependency>
   </dependencies>