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.57
Created 02 October 2020.
Add this plugin to your build using the plugins DSL:
plugins {
  id("com.liferay.app.jsdoc") version "2.0.57"
}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.57") }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.57") } } apply(plugin = "com.liferay.app.jsdoc")
- Applying plugins to all subprojects .