Search Gradle plugins

org.teavm.library

Installs TeaVM DSL for consuming TeaVM libraries and running tests in a browser

https://teavm.org

Sources: https://github.com/konsoletyper/teavm

Version 0.10.2 (latest)

0.10.2

Created 05 September 2024.

Installs TeaVM DSL for consuming TeaVM libraries and running tests in a browser

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.teavm.library") version "0.10.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.teavm:teavm-gradle-plugin:0.10.2")
      }
    }
    
    apply(plugin = "org.teavm.library")
  • Applying plugins to all subprojects .