搜索Gradle插件

版本 2.4.60(最新)

2.4.60

创建于 2020年11月3日。

JS Transpiler Gradle插件让您运行metal-cli来构建Metal.js代码,编译Soy文件,并将ES6转换为ES5。

使用插件DSL

plugins {
  id("com.liferay.js.transpiler") 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")

使用插件DSL

plugins {
  id "com.liferay.js.transpiler" 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"

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