Search Gradle plugins

com.liferay.app.javadoc.builder

Owner: Liferay

The App Javadoc Builder Gradle plugin lets you generate API 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-app-javadoc-builder

Sources: https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-app-javadoc-builder

Version 1.2.6 (latest)

Created 15 March 2024.

The App Javadoc Builder Gradle plugin lets you generate API documentation as a single, combined HTML document for an application that spans different subprojects, each one representing a different component of the same application.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.liferay.app.javadoc.builder") version "1.2.6"
}

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.javadoc.builder:com.liferay.app.javadoc.builder.gradle.plugin:1.2.6")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.liferay.app.javadoc.builder")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.liferay.app.javadoc.builder:com.liferay.app.javadoc.builder.gradle.plugin:1.2.6")
      }
    }
    
    apply(plugin = "com.liferay.app.javadoc.builder")
  • Applying plugins to all subprojects .