Search Gradle plugins

org.manathome.src2doc

Owner: man

Walking Skeleton: generate asciidoc markup documentation from java source code for best integration with site generators like orchid or jbake..

https://gitlab.com/spare-time-demos/src2doc

Sources: https://gitlab.com/spare-time-demos/src2doc.git

Version 0.0.1-SNAPSHOT (latest)

Created 15 January 2020.

Walking Skeleton: generate asciidoc markup documentation from java source code for best integration with site generators like orchid or jbake..

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.manathome.src2doc") version "0.0.1-SNAPSHOT"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("org.manathome.src2doc:org.manathome.src2doc.gradle.plugin:0.0.1-SNAPSHOT")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.manathome.src2doc")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.manathome.src2doc:org.manathome.src2doc.gradle.plugin:0.0.1-SNAPSHOT")
      }
    }
    
    apply(plugin = "org.manathome.src2doc")
  • Applying plugins to all subprojects .