Search Gradle plugins

de.fabmax.webidl-util

Generates JNI and Kotlin/JS bindings from an emscripten/WebIDL model

https://github.com/fabmax/webidl-util

Sources: https://github.com/fabmax/webidl-util.git

Version 0.9.0 (latest)

0.9.0

Created 08 October 2024.

Generates JNI and Kotlin/JS bindings from an emscripten/WebIDL model

Using the plugins DSL:

plugins {
  id("de.fabmax.webidl-util") version "0.9.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("de.fabmax:webidl-util-gradle:0.9.0")
  }
}

apply(plugin = "de.fabmax.webidl-util")

Using the plugins DSL:

plugins {
  id "de.fabmax.webidl-util" version "0.9.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "de.fabmax:webidl-util-gradle:0.9.0"
  }
}

apply plugin: "de.fabmax.webidl-util"

Learn how to apply plugins to subprojects