com.liferay.tlddoc.builder
Owner: Liferay
The TLDDoc Builder Gradle plugin lets you run the Tag Library Documentation Generator tool in order to generate documentation for the JSP Tag Library Descriptor (TLD) files in your project.
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.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.liferay.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.tlddoc.builder:com.liferay.tlddoc.builder.gradle.plugin:2.0.2") }
It can then be applied in the precompiled script plugin:plugins { id("com.liferay.tlddoc.builder") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.liferay.tlddoc.builder:com.liferay.tlddoc.builder.gradle.plugin:2.0.2") } } apply(plugin = "com.liferay.tlddoc.builder")
- Applying plugins to all subprojects .