Repository: flink Updated Branches: refs/heads/release-1.5 a634f2cee -> f84a1644f
[FLINK-9234] [table] Fix missing dependencies for external catalogs This closes #5897. Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/f84a1644 Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/f84a1644 Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/f84a1644 Branch: refs/heads/release-1.5 Commit: f84a1644fd0225fbe37a9ca969af9a1d5ecfbd36 Parents: a634f2c Author: Timo Walther <[email protected]> Authored: Mon Apr 23 11:04:51 2018 +0200 Committer: Fabian Hueske <[email protected]> Committed: Sun May 13 23:53:27 2018 +0200 ---------------------------------------------------------------------- flink-libraries/flink-table/pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/f84a1644/flink-libraries/flink-table/pom.xml ---------------------------------------------------------------------- diff --git a/flink-libraries/flink-table/pom.xml b/flink-libraries/flink-table/pom.xml index 7d0522d..a3c345a 100644 --- a/flink-libraries/flink-table/pom.xml +++ b/flink-libraries/flink-table/pom.xml @@ -89,6 +89,11 @@ under the License. <groupId>commons-configuration</groupId> <artifactId>commons-configuration</artifactId> </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>jcl-over-slf4j</artifactId> + <version>${slf4j.version}</version> + </dependency> <!-- Used for base64 encoding of UDFs --> <dependency> @@ -312,8 +317,10 @@ under the License. <!-- flink-table dependencies --> <include>commons-configuration:*</include> + <include>org.slf4j:jcl-over-slf4j</include> <include>commons-lang:*</include> <include>commons-codec:*</include> + <include>commons-collections:*</include> <include>org.apache.commons:commons-lang3</include> <include>org.codehaus.janino:*</include> <include>org.reflections:*</include>
