Skip to content

Getting Started

Volker Berlin edited this page Dec 28, 2019 · 11 revisions

Getting Started with JWebAssembly

Add Dependency to API

First you must add the references of the JWebAssembly API to a new Java project in your IDE.

Latest release: de.inetsoftware:jwebassembly-api:+

Snapshot: com.github.i-net-software:jwebassembly-api:master-SNAPSHOT

For Gradle this can look like:

repositories {
    jcenter()
    maven { url 'https://jitpack.io' } // for snapshot of the API
}
dependencies {
    compile 'com.github.i-net-software:jwebassembly-api:master-SNAPSHOT'
}

For Maven this can look like:

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>
<dependency>
    <groupId>de.inetsoftware</groupId>
    <artifactId>jwebassembly-api</artifactId>
    <version>+</version>
</dependency>
Clone this wiki locally