JAMES-2521 Reduce dependencies of blob-api
Project: http://git-wip-us.apache.org/repos/asf/james-project/repo Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/7a72468b Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/7a72468b Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/7a72468b Branch: refs/heads/master Commit: 7a72468bed00c3e3dbda69b0f7334807f88e3aa6 Parents: 7f3f323 Author: Benoit Tellier <[email protected]> Authored: Wed Aug 15 10:50:33 2018 +0700 Committer: Benoit Tellier <[email protected]> Committed: Wed Aug 29 10:12:43 2018 +0700 ---------------------------------------------------------------------- server/blob/blob-api/pom.xml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/james-project/blob/7a72468b/server/blob/blob-api/pom.xml ---------------------------------------------------------------------- diff --git a/server/blob/blob-api/pom.xml b/server/blob/blob-api/pom.xml index 8eba84b..e8d4c79 100644 --- a/server/blob/blob-api/pom.xml +++ b/server/blob/blob-api/pom.xml @@ -34,12 +34,14 @@ <dependencies> <dependency> - <groupId>${james.groupId}</groupId> - <artifactId>james-server-util</artifactId> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + <scope>test</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> + <scope>test</scope> </dependency> <dependency> <groupId>nl.jqno.equalsverifier</groupId> @@ -52,6 +54,11 @@ <scope>test</scope> </dependency> <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-lang3</artifactId> + <scope>test</scope> + </dependency> + <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
