Skip to content
Merged
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
16 changes: 14 additions & 2 deletions website/community/dev/building.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ title: Building Fluss

# Building Fluss from Source

This page covers how to build Fluss 0.6.0-SNAPSHOT from sources.
This page covers how to build Fluss from sources.

In order to build Fluss you need to get the source code by [clone the git repository](https://github.com/alibaba/fluss).
In order to build Fluss you need to get the source code by [cloning the git repository](https://github.com/alibaba/fluss).

In addition, you need **Maven 3.8.6** and a **JDK** (Java Development Kit). Fluss requires **Java 8 or Java 11** to build.

Expand All @@ -35,6 +35,18 @@ To clone from git, enter:
git clone git@github.com:alibaba/fluss.git
```

If you want to build a specific release or release candidate, have a look at the existing tags using

```bash
git tag -n
```

and checkout the corresponding branch using

```bash
git checkout <tag>
```

The simplest way of building Fluss is by running:

```bash
Expand Down