Search Gradle plugins

Version 0.10.6 (latest)

Created 18 January 2023.

Gradle DocBook Plugin

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.opentorah.docbook") version "0.10.6"
}

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.opentorah.docbook:org.opentorah.docbook.gradle.plugin:0.10.6")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.opentorah.docbook")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.opentorah.docbook:org.opentorah.docbook.gradle.plugin:0.10.6")
      }
    }
    
    apply(plugin = "org.opentorah.docbook")
  • Applying plugins to all subprojects .