diff --git a/website/community/dev/building.md b/website/community/dev/building.md
index a891c84b6b..4e67bbe97b 100644
--- a/website/community/dev/building.md
+++ b/website/community/dev/building.md
@@ -50,6 +50,13 @@ The build script will be:
mvn clean install -DskipTests -T 1C
```
+If you need to compile artifacts that target Java 8 bytecode, enable the
+`java8` Maven profile:
+
+```bash
+mvn clean install -DskipTests -Pjava8
+```
+
**NOTE**:
- For local testing, it's recommend to use directory `${project}/build-target` in project.
- For deploying distributed cluster, it's recommend to use binary file named `fluss-xxx-bin.tgz`, the file is in directory `${project}/fluss-dist/target`.
@@ -88,4 +95,4 @@ cd fluss-rust
cargo fmt --all -- --check
cargo clippy --all-targets --workspace -- -D warnings
cargo deny check licenses
-```
\ No newline at end of file
+```
diff --git a/website/docs/engine-flink/getting-started.md b/website/docs/engine-flink/getting-started.md
index c3bb9962e3..e35803489e 100644
--- a/website/docs/engine-flink/getting-started.md
+++ b/website/docs/engine-flink/getting-started.md
@@ -59,7 +59,7 @@ For Flink's Table API, Fluss supports the following features:
| [SQL Show Partitions](ddl.md#show-partitions) | ✔️ | |
| [SQL Add Partition](ddl.md#add-partition) | ✔️ | |
| [SQL Drop Partition](ddl.md#drop-partition) | ✔️ | |
-| [Procedures](ddl.md#procedures) | ✔️ | ACL management and cluster configuration |
+| [Procedures](procedures.md) | ✔️ | ACL management and cluster configuration |
| [SQL Select](reads.md) | ✔️ | Support both streaming and batch mode. |
| [SQL Limit](reads.md#limit-read) | ✔️ | Only for Log Table |
| [SQL Insert Into](writes.md) | ✔️ | Support both streaming and batch mode. |
@@ -256,4 +256,4 @@ Fluss's integration for Flink automatically converts between Flink and Fluss typ
| VARBINARY | Not supported, suggest to use BYTES instead. |
| INTERVAL | Not supported |
| MULTISET | Not supported |
-| RAW | Not supported |
\ No newline at end of file
+| RAW | Not supported |
diff --git a/website/src/pages/downloads.md b/website/src/pages/downloads.md
index 8bfea1e43d..83778e96e2 100644
--- a/website/src/pages/downloads.md
+++ b/website/src/pages/downloads.md
@@ -4,6 +4,8 @@
Apache Fluss 0.9.1 is the latest stable release.
+
+
## Apache Fluss 0.9.1
| Artifact | Signature | SHA |
@@ -28,6 +30,14 @@ Read the [release blog](/blog/releases/0.8/) about the new features and signific
------------------
+
+
+## Fluss Connector and Filesystem JARs
+
+Fluss connector and filesystem JARs are published to Maven Central. Use the
+artifact names documented in the Flink engine dependencies and tiered-storage
+filesystem guides for your Flink and storage setup.
+
## Verifying Downloads
-Downloaded Apache Fluss (Incubating) artifacts can be verified by following [this tutorial](https://www.apache.org/info/verification.html) of the Apache Software Foundation using the Apache Fluss (Incubating) release-signing [KEYS](https://downloads.apache.org/incubator/fluss/KEYS).
\ No newline at end of file
+Downloaded Apache Fluss (Incubating) artifacts can be verified by following [this tutorial](https://www.apache.org/info/verification.html) of the Apache Software Foundation using the Apache Fluss (Incubating) release-signing [KEYS](https://downloads.apache.org/incubator/fluss/KEYS).