Search Gradle plugins

Version 0.3

Created 01 May 2020.

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.3"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "de.inetsoftware.jwebassembly"

Learn how to apply plugins to subprojects