com.liferay.app.jsdoc
Owner:
Liferay
The App JSDoc Gradle plugin lets you generate JavaScript documentation as a single, combined HTML document for an application that spans different subprojects, each one representing a different component of the same application.
https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-jsdoc
Sources: https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-jsdoc
Version 2.0.79 (latest)
Created 05 November 2024.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.liferay.app.jsdoc") version "2.0.79"
}
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.app.jsdoc:com.liferay.app.jsdoc.gradle.plugin:2.0.79") }
It can then be applied in the precompiled script plugin:plugins { id("com.liferay.app.jsdoc") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.liferay.app.jsdoc:com.liferay.app.jsdoc.gradle.plugin:2.0.79") } } apply(plugin = "com.liferay.app.jsdoc")
- Applying plugins to all subprojects .