com.liferay.yarn
Owner: Liferay
The Yarn Gradle plugin lets you use Yarn to install Node packages from package.json
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 8.1.1 (latest)
Created 05 November 2024.
The Yarn Gradle plugin lets you use Yarn to install Node packages from package.json
Add this plugin to your build using the plugins DSL:
plugins {
id("com.liferay.yarn") version "8.1.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.yarn:com.liferay.yarn.gradle.plugin:8.1.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.liferay.yarn") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.liferay.yarn:com.liferay.yarn.gradle.plugin:8.1.1") } } apply(plugin = "com.liferay.yarn")
- Applying plugins to all subprojects .