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 4.5.1
Created 19 November 2018.
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 "4.5.1"
}
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:4.5.1") }
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:4.5.1") } } apply(plugin = "com.liferay.node")
- Applying plugins to all subprojects .