The Graal SDK is a collection of APIs for the components of GraalVM.
- The
org.graalvm.polyglotmodule contains APIs to embed Graal languages in Java host applications. - The
org.graalvm.collectionsmodule contains memory efficient common collection data structures used across Graal projects. - The
org.graalvm.optionsmodule contains reusable classes for options.
- Download GraalVM from Oracle Technology Network.
- Use any of the Java executables in
./binor import GraalVM as JDK in your favorite IDE. - Use Graal-SDK, the jar is put on the class path for you automatically.
The Graal-SDK bits are also uploaded to Maven central.
You can use it from your pom.xml file as:
<dependencies>
<dependency>
<groupId>org.graalvm</groupId>
<artifactId>graal-sdk</artifactId>
<version>0.30</version>
</dependency>
</dependencies>Please note that Graal SDK requires GraalVM to run.
- Tutorial on using the polyglot API to embed Graal languages in Java host applications.
Important API changes and additions are tracked in the SDK changelog.
Graal SDK is licensed under the GPL 2 with Classpath exception.