com.liferay.js.transpiler.base
所有者: Liferay
JS Transpiler Base Gradle 插件允许您在 Node.js 脚本中使用 Gradle 依赖项(如外部模块或项目依赖项)。
https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-js-transpiler
来源: https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-js-transpiler
版本 2.4.60(最新版本)
2.4.60
创建于 2020 年 11 月 3 日。
JS Transpiler Base Gradle 插件允许您在 Node.js 脚本中使用 Gradle 依赖项(如外部模块或项目依赖项)。
使用 plugins DSL
plugins {
id("com.liferay.js.transpiler.base") version "2.4.60"
}
使用 旧插件应用方法
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.liferay:gradle-plugins-js-transpiler:2.4.60")
}
}
apply(plugin = "com.liferay.js.transpiler.base")
使用 plugins DSL
plugins {
id "com.liferay.js.transpiler.base" version "2.4.60"
}
使用 旧插件应用方法
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.liferay:gradle-plugins-js-transpiler:2.4.60"
}
}
apply plugin: "com.liferay.js.transpiler.base"