Search Gradle plugins

Version 0.9.2 (latest)

Created 05 January 2024.

Installs TeaVM compilation tasks, configurations and source sets

Using the plugins DSL:

plugins {
  id("org.teavm") version "0.9.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.teavm:teavm-gradle-plugin:0.9.2")
  }
}

apply(plugin = "org.teavm")

Using the plugins DSL:

plugins {
  id "org.teavm" version "0.9.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.teavm:teavm-gradle-plugin:0.9.2"
  }
}

apply plugin: "org.teavm"

Learn how to apply plugins to subprojects