Search Gradle plugins

Version 2.4.60 (latest)

2.4.60

Created 03 November 2020.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply(plugin = "com.liferay.js.transpiler")

Using the plugins DSL:

plugins {
  id "com.liferay.js.transpiler" version "2.4.60"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.liferay:gradle-plugins-js-transpiler:2.4.60"
  }
}

apply plugin: "com.liferay.js.transpiler"

Learn how to apply plugins to subprojects