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 1.3.8

Created 16 March 2021.

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 "1.3.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.liferay:gradle-plugins-tlddoc-builder:1.3.8")
  }
}

apply(plugin = "com.liferay.app.tlddoc.builder")

Using the plugins DSL:

plugins {
  id "com.liferay.app.tlddoc.builder" version "1.3.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.liferay:gradle-plugins-tlddoc-builder:1.3.8"
  }
}

apply plugin: "com.liferay.app.tlddoc.builder"

Learn how to apply plugins to subprojects