Search Gradle plugins

com.liferay.app.tlddoc.builder

Owner: Liferay

The App TLDDoc Builder lets you generate the tag library 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-tlddoc-builder

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

Version 2.0.2 (latest)

Created 15 March 2024.

The App TLDDoc Builder lets you generate the tag library 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.tlddoc.builder") version "2.0.2"
}

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