Search Gradle plugins

Version 2.4.50

Created 13 March 2020.

The JS Transpiler Base Gradle plugin lets you use Gradle dependencies (such as external module or project dependencies) in Node.js scripts.

Using the plugins DSL:

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

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.50")
  }
}

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

Using the plugins DSL:

plugins {
  id "com.liferay.js.transpiler.base" version "2.4.50"
}

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.50"
  }
}

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

Learn how to apply plugins to subprojects