Skip to content

Commit

Permalink
Merge pull request #2196 from arunans23/graaljs
Browse files Browse the repository at this point in the history
Integrate GraalVM JS to script mediator
  • Loading branch information
arunans23 authored Jul 10, 2024
2 parents bccc41f + 978aa9b commit 5048921
Show file tree
Hide file tree
Showing 18 changed files with 1,094 additions and 61 deletions.
29 changes: 29 additions & 0 deletions modules/extensions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,35 @@
<groupId>org.openjdk.nashorn</groupId>
<artifactId>nashorn-core</artifactId>
</dependency>
<dependency>
<groupId>org.graalvm.sdk</groupId>
<artifactId>graal-sdk</artifactId>
</dependency>
<dependency>
<groupId>org.graalvm.js</groupId>
<artifactId>js</artifactId>
</dependency>
<dependency>
<groupId>org.graalvm.truffle</groupId>
<artifactId>truffle-api</artifactId>
</dependency>
<dependency>
<groupId>org.graalvm.regex</groupId>
<artifactId>regex</artifactId>
</dependency>
<dependency>
<groupId>com.ibm.icu</groupId>
<artifactId>icu4j</artifactId>
</dependency>
<dependency>
<groupId>org.apache.bsf.wso2</groupId>
<artifactId>bsf-all</artifactId>
</dependency>
<dependency>
<groupId>org.graalvm.js</groupId>
<artifactId>js-scriptengine</artifactId>
</dependency>

</dependencies>

<properties />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
/**
* This class will provide the operations to convert between xml elements of scripts and OMElements.
*/
public class NashornJavaScriptXmlHelper extends DefaultXMLHelper {
public class ExtendedJavaScriptXmlHelper extends DefaultXMLHelper {

/**
* This method will convert the message payload in to xml.
Expand Down
Loading

0 comments on commit 5048921

Please sign in to comment.