Skip to content

Commit

Permalink
[fluss-lake] Introduce fluss-lake module
Browse files Browse the repository at this point in the history
This closes #454.
  • Loading branch information
polyzos authored Feb 21, 2025
1 parent f321a75 commit fe323c1
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 0 deletions.
31 changes: 31 additions & 0 deletions fluss-lake/fluss-lake-common/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2024 Alibaba Group Holding Ltd.
~
~ Licensed 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>com.alibaba.fluss</groupId>
<artifactId>fluss-lake</artifactId>
<version>0.6-SNAPSHOT</version>
</parent>

<artifactId>fluss-lake-common</artifactId>
<name>Fluss : Lake : Common</name>

</project>
34 changes: 34 additions & 0 deletions fluss-lake/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2024 Alibaba Group Holding Ltd.
~
~ Licensed 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>com.alibaba.fluss</groupId>
<artifactId>fluss</artifactId>
<version>0.6-SNAPSHOT</version>
</parent>

<artifactId>fluss-lake</artifactId>
<name>Fluss : Lake :</name>
<modules>
<module>fluss-lake-common</module>
</modules>
<packaging>pom</packaging>
</project>
2 changes: 2 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@
<module>fluss-connectors</module>
<module>fluss-protogen</module>
<module>fluss-benchmark</module>
<module>fluss-lake</module>
<!-- fluss-lakehouse module is deprecated, will be removed once fluss-lake ready -->
<module>fluss-lakehouse</module>
</modules>

Expand Down

0 comments on commit fe323c1

Please sign in to comment.