运行 JWebAssembly 的 Maven 插件

Maven plugin for running JWebAssembly

我可以看到 JWebAssembly 可以用 gradle 构建 https://github.com/i-net-software/JWebAssembly/wiki/Build-with-Gradle 但他们也提供了添加 maven 依赖项的示例,所以我希望也有一个 maven 插件。我到处都找不到。如何 运行 JWebAssembly 与 maven?

这来自同一个 github wiki(https://github.com/i-net-software/JWebAssembly/wiki/Getting-Started#add-dependency-to-api):

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>
<dependency>
    <groupId>com.github.i-net-software</groupId>
    <artifactId>jwebassembly-api</artifactId>
    <version>master-SNAPSHOT</version>
</dependency>