Search Gradle plugins

Version 0.2

Created 19 February 2020.

A Gradle plugin for the JWebAssembly compiler.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "de.inetsoftware.jwebassembly"

Learn how to apply plugins to subprojects