IllegalStateException: No language and polyglot implementation was found on the classpath. Make sure the truffle-api.jar is on the classpath.
我想在我的 Java 项目中使用 GraalVM。
我将此依赖项添加到我的 pom.xml
<dependency>
<groupId>org.graalvm.js</groupId>
<artifactId>js-scriptengine</artifactId>
<version>1.0.0-rc10</version>
</dependency>
但显然这还不够。
我还需要做什么来修复此错误?