Skip to content

Commit 690b02f

Browse files
docs: Add Gradle wrapper documentation to build prerequisites
1 parent b92332d commit 690b02f

2 files changed

Lines changed: 20 additions & 0 deletions

File tree

docs/groovy/getting-started/launch-build.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,16 @@ java --version
3535
> [!NOTE]
3636
> The Java build process uses [Gradle Auto Provisioning](https://docs.gradle.org/current/userguide/toolchains.html#sec:provisioning) to download and use the appropriate Java version for building and testing.
3737
38+
### Gradle
39+
40+
Deephaven uses [Gradle](https://gradle.org/) as its build tool. You do not need to install Gradle manually — the repository includes the [Gradle Wrapper](https://docs.gradle.org/current/userguide/gradle_wrapper.html) (`gradlew` / `gradlew.bat`), which downloads and runs the correct version of Gradle automatically.
41+
42+
You can verify the wrapper is present after cloning:
43+
44+
```bash
45+
ls gradlew
46+
```
47+
3848
### Version control
3949

4050
Deephaven highly recommends using a version control system to clone the [deephaven-core repository](https://github.com/deephaven/deephaven-core). The most popular and common option is [git](https://git-scm.com/); this guide uses it to clone the repository.

docs/python/getting-started/launch-build.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,16 @@ java --version
3737
> [!NOTE]
3838
> The Java build process uses [Gradle Auto Provisioning](https://docs.gradle.org/current/userguide/toolchains.html#sec:provisioning) to download and use the appropriate Java version for building and testing.
3939
40+
### Gradle
41+
42+
Deephaven uses [Gradle](https://gradle.org/) as its build tool. You do not need to install Gradle manually — the repository includes the [Gradle Wrapper](https://docs.gradle.org/current/userguide/gradle_wrapper.html) (`gradlew` / `gradlew.bat`), which downloads and runs the correct version of Gradle automatically.
43+
44+
You can verify the wrapper is present after cloning:
45+
46+
```bash
47+
ls gradlew
48+
```
49+
4050
### Python
4151

4252
It is recommended you stay up-to-date with the latest Python version. Deephaven requires Python **3.9** or later. You can check your Python version with:

0 commit comments

Comments
 (0)