Search Gradle plugins

Version 0.4 (latest)

Created 27 March 2022.

A Gradle plugin for the JWebAssembly compiler. A Java bytecode to WebAssembly converter. It produce the WASM and JavaScript file from your *.java, *.class and/or *.jar files.

Using the plugins DSL:

plugins {
  id("de.inetsoftware.jwebassembly") version "0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.de.inetsoftware:jwebassembly-gradle:0.4")
  }
}

apply(plugin = "de.inetsoftware.jwebassembly")

Using the plugins DSL:

plugins {
  id "de.inetsoftware.jwebassembly" version "0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.de.inetsoftware:jwebassembly-gradle:0.4"
  }
}

apply plugin: "de.inetsoftware.jwebassembly"

Learn how to apply plugins to subprojects