This is an automated email from the ASF dual-hosted git repository. snuyanzin pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/flink-connector-hive.git
The following commit(s) were added to refs/heads/main by this push: new 9a845b4f [hotfix] Update dependencies 9a845b4f is described below commit 9a845b4fced28a465d33a589f87a8704bb29794a Author: Sergey Nuyanzin <snuyan...@gmail.com> AuthorDate: Wed Jan 15 08:14:44 2025 +0100 [hotfix] Update dependencies --- flink-sql-connector-2.3.10/pom.xml | 137 --------------------- .../src/main/resources/META-INF/NOTICE | 66 ---------- .../main/resources/META-INF/licenses/LICENSE.antlr | 26 ---- .../resources/META-INF/licenses/LICENSE.javolution | 27 ---- .../main/resources/META-INF/licenses/LICENSE.kryo | 10 -- .../resources/META-INF/licenses/LICENSE.minlog | 10 -- .../resources/META-INF/licenses/LICENSE.protobuf | 32 ----- .../resources/META-INF/licenses/LICENSE.reflectasm | 10 -- .../resources/META-INF/licenses/LICENSE.slf4j-api | 21 ---- .../src/main/resources/META-INF/NOTICE | 4 +- flink-sql-connector-hive-3.1.3/pom.xml | 2 +- .../src/main/resources/META-INF/NOTICE | 2 +- pom.xml | 12 +- 13 files changed, 10 insertions(+), 349 deletions(-) diff --git a/flink-sql-connector-2.3.10/pom.xml b/flink-sql-connector-2.3.10/pom.xml deleted file mode 100644 index 30fd97fd..00000000 --- a/flink-sql-connector-2.3.10/pom.xml +++ /dev/null @@ -1,137 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- -Licensed to the Apache Software Foundation (ASF) under one -or more contributor license agreements. See the NOTICE file -distributed with this work for additional information -regarding copyright ownership. The ASF licenses this file -to you under the Apache License, Version 2.0 (the -"License"); you may not use this file except in compliance -with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, -software distributed under the License is distributed on an -"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -KIND, either express or implied. See the License for the -specific language governing permissions and limitations -under the License. ---> -<project xmlns="http://maven.apache.org/POM/4.0.0" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> - - <modelVersion>4.0.0</modelVersion> - - <parent> - <groupId>org.apache.flink</groupId> - <artifactId>flink-connectors</artifactId> - <version>1.20-SNAPSHOT</version> - </parent> - - <artifactId>flink-sql-connector-hive-2.3.10_${scala.binary.version}</artifactId> - <name>Flink : Connectors : SQL : Hive 2.3.10</name> - - <packaging>jar</packaging> - - <properties> - <japicmp.skip>true</japicmp.skip> - </properties> - - <dependencies> - <dependency> - <groupId>org.apache.flink</groupId> - <artifactId>flink-connector-hive_${scala.binary.version}</artifactId> - <version>${project.version}</version> - <optional>${flink.markBundledAsOptional}</optional> - </dependency> - - <dependency> - <groupId>org.apache.hive</groupId> - <artifactId>hive-exec</artifactId> - <version>2.3.10</version> - <optional>${flink.markBundledAsOptional}</optional> - <exclusions> - <exclusion> - <groupId>log4j</groupId> - <artifactId>log4j</artifactId> - </exclusion> - <exclusion> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-log4j12</artifactId> - </exclusion> - <!-- Rely on the Guava version of Hadoop. --> - <exclusion> - <groupId>com.google.guava</groupId> - <artifactId>guava</artifactId> - </exclusion> - <exclusion> - <groupId>ch.qos.reload4j</groupId> - <artifactId>reload4j</artifactId> - </exclusion> - <exclusion> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-reload4j</artifactId> - </exclusion> - </exclusions> - </dependency> - - <dependency> - <groupId>org.antlr</groupId> - <artifactId>antlr-runtime</artifactId> - <version>3.5.2</version> - <optional>${flink.markBundledAsOptional}</optional> - </dependency> - </dependencies> - - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-shade-plugin</artifactId> - <executions> - <execution> - <id>shade-flink</id> - <phase>package</phase> - <goals> - <goal>shade</goal> - </goals> - <configuration> - <artifactSet> - <includes> - <include>org.apache.flink:flink-connector-hive_${scala.binary.version}</include> - <include>org.apache.hive:hive-exec</include> - <include>org.antlr:antlr-runtime</include> - </includes> - </artifactSet> - <relocations> - <relocation> - <pattern>org.apache.parquet</pattern> - <shadedPattern>org.apache.hive.shaded.parquet</shadedPattern> - </relocation> - <relocation> - <pattern>shaded.parquet</pattern> - <shadedPattern>org.apache.hive.reshaded.parquet</shadedPattern> - </relocation> - <!-- Guava dependencies that still end up in the shaded JAR are relocated to avoid clashes. --> - <relocation> - <pattern>com.google</pattern> - <shadedPattern>org.apache.flink.hive.shaded.com.google</shadedPattern> - </relocation> - </relocations> - <!-- Table planner also contains calcite dependency. Exclude to prevent class conflicts. --> - <filters> - <filter> - <artifact>org.apache.hive:hive-exec</artifact> - <excludes> - <exclude>org/apache/calcite/**</exclude> - </excludes> - </filter> - </filters> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> -</project> diff --git a/flink-sql-connector-2.3.10/src/main/resources/META-INF/NOTICE b/flink-sql-connector-2.3.10/src/main/resources/META-INF/NOTICE deleted file mode 100644 index d7b80b3d..00000000 --- a/flink-sql-connector-2.3.10/src/main/resources/META-INF/NOTICE +++ /dev/null @@ -1,66 +0,0 @@ -flink-sql-connector-hive-2.3.10 -Copyright 2014-2024 The Apache Software Foundation - -This product includes software developed at -The Apache Software Foundation (http://www.apache.org/). - -This project bundles the following dependencies under the Apache Software License 2.0. (http://www.apache.org/licenses/LICENSE-2.0.txt) - -- org.apache.hive:hive-exec:2.3.10 - -This project bundles the following dependencies under the BSD license. -See bundled license files for details. - -- org.antlr:antlr-runtime:3.5.2 - -The bundled Apache Hive org.apache.hive:hive-exec dependency bundles the following dependencies under -the Apache Software License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) - -- com.fasterxml.jackson.core:jackson-annotations:2.12.0 -- com.fasterxml.jackson.core:jackson-core:2.12.0 -- com.fasterxml.jackson.core:jackson-databind:2.12.0 -- com.google.guava:guava:14.0.1 -- com.googlecode.javaewah:JavaEWAH:0.3.2 -- com.tdunning:json:1.8 -- io.airlift:aircompressor:0.8 -- javax.jdo:jdo-api:3.0.1 -- joda-time:joda-time:2.8.1 -- net.sf.opencsv:opencsv:2.3 -- org.apache.avro:avro-guava-dependencies:1.8.2 -- org.apache.avro:avro-mapred:1.8.2 -- org.apache.avro:avro:1.8.2 -- org.apache.calcite:calcite-core:1.10.0 -- org.apache.calcite:calcite-druid:1.10.0 -- org.apache.calcite:calcite-linq4j:1.10.0 -- org.apache.calcite.avatica:avatica:1.8.0 -- org.apache.commons:commons-lang3:3.1 -- org.apache.hive.shims:hive-shims-0.23:2.3.10 -- org.apache.hive.shims:hive-shims-common:2.3.10 -- org.apache.hive:hive-common:2.3.10 -- org.apache.hive:hive-llap-client:2.3.10 -- org.apache.hive:hive-llap-common:2.3.10 -- org.apache.hive:hive-metastore:2.3.10 -- org.apache.hive:hive-serde:2.3.10 -- org.apache.hive:hive-service-rpc:2.3.10 -- org.apache.hive:hive-storage-api:2.4.0 -- org.apache.hive:spark-client:2.3.10 -- org.apache.orc:orc-core:1.3.4 -- org.apache.orc:orc-tools:1.3.4 -- org.apache.parquet:parquet-hadoop-bundle:1.8.1 -- org.apache.thrift:libthrift:0.14.1 -- org.apache.thrift:libfb303:0.9.3 -- org.objenesis:objenesis:2.1 - -The bundled Apache Hive org.apache.hive:hive-exec dependency bundles the following dependencies under the BSD license. -See bundled license files for details. - -- com.esotericsoftware:kryo-shaded:3.0.3 -- com.esotericsoftware:minlog:1.3.0 -- com.esotericsoftware:reflectasm:1.10.1 -- com.google.protobuf:protobuf-java:2.5.0 -- javolution:javolution:5.5.1 - -The bundled Apache Hive org.apache.hive:hive-exec dependency bundles the following dependencies under the MIT/X11 license. -See bundled license files for details. - -- org.slf4j:slf4j-api:1.7.2 diff --git a/flink-sql-connector-2.3.10/src/main/resources/META-INF/licenses/LICENSE.antlr b/flink-sql-connector-2.3.10/src/main/resources/META-INF/licenses/LICENSE.antlr deleted file mode 100644 index a5216ef2..00000000 --- a/flink-sql-connector-2.3.10/src/main/resources/META-INF/licenses/LICENSE.antlr +++ /dev/null @@ -1,26 +0,0 @@ -[The "BSD license"] -Copyright (c) 2013 Terence Parr -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/flink-sql-connector-2.3.10/src/main/resources/META-INF/licenses/LICENSE.javolution b/flink-sql-connector-2.3.10/src/main/resources/META-INF/licenses/LICENSE.javolution deleted file mode 100644 index 89bc198e..00000000 --- a/flink-sql-connector-2.3.10/src/main/resources/META-INF/licenses/LICENSE.javolution +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Javolution - Java(tm) Solution for Real-Time and Embedded Systems - * Copyright (c) 2012-2019, Javolution (http://javolution.org/) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ \ No newline at end of file diff --git a/flink-sql-connector-2.3.10/src/main/resources/META-INF/licenses/LICENSE.kryo b/flink-sql-connector-2.3.10/src/main/resources/META-INF/licenses/LICENSE.kryo deleted file mode 100644 index 1774d51a..00000000 --- a/flink-sql-connector-2.3.10/src/main/resources/META-INF/licenses/LICENSE.kryo +++ /dev/null @@ -1,10 +0,0 @@ -Copyright (c) 2008, Nathan Sweet -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROF [...] diff --git a/flink-sql-connector-2.3.10/src/main/resources/META-INF/licenses/LICENSE.minlog b/flink-sql-connector-2.3.10/src/main/resources/META-INF/licenses/LICENSE.minlog deleted file mode 100644 index 1774d51a..00000000 --- a/flink-sql-connector-2.3.10/src/main/resources/META-INF/licenses/LICENSE.minlog +++ /dev/null @@ -1,10 +0,0 @@ -Copyright (c) 2008, Nathan Sweet -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROF [...] diff --git a/flink-sql-connector-2.3.10/src/main/resources/META-INF/licenses/LICENSE.protobuf b/flink-sql-connector-2.3.10/src/main/resources/META-INF/licenses/LICENSE.protobuf deleted file mode 100644 index 19b305b0..00000000 --- a/flink-sql-connector-2.3.10/src/main/resources/META-INF/licenses/LICENSE.protobuf +++ /dev/null @@ -1,32 +0,0 @@ -Copyright 2008 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Code generated by the Protocol Buffer compiler is owned by the owner -of the input file used when generating it. This code is not -standalone and requires a support library to be linked with it. This -support library is itself covered by the above license. diff --git a/flink-sql-connector-2.3.10/src/main/resources/META-INF/licenses/LICENSE.reflectasm b/flink-sql-connector-2.3.10/src/main/resources/META-INF/licenses/LICENSE.reflectasm deleted file mode 100644 index 1774d51a..00000000 --- a/flink-sql-connector-2.3.10/src/main/resources/META-INF/licenses/LICENSE.reflectasm +++ /dev/null @@ -1,10 +0,0 @@ -Copyright (c) 2008, Nathan Sweet -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROF [...] diff --git a/flink-sql-connector-2.3.10/src/main/resources/META-INF/licenses/LICENSE.slf4j-api b/flink-sql-connector-2.3.10/src/main/resources/META-INF/licenses/LICENSE.slf4j-api deleted file mode 100644 index 93119e70..00000000 --- a/flink-sql-connector-2.3.10/src/main/resources/META-INF/licenses/LICENSE.slf4j-api +++ /dev/null @@ -1,21 +0,0 @@ -Copyright (c) 2004-2017 QOS.ch - All rights reserved. - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/flink-sql-connector-hive-2.3.10/src/main/resources/META-INF/NOTICE b/flink-sql-connector-hive-2.3.10/src/main/resources/META-INF/NOTICE index cb65e092..e27d9f30 100644 --- a/flink-sql-connector-hive-2.3.10/src/main/resources/META-INF/NOTICE +++ b/flink-sql-connector-hive-2.3.10/src/main/resources/META-INF/NOTICE @@ -27,9 +27,9 @@ the Apache Software License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) - javax.jdo:jdo-api:3.0.1 - joda-time:joda-time:2.8.1 - net.sf.opencsv:opencsv:2.3 -- org.apache.avro:avro-guava-dependencies:1.8.2 +- org.apache.avro:avro-guava-dependencies:1.11.4 - org.apache.avro:avro-mapred:1.8.2 -- org.apache.avro:avro:1.8.2 +- org.apache.avro:avro:1.11.4 - org.apache.calcite:calcite-core:1.10.0 - org.apache.calcite:calcite-druid:1.10.0 - org.apache.calcite:calcite-linq4j:1.10.0 diff --git a/flink-sql-connector-hive-3.1.3/pom.xml b/flink-sql-connector-hive-3.1.3/pom.xml index e28ee5ad..91bebfcf 100644 --- a/flink-sql-connector-hive-3.1.3/pom.xml +++ b/flink-sql-connector-hive-3.1.3/pom.xml @@ -204,7 +204,7 @@ under the License. <dependency> <groupId>org.apache.avro</groupId> <artifactId>avro</artifactId> - <version>1.8.2</version> + <version>${hive.avro.version}</version> </dependency> <dependency> diff --git a/flink-sql-connector-hive-3.1.3/src/main/resources/META-INF/NOTICE b/flink-sql-connector-hive-3.1.3/src/main/resources/META-INF/NOTICE index b642ab62..f3567f56 100644 --- a/flink-sql-connector-hive-3.1.3/src/main/resources/META-INF/NOTICE +++ b/flink-sql-connector-hive-3.1.3/src/main/resources/META-INF/NOTICE @@ -7,7 +7,7 @@ The Apache Software Foundation (http://www.apache.org/). This project bundles the following dependencies under the Apache Software License 2.0. (http://www.apache.org/licenses/LICENSE-2.0.txt) - org.apache.avro:avro-mapred:hadoop2:1.8.2 -- org.apache.avro:avro:1.8.2 +- org.apache.avro:avro:1.11.4 - org.apache.calcite:calcite-core:1.16.0 - org.apache.hive:hive-exec:3.1.3 - org.apache.thrift:libfb303:0.9.3 diff --git a/pom.xml b/pom.xml index 4d0d0cfa..da2edccd 100644 --- a/pom.xml +++ b/pom.xml @@ -46,14 +46,14 @@ under the License. <properties> <flink.version>1.20.0</flink.version> - <assertj.version>3.24.2</assertj.version> + <assertj.version>3.27.0</assertj.version> <!-- Hive 2.3.4 relies on Hadoop 2.7.2 and later versions. For Hadoop 2.7, the minor Hadoop version supported for flink-shaded-hadoop-2-uber is 2.7.5 --> <hadoop.version>2.7.5</hadoop.version> <hive.version>2.3.10</hive.version> - <hive.avro.version>1.8.2</hive.avro.version> + <hive.avro.version>1.11.4</hive.avro.version> <!-- Keep Janino in sync with calcite. --> <janino.version>3.1.10</janino.version> <jackson-bom.version>2.15.3</jackson-bom.version> @@ -61,11 +61,11 @@ under the License. <junit4.version>4.13.2</junit4.version> <junit-jupiter.version>5.10.1</junit-jupiter.version> <log4j.version>2.22.0</log4j.version> - <mockito.version>3.12.4</mockito.version> + <mockito.version>4.11.0</mockito.version> <netty.version>4.1.17.Final</netty.version> <scala.binary.version>2.12</scala.binary.version> <slf4j.version>1.7.36</slf4j.version> - <testcontainers.version>1.19.3</testcontainers.version> + <testcontainers.version>1.20.4</testcontainers.version> <zookeeper.version>3.7.2</zookeeper.version> <flink.parent.artifactId>flink-connector-hive-parent</flink.parent.artifactId> @@ -159,7 +159,7 @@ under the License. <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> - <version>2.11.0</version> + <version>2.16.1</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> @@ -231,7 +231,7 @@ under the License. <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> - <version>1.24.0</version> + <version>1.26.2</version> </dependency> <dependency> <groupId>com.esotericsoftware.kryo</groupId>