File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,25 @@ This projects is composed of several main modules/components:
110
110
111
111
### Build the Java part
112
112
113
- Building the java part is as simple as:
113
+
114
+ ** Pre requisite** : Building this requires ** GraalVM JDK version 17** and the ** Javascript Engine** .
115
+ GraalVM website does not give link to install this. Use the command ` sdk install java 17.0.9-graalce ` to install GraalVM JDK 17.
116
+
117
+ Javascript engine needs to be installed using ` gu ` command.
118
+
119
+ ** Note** : ` gu ` commnd is removed from the GraalVM distribution from version 19 and upwards. So you can't build this with latest JDK.
120
+
121
+ ** On Linux or Mac:**
122
+ ```
123
+ $JAVA_HOME/bin/gu install js
124
+ ```
125
+ ** On windows:**
126
+
127
+ ```
128
+ %JAVA_HOME%/bin/gu install js
129
+ ```
130
+
131
+ #### Compilation step
114
132
115
133
``` bash
116
134
mvn -Pcodegen install
You can’t perform that action at this time.
0 commit comments