You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by el...@apache.org on 2021/04/21 14:53:46 UTC

[maven-shared-io] branch master updated: make dependency on commons-io explicit (#15)

This is an automated email from the ASF dual-hosted git repository.

elharo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-shared-io.git


The following commit(s) were added to refs/heads/master by this push:
     new a84328f  make dependency on commons-io explicit (#15)
a84328f is described below

commit a84328f26d8fc9fb27302586208d185cde1bcbb6
Author: Elliotte Rusty Harold <el...@users.noreply.github.com>
AuthorDate: Wed Apr 21 14:53:39 2021 +0000

    make dependency on commons-io explicit (#15)
    
    * make dependency on commons-io explicit
---
 pom.xml | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 8bf6805..3b40531 100644
--- a/pom.xml
+++ b/pom.xml
@@ -105,7 +105,13 @@
       <artifactId>sisu-inject-plexus</artifactId>
       <version>1.4.2</version>
     </dependency>
-
+    
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+      <version>2.6</version>
+      <scope>test</scope>
+    </dependency>
     <dependency>
       <groupId>org.easymock</groupId>
       <artifactId>easymock</artifactId>