1

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

4

1 回答 1

1

这来自同一个 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>
于 2020-12-21T01:14:43.980 回答