Skip to content

Update javac demo to use JS interop API shipped with GraalVM #353

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion native-image/wasm-javac/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This demo illustrates how to use the new experimental WebAssembly backend for Gr
This demo requires:

1. An [Early Access Build](https://github.com/graalvm/oracle-graalvm-ea-builds) of Oracle GraalVM for JDK 25 or later.
For example, using SDKMAN!: `sdk install java 25.ea.18-graal`
For example, using SDKMAN!: `sdk install java 25.ea.25-graal`
2. The [Binaryen toolchain](https://github.com/WebAssembly/binaryen) in version 119 or later and on the system path.
For example, using Homebrew: `brew install binaryen`

Expand Down
12 changes: 0 additions & 12 deletions native-image/wasm-javac/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,18 +62,6 @@
</plugins>
</build>

<dependencies>
<dependency>
<artifactId>someArtifactId</artifactId>
<groupId>someGroupId</groupId>
<version>1.0</version>
<scope>system</scope>
<systemPath>
${java.home}/lib/svm/tools/svm-wasm/builder/svm-wasm-api.jar
</systemPath>
</dependency>
</dependencies>

<profiles>
<profile>
<id>native</id>
Expand Down
Loading