JAMES-2292 fix test running by importing required dependencies
Project: http://git-wip-us.apache.org/repos/asf/james-project/repo Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/2c4c0db6 Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/2c4c0db6 Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/2c4c0db6 Branch: refs/heads/master Commit: 2c4c0db6d0e9cc82e7ff3c169f926df867a2247c Parents: eedb206 Author: Matthieu Baechler <[email protected]> Authored: Wed Jan 24 17:35:05 2018 +0100 Committer: Matthieu Baechler <[email protected]> Committed: Wed Jan 24 17:35:05 2018 +0100 ---------------------------------------------------------------------- server/queue/queue-memory/pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/james-project/blob/2c4c0db6/server/queue/queue-memory/pom.xml ---------------------------------------------------------------------- diff --git a/server/queue/queue-memory/pom.xml b/server/queue/queue-memory/pom.xml index 12b4292..8c0abf1 100644 --- a/server/queue/queue-memory/pom.xml +++ b/server/queue/queue-memory/pom.xml @@ -37,6 +37,11 @@ <scope>test</scope> </dependency> <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>james-server-testing</artifactId> + <scope>test</scope> + </dependency> + <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> </dependency> @@ -51,6 +56,11 @@ <scope>test</scope> </dependency> <dependency> + <groupId>org.junit.platform</groupId> + <artifactId>junit-platform-launcher</artifactId> + <scope>test</scope> + </dependency> + <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> <scope>test</scope> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
