搜索Gradle插件

版本 0.7.1(最新版)

0.7.1

创建于 2021年1月12日。

DITA Open Toolkit的Gradle插件

使用插件DSL

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

使用旧插件应用程序

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

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

使用插件DSL

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

使用旧插件应用程序

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

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

学习如何应用于子项目插件