This is an automated email from the ASF dual-hosted git repository.
zjureel pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 4e0b25ae8 [flink] Initialize flink-1.17 sub module (#708)
4e0b25ae8 is described below
commit 4e0b25ae841e962c330fb14074e093b01b87ebd7
Author: yuzelin <[email protected]>
AuthorDate: Fri Mar 31 10:48:16 2023 +0800
[flink] Initialize flink-1.17 sub module (#708)
* [flink] Initialize flink-1.17 sub module
* Update id to shade-paimon
---------
Co-authored-by: Shammon FY <[email protected]>
---
paimon-flink/paimon-flink-1.17/pom.xml | 72 ++++++++++++++++++++++++++++++++++
paimon-flink/pom.xml | 1 +
2 files changed, 73 insertions(+)
diff --git a/paimon-flink/paimon-flink-1.17/pom.xml
b/paimon-flink/paimon-flink-1.17/pom.xml
new file mode 100644
index 000000000..f189ce927
--- /dev/null
+++ b/paimon-flink/paimon-flink-1.17/pom.xml
@@ -0,0 +1,72 @@
+<?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/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.apache.paimon</groupId>
+ <artifactId>paimon-flink</artifactId>
+ <version>0.4-SNAPSHOT</version>
+ </parent>
+
+ <packaging>jar</packaging>
+
+ <artifactId>paimon-flink-1.17</artifactId>
+ <name>Paimon : Flink : 1.17</name>
+
+ <properties>
+ <flink.version>1.17.0</flink.version>
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.paimon</groupId>
+ <artifactId>paimon-flink-common</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-shade-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>shade-paimon</id>
+ <phase>package</phase>
+ <goals>
+ <goal>shade</goal>
+ </goals>
+ <configuration>
+ <artifactSet>
+ <includes combine.children="append">
+
<include>org.apache.paimon:paimon-flink-common</include>
+ </includes>
+ </artifactSet>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
diff --git a/paimon-flink/pom.xml b/paimon-flink/pom.xml
index b1919d1a1..67bd7b999 100644
--- a/paimon-flink/pom.xml
+++ b/paimon-flink/pom.xml
@@ -38,6 +38,7 @@ under the License.
<module>paimon-flink-1.14</module>
<module>paimon-flink-1.15</module>
<module>paimon-flink-1.16</module>
+ <module>paimon-flink-1.17</module>
</modules>
<dependencies>