... | ... | @@ -4,26 +4,26 @@ To start working with the InteGraal library, you need to setup your work environ |
|
|
|
|
|
### Java
|
|
|
|
|
|
You need Java version >= 11 to use InteGraal.
|
|
|
You need Java version >= 21 to use InteGraal.
|
|
|
- If you are not sure which version you have, you can open a terminal and use the `java --version` command.
|
|
|
- You can install java by following [the official oracle website](https://www.oracle.com/fr/java/)
|
|
|
|
|
|
### IDE
|
|
|
|
|
|
We recommand the use of an IDE [such as Eclipse](https://www.eclipse.org/downloads/) to work with java but this is not needed.
|
|
|
We recommand the use of an IDE [such as Eclipse](https://www.eclipse.org/downloads/) to work with java but this is not needed if you only use the CLI tool.
|
|
|
|
|
|
If using Eclipse, you may need to configure it to use the correct version of Java
|
|
|
```
|
|
|
In Window > Preferences:
|
|
|
Java/Installed JREs >
|
|
|
Check that jdk >= 11 exists and is checked
|
|
|
Check that jdk >= 21 exists and is checked
|
|
|
Otherwise
|
|
|
click Add...
|
|
|
select Standard VM
|
|
|
select the JRE home from your computer
|
|
|
it is the root folder with "bin", "conf", ... folders in it
|
|
|
click Finish
|
|
|
Check that jdk >= 11 is checked
|
|
|
Check that jdk >= 21 is checked
|
|
|
click Apply
|
|
|
```
|
|
|
|
... | ... | @@ -31,7 +31,7 @@ In Window > Preferences: |
|
|
|
|
|
If you plan on using InteGraal through [Maven](https://maven.apache.org/index.html), you may need to [install it](https://maven.apache.org/install.html) unless your IDE comes with it already included.
|
|
|
|
|
|
Please note that this is not necessary if using only the provided jar.
|
|
|
Please note that this is not necessary if using only the provided jar or CLI tool.
|
|
|
|
|
|
### Git
|
|
|
|
... | ... | |