Search Gradle plugins

io.github.jcohy.gradle.javadoc

Owner: Jcohy

Sets up a Project with Javadoc Task. Used by AggregateJavadocPlugin to setup aggregate Javadoc too

https://github.com/jcohy/jcohy-gradle-plugins

Sources: https://github.com/jcohy/jcohy-gradle-plugins

Version 3.0.0.1

Created 24 February 2023.

Sets up a Project with Javadoc Task. Used by AggregateJavadocPlugin to setup aggregate Javadoc too

Using the plugins DSL:

plugins {
  id("io.github.jcohy.gradle.javadoc") version "3.0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.jcohy:jcohy-javadoc:3.0.0.1")
  }
}

apply(plugin = "io.github.jcohy.gradle.javadoc")

Using the plugins DSL:

plugins {
  id "io.github.jcohy.gradle.javadoc" version "3.0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.jcohy:jcohy-javadoc:3.0.0.1"
  }
}

apply plugin: "io.github.jcohy.gradle.javadoc"

Learn how to apply plugins to subprojects