Search Gradle plugins

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.32

Created 10 June 2019.

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.32"
}

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.32")
  }
}

apply(plugin = "com.liferay.app.jsdoc")

Using the plugins DSL:

plugins {
  id "com.liferay.app.jsdoc" version "2.0.32"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.liferay:gradle-plugins-jsdoc:2.0.32"
  }
}

apply plugin: "com.liferay.app.jsdoc"

Learn how to apply plugins to subprojects