Repository: james-project Updated Branches: refs/heads/master b9ee90776 -> 396d68490
JAMES-2292 fix pom.xml ordering issue Project: http://git-wip-us.apache.org/repos/asf/james-project/repo Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/fe252c29 Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/fe252c29 Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/fe252c29 Branch: refs/heads/master Commit: fe252c29ecc786617c329596abbab36265af173c Parents: f3eb9b1 Author: Matthieu Baechler <[email protected]> Authored: Wed Jan 24 17:24:00 2018 +0100 Committer: Matthieu Baechler <[email protected]> Committed: Wed Jan 24 17:24:00 2018 +0100 ---------------------------------------------------------------------- server/queue/queue-api/pom.xml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/james-project/blob/fe252c29/server/queue/queue-api/pom.xml ---------------------------------------------------------------------- diff --git a/server/queue/queue-api/pom.xml b/server/queue/queue-api/pom.xml index fb31971..0ac09b4 100644 --- a/server/queue/queue-api/pom.xml +++ b/server/queue/queue-api/pom.xml @@ -71,13 +71,14 @@ <scope>test</scope> </dependency> <dependency> - <groupId>org.junit.vintage</groupId> - <artifactId>junit-vintage-engine</artifactId> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> - <groupId>org.junit.jupiter</groupId> - <artifactId>junit-jupiter-engine</artifactId> + <groupId>org.junit.vintage</groupId> + <artifactId>junit-vintage-engine</artifactId> + <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
