gradle-aggregate-javadocs-plugin

Aggregates Javadocs across all projects in a multi-project build

License

License

Categories

Categories

Gradle Build Tools Net
GroupId

GroupId

com.netflix.nebula
ArtifactId

ArtifactId

gradle-aggregate-javadocs-plugin
Last Version

Last Version

3.0.1
Release Date

Release Date

Type

Type

jar
Description

Description

gradle-aggregate-javadocs-plugin
Aggregates Javadocs across all projects in a multi-project build
Project URL

Project URL

https://github.com/nebula-plugins/gradle-aggregate-javadocs-plugin
Source Code Management

Source Code Management

https://github.com/nebula-plugins/gradle-aggregate-javadocs-plugin.git

Download gradle-aggregate-javadocs-plugin

How to add to project

<!-- https://jarcasting.com/artifacts/com.netflix.nebula/gradle-aggregate-javadocs-plugin/ -->
<dependency>
    <groupId>com.netflix.nebula</groupId>
    <artifactId>gradle-aggregate-javadocs-plugin</artifactId>
    <version>3.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.netflix.nebula/gradle-aggregate-javadocs-plugin/
implementation 'com.netflix.nebula:gradle-aggregate-javadocs-plugin:3.0.1'
// https://jarcasting.com/artifacts/com.netflix.nebula/gradle-aggregate-javadocs-plugin/
implementation ("com.netflix.nebula:gradle-aggregate-javadocs-plugin:3.0.1")
'com.netflix.nebula:gradle-aggregate-javadocs-plugin:jar:3.0.1'
<dependency org="com.netflix.nebula" name="gradle-aggregate-javadocs-plugin" rev="3.0.1">
  <artifact name="gradle-aggregate-javadocs-plugin" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.netflix.nebula', module='gradle-aggregate-javadocs-plugin', version='3.0.1')
)
libraryDependencies += "com.netflix.nebula" % "gradle-aggregate-javadocs-plugin" % "3.0.1"
[com.netflix.nebula/gradle-aggregate-javadocs-plugin "3.0.1"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

gradle-aggregate-javadocs-plugin

Support Status Build Status Coverage Status Gitter Apache 2.0

In a multi-project setup containing one or many Java-based projects, Javadocs are only created for individual subprojects. There are certain use cases that requires you merge Javadocs for all subprojects of your build. Creating a reusable library that is partitioned into sub-functionality but shipped together is a typical example. This plugin adds a task to the root project of the build allowing to aggregate Javadocs across all subprojects.

Usage

Applying the Plugin

To include, add the following to your build.gradle

buildscript {
    repositories { jcenter() }

    dependencies {
        classpath 'com.netflix.nebula:gradle-aggregate-javadocs-plugin:2.2.+'
    }
}

apply plugin: 'nebula-aggregate-javadocs'

Aggregating Javadocs

To aggregate Javadocs across all subprojects, execute the task aggregateJavadocs available to the root project. The task declares a task dependencies on the task javadoc provided by the Java plugin. The resulting Javadoc report is located in the directory project.buildDir/docs/javadoc.

com.netflix.nebula

Netflix Build Language Plugins

Versions

Version
3.0.1
2.2.1