This is an automated email from the ASF dual-hosted git repository. guoweijie pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink.git
commit 5b2e923be0a643aa4f5e761ecc499426596d66cf Author: Weijie Guo <[email protected]> AuthorDate: Tue Feb 20 11:37:52 2024 +0800 [FLINK-34548][API] Initialize the datastream v2 related modules --- flink-datastream-api/pom.xml | 36 ++++++++++++++++++++++++++++++++++++ flink-datastream/pom.xml | 44 ++++++++++++++++++++++++++++++++++++++++++++ pom.xml | 2 ++ 3 files changed, 82 insertions(+) diff --git a/flink-datastream-api/pom.xml b/flink-datastream-api/pom.xml new file mode 100644 index 00000000000..f7fbbc35b1c --- /dev/null +++ b/flink-datastream-api/pom.xml @@ -0,0 +1,36 @@ +<?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> + <artifactId>flink-parent</artifactId> + <groupId>org.apache.flink</groupId> + <version>1.20-SNAPSHOT</version> + </parent> + + <artifactId>flink-datastream-api</artifactId> + <name>Flink : DataStream : API</name> + + <packaging>jar</packaging> +</project> diff --git a/flink-datastream/pom.xml b/flink-datastream/pom.xml new file mode 100644 index 00000000000..5fc9b908638 --- /dev/null +++ b/flink-datastream/pom.xml @@ -0,0 +1,44 @@ +<?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> + <artifactId>flink-parent</artifactId> + <groupId>org.apache.flink</groupId> + <version>1.20-SNAPSHOT</version> + </parent> + + <artifactId>flink-datastream</artifactId> + <name>Flink : DataStream : Impl</name> + + <packaging>jar</packaging> + + <dependencies> + <dependency> + <groupId>org.apache.flink</groupId> + <artifactId>flink-datastream-api</artifactId> + <version>${project.version}</version> + </dependency> + </dependencies> +</project> diff --git a/pom.xml b/pom.xml index a5f1c8578ec..da399793067 100644 --- a/pom.xml +++ b/pom.xml @@ -102,6 +102,8 @@ under the License. <module>flink-kubernetes</module> <module>flink-external-resources</module> <module>tools/ci/flink-ci-tools</module> + <module>flink-datastream</module> + <module>flink-datastream-api</module> </modules> <properties>
