This is an automated email from the ASF dual-hosted git repository. echauchot pushed a commit to branch ci_utils in repository https://gitbox.apache.org/repos/asf/flink-connector-shared-utils.git
commit ad16ea8211f9c28a7540b9bf98a27a92860e4b39 Author: Etienne Chauchot <[email protected]> AuthorDate: Thu Feb 29 11:06:40 2024 +0100 [FLINK-34137] exclude junit-platform-engine archunit transitive dep for dependency convergence --- pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pom.xml b/pom.xml index 534ef1d..2fc1e1b 100644 --- a/pom.xml +++ b/pom.xml @@ -87,6 +87,13 @@ under the License. <artifactId>archunit-junit5</artifactId> <version>${archunit.version}</version> <scope>test</scope> + <!-- for dependency convergence --> + <exclusions> + <exclusion> + <groupId>org.junit.platform</groupId> + <artifactId>junit-platform-engine</artifactId> + </exclusion> + </exclusions> </dependency> </dependencies>
