You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ec...@apache.org on 2015/02/10 23:06:42 UTC

svn commit: r1658826 - /commons/proper/vfs/trunk/sandbox/pom.xml

Author: ecki
Date: Tue Feb 10 22:06:42 2015
New Revision: 1658826

URL: http://svn.apache.org/r1658826
Log:
[sandbox] added commons-io as required test dependency.

Modified:
    commons/proper/vfs/trunk/sandbox/pom.xml

Modified: commons/proper/vfs/trunk/sandbox/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/sandbox/pom.xml?rev=1658826&r1=1658825&r2=1658826&view=diff
==============================================================================
--- commons/proper/vfs/trunk/sandbox/pom.xml (original)
+++ commons/proper/vfs/trunk/sandbox/pom.xml Tue Feb 10 22:06:42 2015
@@ -59,14 +59,22 @@
       <artifactId>mail</artifactId>
       <optional>true</optional>
     </dependency>
+
     <dependency>
        <groupId>org.apache.commons</groupId>
        <artifactId>commons-vfs2</artifactId>
        <type>test-jar</type>
-     </dependency>
+       <scope>test</scope>
+    </dependency>
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+      <scope>test</scope>
     </dependency>
   </dependencies>