搜索 Gradle 插件

com.liferay.soy

所有者: Liferay

Soy Gradle 插件允许您将 Closure 模板编译成 JavaScript 函数。它还允许您通过替换 "goog.getMsg" 定义为不同的函数调用(例如,“Liferay.Language.get”)来在生成的 .soy.js 文件中使用自定义本地化机制。

https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-soy

源代码: https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-soy

版本 3.1.10(最新版)

3.1.10

创建于 2020 年 11 月 3 日。

Soy Gradle 插件允许您将 Closure 模板编译成 JavaScript 函数。它还允许您通过替换 "goog.getMsg" 定义为不同的函数调用(例如,“Liferay.Language.get”)来在生成的 .soy.js 文件中使用自定义本地化机制。

使用 插件 DSL

plugins {
  id("com.liferay.soy") version "3.1.10"
}

使用 旧版插件应用

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

apply(plugin = "com.liferay.soy")

使用 插件 DSL

plugins {
  id "com.liferay.soy" version "3.1.10"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.liferay:gradle-plugins-soy:3.1.10"
  }
}

apply plugin: "com.liferay.soy"

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