You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2005/12/30 19:30:24 UTC

svn commit: r360133 - in /directory/trunk/protocol-common: pom.xml project.xml

Author: akarasulu
Date: Fri Dec 30 10:30:22 2005
New Revision: 360133

URL: http://svn.apache.org/viewcvs?rev=360133&view=rev
Log:
Using 'provided' scope for junit dependency since this artifact has an abstract
test case.  We do not do test scope since the test cases that depend on it are
in the src/main area and need the dep on the source classpath.  

We do not want to make this dep transitive because other dependent projects will
not want to include the dependency.

Blew away old m1 pom.

Removed:
    directory/trunk/protocol-common/project.xml
Modified:
    directory/trunk/protocol-common/pom.xml

Modified: directory/trunk/protocol-common/pom.xml
URL: http://svn.apache.org/viewcvs/directory/trunk/protocol-common/pom.xml?rev=360133&r1=360132&r2=360133&view=diff
==============================================================================
--- directory/trunk/protocol-common/pom.xml (original)
+++ directory/trunk/protocol-common/pom.xml Fri Dec 30 10:30:22 2005
@@ -12,11 +12,16 @@
   <name>protocol-common</name>
   <packaging>jar</packaging>  
   <dependencies>
+    <!-- 
+         protocol-common seems to have abstract test cases that need
+         junit on the source class path os we cannot make junit dep
+         have test scope.
+    -->
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <version>3.8.1</version>
-      <!--scope>test</scope-->
+      <scope>provided</scope>
     </dependency>
 
     <dependency>