Skip to content

Commit 10dfc99

Browse files
committed
[FLINK-30481][FLIP-277] GlueCatalog Implementation
1 parent fdfe982 commit 10dfc99

File tree

13 files changed

+3683
-1
lines changed

13 files changed

+3683
-1
lines changed

flink-catalog-aws-glue/pom.xml

+120
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
Licensed to the Apache Software Foundation (ASF) under one
4+
or more contributor license agreements. See the NOTICE file
5+
distributed with this work for additional information
6+
regarding copyright ownership. The ASF licenses this file
7+
to you under the Apache License, Version 2.0 (the
8+
"License"); you may not use this file except in compliance
9+
with the License. You may obtain a copy of the License at
10+
11+
http://www.apache.org/licenses/LICENSE-2.0
12+
13+
Unless required by applicable law or agreed to in writing,
14+
software distributed under the License is distributed on an
15+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
KIND, either express or implied. See the License for the
17+
specific language governing permissions and limitations
18+
under the License.
19+
-->
20+
<project xmlns="http://maven.apache.org/POM/4.0.0"
21+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
23+
24+
<modelVersion>4.0.0</modelVersion>
25+
26+
<parent>
27+
<groupId>org.apache.flink</groupId>
28+
<artifactId>flink-connector-aws-parent</artifactId>
29+
<version>4.1-SNAPSHOT</version>
30+
</parent>
31+
32+
<artifactId>flink-catalog-aws-glue</artifactId>
33+
<name>Flink : Catalog : AWS : Glue</name>
34+
<packaging>jar</packaging>
35+
36+
<dependencies>
37+
38+
<dependency>
39+
<groupId>org.apache.flink</groupId>
40+
<artifactId>flink-table-api-java</artifactId>
41+
<version>${flink.version}</version>
42+
<scope>provided</scope>
43+
</dependency>
44+
45+
<dependency>
46+
<groupId>org.apache.flink</groupId>
47+
<artifactId>flink-connector-aws-base</artifactId>
48+
<version>${project.version}</version>
49+
</dependency>
50+
51+
<dependency>
52+
<groupId>software.amazon.awssdk</groupId>
53+
<artifactId>glue</artifactId>
54+
<version>${aws.sdkv2.version}</version>
55+
</dependency>
56+
57+
<dependency>
58+
<groupId>software.amazon.awssdk</groupId>
59+
<artifactId>apache-client</artifactId>
60+
<version>${aws.sdkv2.version}</version>
61+
</dependency>
62+
63+
<dependency>
64+
<groupId>software.amazon.awssdk</groupId>
65+
<artifactId>url-connection-client</artifactId>
66+
<version>${aws.sdkv2.version}</version>
67+
</dependency>
68+
69+
<!-- ArchUit test dependencies -->
70+
71+
<dependency>
72+
<groupId>org.apache.flink</groupId>
73+
<artifactId>flink-architecture-tests-test</artifactId>
74+
<scope>test</scope>
75+
</dependency>
76+
<dependency>
77+
<groupId>org.apache.flink</groupId>
78+
<artifactId>flink-table-common</artifactId>
79+
<version>${flink.version}</version>
80+
<type>test-jar</type>
81+
<scope>test</scope>
82+
</dependency>
83+
84+
<dependency>
85+
<groupId>org.apache.flink</groupId>
86+
<artifactId>flink-table-api-java</artifactId>
87+
<version>${flink.version}</version>
88+
<type>test-jar</type>
89+
<scope>test</scope>
90+
</dependency>
91+
</dependencies>
92+
93+
<build>
94+
<plugins>
95+
<plugin>
96+
<groupId>org.apache.maven.plugins</groupId>
97+
<artifactId>maven-shade-plugin</artifactId>
98+
<executions>
99+
<execution>
100+
<id>shade-flink</id>
101+
<phase>package</phase>
102+
<goals>
103+
<goal>shade</goal>
104+
</goals>
105+
<configuration>
106+
<artifactSet>
107+
<includes>
108+
<include>org.apache.flink:flink-connector-base</include>
109+
<include>org.apache.flink:flink-connector-aws-base</include>
110+
<include>org.apache.flink:flink-catalog-aws-glue</include>
111+
<include>software.amazon.awssdk:*</include>
112+
</includes>
113+
</artifactSet>
114+
</configuration>
115+
</execution>
116+
</executions>
117+
</plugin>
118+
</plugins>
119+
</build>
120+
</project>

0 commit comments

Comments
 (0)