This is an automated email from the ASF dual-hosted git repository. timoninmaxim pushed a commit to branch IGNITE-16753__ignite_2.12_zk_updates in repository https://gitbox.apache.org/repos/asf/ignite.git
commit 353bee8537f78e14c51dece21b5578f7402d71a7 Author: Maksim Timonin <[email protected]> AuthorDate: Wed Mar 30 14:46:01 2022 +0300 WIP --- modules/control-utility/pom.xml | 10 ++++++++++ modules/zookeeper/pom.xml | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/modules/control-utility/pom.xml b/modules/control-utility/pom.xml index 5a7f787..9138be9 100644 --- a/modules/control-utility/pom.xml +++ b/modules/control-utility/pom.xml @@ -126,6 +126,16 @@ <artifactId>curator-test</artifactId> <version>${curator.version}</version> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-api</artifactId> + </exclusion> + <exclusion> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-engine</artifactId> + </exclusion> + </exclusions> </dependency> </dependencies> diff --git a/modules/zookeeper/pom.xml b/modules/zookeeper/pom.xml index 392ea37..97abfc5 100644 --- a/modules/zookeeper/pom.xml +++ b/modules/zookeeper/pom.xml @@ -84,6 +84,16 @@ <artifactId>curator-test</artifactId> <version>${curator.version}</version> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-api</artifactId> + </exclusion> + <exclusion> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-engine</artifactId> + </exclusion> + </exclusions> </dependency> <dependency>
