de.inetsoftware.jwebassembly
Owner: Horcrux7
A Gradle plugin for the JWebAssembly compiler.
https://github.com/i-net-software/JWebAssembly-Gradle
Sources: https://github.com/i-net-software/JWebAssembly-Gradle
Version 0.4 (latest)
0.4
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"