Hi there!
Im trying to use graalvm but wildfly cant find this class.
I already tryed to declare dependency with jboss-deployment-structure.xml :
<jboss-deployment-structure>
<deployment>
<dependencies>
<system export="true">
<paths>
<path name="org/graalvm/polyglot/"/>
</paths>
</system>
</dependencies>
</deployment>
</jboss-deployment-structure>
and on modules.xml :
<dependencies>
...
<system export="true">
<paths>
<path name="org/graalvm/polyglot/"/>
</paths>
</system>
</dependencies>
but Im not succeding.
Any Ideas?