Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>
Copy link
Member

@SteNicholas SteNicholas Feb 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this version better to use 0.7-SNAPSHOT and merge this pull request after releasing cut? IMO, the 0.6 version doesn't include this.

Copy link
Contributor Author

@polyzos polyzos Feb 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@SteNicholas correct this should be inlcuded in the 0.7 release. But how do you typically approach this?
what should the version be since we are still on 0.6-snapshot?

Copy link
Member

@SteNicholas SteNicholas Feb 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@polyzos, will the 0.6 version release next week? Is it better to release cut 0.6 and bump version to 0.7-SNAPSHOT firstly? Otherwise, 0.6 rc would include this module. cc @leonardBang, WDYT?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As we didn't code-freeze yet, I think newly-added module is okay. Even our release version(0.6) contains these modules, but they won't be used by users as we don't expose them via user docs.

</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