Search Gradle plugins

Version 0.6.0-SNAPSHOT

Created 07 June 2018.

A Gradle plugin for running DITA Open Toolkit

Using the plugins DSL:

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

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.6.0-SNAPSHOT")
  }
}

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects