com.liferay.js.module.config.generator
Owner: Liferay
The JS Module Config Generator Gradle plugin lets you run the Liferay AMD Module Config Generator to generate the configuration file needed to load AMD files via combo loader in Liferay.
Version 2.1.80 (latest)
2.1.80
Created 02 October 2020.
The JS Module Config Generator Gradle plugin lets you run the Liferay AMD Module Config Generator to generate the configuration file needed to load AMD files via combo loader in Liferay.
Using the plugins DSL:
plugins {
id("com.liferay.js.module.config.generator") version "2.1.80"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.liferay:gradle-plugins-js-module-config-generator:2.1.80")
}
}
apply(plugin = "com.liferay.js.module.config.generator")
Using the plugins DSL:
plugins {
id "com.liferay.js.module.config.generator" version "2.1.80"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.liferay:gradle-plugins-js-module-config-generator:2.1.80"
}
}
apply plugin: "com.liferay.js.module.config.generator"