Search Gradle plugins

Version 2.4.3

2.4.3

Created 17 January 2018.

The JS Transpiler Gradle plugin lets you run metal-cli in order to build Metal.js code, compile Soy files, and transpile ES6 to ES5.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.liferay.js.transpiler") version "2.4.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.liferay:gradle-plugins-js-transpiler:2.4.3")
      }
    }
    
    apply(plugin = "com.liferay.js.transpiler")
  • Applying plugins to all subprojects .