This is an automated email from the ASF dual-hosted git repository. gyfora pushed a commit to annotated tag release-0.1.0-rc2 in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git
commit 600f487e76ab01bccd33de2ec56a67b222d83f99 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 b7b35fb..411d283 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>
