搜索 Gradle 插件

org.teavm.library

安装 TeaVM DSL 以使用 TeaVM 库并在浏览器中运行测试

https://teavm.org

源代码: https://github.com/konsoletyper/teavm

版本 0.10.1(最新版)

0.10.1

创建时间:2024 年 7 月 11 日。

安装 TeaVM DSL 以使用 TeaVM 库并在浏览器中运行测试

使用 plugins DSL

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

使用 旧插件应用

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

apply(plugin = "org.teavm.library")

使用 plugins DSL

plugins {
  id "org.teavm.library" version "0.10.1"
}

使用 旧插件应用

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

apply plugin: "org.teavm.library"

了解如何将插件应用到子项目中