This is an automated email from the ASF dual-hosted git repository. elharo pushed a commit to branch plex in repository https://gitbox.apache.org/repos/asf/maven-shared-io.git
commit bcb38049ffa39a954c7379f6ec7ff4989e94c153 Author: Elliotte Rusty Harold <[email protected]> AuthorDate: Wed Apr 21 10:45:06 2021 -0400 make dependency on commons-io explicit --- pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pom.xml b/pom.xml index 8bf6805..55fdbc5 100644 --- a/pom.xml +++ b/pom.xml @@ -105,6 +105,12 @@ <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>
