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)
2.0.2
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.
Using the plugins DSL:
plugins {
id("com.liferay.app.tlddoc.builder") version "2.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.liferay:gradle-plugins-tlddoc-builder:2.0.2")
}
}
apply(plugin = "com.liferay.app.tlddoc.builder")
Using the plugins DSL:
plugins {
id "com.liferay.app.tlddoc.builder" version "2.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.liferay:gradle-plugins-tlddoc-builder:2.0.2"
}
}
apply plugin: "com.liferay.app.tlddoc.builder"