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.1
0.1
Created 07 October 2018.
A Gradle plugin for the JWebAssembly compiler.
Using the plugins DSL:
plugins {
id("de.inetsoftware.jwebassembly") version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.de.inetsoftware:jwebassembly-gradle:0.1")
}
}
apply(plugin = "de.inetsoftware.jwebassembly")
Using the plugins DSL:
plugins {
id "de.inetsoftware.jwebassembly" version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.de.inetsoftware:jwebassembly-gradle:0.1"
}
}
apply plugin: "de.inetsoftware.jwebassembly"