com.liferay.node
Owner:
Liferay
The Node Gradle plugin lets you run Node.js and NPM as part of your build.
https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-node
Sources: https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-node
Version 5.1.0
Created 16 September 2019.
The Node Gradle plugin lets you run Node.js and NPM as part of your build.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.liferay.node") version "5.1.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.liferay.node:com.liferay.node.gradle.plugin:5.1.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.liferay.node") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.liferay.node:com.liferay.node.gradle.plugin:5.1.0") } } apply(plugin = "com.liferay.node")
- Applying plugins to all subprojects .