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.77 (latest)
2.0.77
Created 14 June 2024.
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.
Using the plugins DSL:
plugins {
id("com.liferay.app.jsdoc") version "2.0.77"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.liferay:gradle-plugins-jsdoc:2.0.77")
}
}
apply(plugin = "com.liferay.app.jsdoc")
Using the plugins DSL:
plugins {
id "com.liferay.app.jsdoc" version "2.0.77"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.liferay:gradle-plugins-jsdoc:2.0.77"
}
}
apply plugin: "com.liferay.app.jsdoc"