Search Gradle plugins

Version 2.6.1-SNAPSHOT

Created 24 October 2021.

Yakworks Groovydoc merges together all the groovydocs for shippable libs in a project

Using the plugins DSL:

plugins {
  id("yakworks.groovydoc-merge") version "2.6.1-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.yakworks:gradle-plugins:2.6.1-SNAPSHOT")
  }
}

apply(plugin = "yakworks.groovydoc-merge")

Using the plugins DSL:

plugins {
  id "yakworks.groovydoc-merge" version "2.6.1-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.yakworks:gradle-plugins:2.6.1-SNAPSHOT"
  }
}

apply plugin: "yakworks.groovydoc-merge"

Learn how to apply plugins to subprojects