This is an automated email from the ASF dual-hosted git repository. wangyang0918 pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git
commit fff31272c2cdf4024cd02df4002e02140fc64f39 Author: wangyang0918 <[email protected]> AuthorDate: Tue Mar 29 14:09:16 2022 +0800 [hotfix] Exclude flink-scala dependency from flink-clients --- flink-kubernetes-operator/pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/flink-kubernetes-operator/pom.xml b/flink-kubernetes-operator/pom.xml index 0194c8d..5c886fa 100644 --- a/flink-kubernetes-operator/pom.xml +++ b/flink-kubernetes-operator/pom.xml @@ -61,6 +61,12 @@ under the License. <groupId>org.apache.flink</groupId> <artifactId>flink-clients_${scala.version}</artifactId> <version>${flink.version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.flink</groupId> + <artifactId>flink-scala_${scala.version}</artifactId> + </exclusion> + </exclusions> </dependency> <dependency>
