com.liferay.jsdoc
Owner: Liferay
The JSDoc Gradle plugin lets you run the JSDoc tool in order to generate documentation for your project's JavaScript files.
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.
The JSDoc Gradle plugin lets you run the JSDoc tool in order to generate documentation for your project's JavaScript files.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.liferay.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.jsdoc:com.liferay.jsdoc.gradle.plugin:2.0.79") }
It can then be applied in the precompiled script plugin:plugins { id("com.liferay.jsdoc") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.liferay.jsdoc:com.liferay.jsdoc.gradle.plugin:2.0.79") } } apply(plugin = "com.liferay.jsdoc")
- Applying plugins to all subprojects .