Skip to content

Update CONTRIBUTING.md #610

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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
20 changes: 19 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,25 @@ This projects is composed of several main modules/components:

### Build the Java part

Building the java part is as simple as:

**Pre requisite**: Building this requires **GraalVM JDK version 17** and the **Javascript Engine**.
GraalVM website does not give link to install this. Use the command `sdk install java 17.0.9-graalce` to install GraalVM JDK 17.

Javascript engine needs to be installed using `gu` command.

**Note**: `gu` commnd is removed from the GraalVM distribution from version 19 and upwards. So you can't build this with latest JDK.

**On Linux or Mac:**
```
$JAVA_HOME/bin/gu install js
```
**On windows:**

```
%JAVA_HOME%/bin/gu install js
```

#### Compilation step

```bash
mvn -Pcodegen install
Expand Down
Loading