Search Gradle plugins

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.

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.

Using the plugins DSL:

plugins {
  id("com.liferay.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.tlddoc.builder")

Using the plugins DSL:

plugins {
  id "com.liferay.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.tlddoc.builder"

Learn how to apply plugins to subprojects