Search Gradle plugins

com.liferay.app.javadoc.builder

Owner: Liferay

The App Javadoc Builder Gradle plugin lets you generate API 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-app-javadoc-builder

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

Version 1.2.6 (latest)

Created 15 March 2024.

The App Javadoc Builder Gradle plugin lets you generate API 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.javadoc.builder") version "1.2.6"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.liferay.app.javadoc.builder" version "1.2.6"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects