Search Gradle plugins

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.

https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-js-module-config-generator

Sources: https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-js-module-config-generator

Version 2.1.62

Created 24 August 2019.

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

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

apply(plugin = "com.liferay.js.module.config.generator")

Using the plugins DSL:

plugins {
  id "com.liferay.js.module.config.generator" version "2.1.62"
}

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

apply plugin: "com.liferay.js.module.config.generator"

Learn how to apply plugins to subprojects