Search Gradle plugins

io.github.jyjeanne.dita-ot-gradle

A Gradle plugin for publishing DITA documents with DITA Open Toolkit. Continuation of com.github.eerohele.dita-ot-gradle with Kotlin migration. Supports incremental builds, continuous mode, multiple output formats, and DITAVAL filtering. Faster than running DITA-OT directly thanks to the Gradle Daemon.

https://github.com/jyjeanne/dita-ot-gradle

Sources: https://github.com/jyjeanne/dita-ot-gradle.git

Version 2.2.0 (latest)

Created 28 October 2025.

A Gradle plugin for publishing DITA documents with DITA Open Toolkit. Continuation of com.github.eerohele.dita-ot-gradle with Kotlin migration. Supports incremental builds, continuous mode, multiple output formats, and DITAVAL filtering. Faster than running DITA-OT directly thanks to the Gradle Daemon.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.jyjeanne.dita-ot-gradle") version "2.2.0"
}

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