This is an automated email from the ASF dual-hosted git repository.

yuxia pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fluss.git


The following commit(s) were added to refs/heads/main by this push:
     new 0651d649b [hotfix] Update README about building using java 8 (#1838)
0651d649b is described below

commit 0651d649b790e7742a174a3817b5f4ff988c2655
Author: Sergey Nuyanzin <[email protected]>
AuthorDate: Mon Oct 20 03:51:15 2025 +0200

    [hotfix] Update README about building using java 8 (#1838)
---
 README.md | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/README.md b/README.md
index 040e7c8c1..359287269 100644
--- a/README.md
+++ b/README.md
@@ -48,7 +48,10 @@ Prerequisites for building Apache Fluss:
 ```bash
 git clone https://github.com/apache/fluss.git
 cd fluss
+# in case of java 11
 ./mvnw clean package -DskipTests
+# or in case of java 8
+./mvnw clean package -DskipTests -Pjava8
 ```
 
 Apache Fluss is now installed in `build-target`. The build command uses Maven 
Wrapper (`mvnw`) which ensures the correct Maven version is used.

Reply via email to