Search Gradle plugins

Version 0.7.0

Created 07 January 2021.

A Gradle plugin for running DITA Open Toolkit

Using the plugins DSL:

plugins {
  id("com.github.eerohele.dita-ot-gradle") version "0.7.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.eerohele:dita-ot-gradle:0.7.0")
  }
}

apply(plugin = "com.github.eerohele.dita-ot-gradle")

Using the plugins DSL:

plugins {
  id "com.github.eerohele.dita-ot-gradle" version "0.7.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.eerohele:dita-ot-gradle:0.7.0"
  }
}

apply plugin: "com.github.eerohele.dita-ot-gradle"

Learn how to apply plugins to subprojects