搜索Gradle插件

版本 1.0 (最新)

1.0

创建于2016年4月30日。

当构建PDF时,允许从远程Git仓库获取Asciidoctor PDF的主题。

使用插件DSL

plugins {
  id("com.github.fwilhe.asciidoctor-pdf-theme") version "1.0"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.fwilhe.asciidoctor_pdf_theme_gradle_plugin:asciidoctor-pdf-theme-gradle-plugin:1.0")
  }
}

apply(plugin = "com.github.fwilhe.asciidoctor-pdf-theme")

使用插件DSL

plugins {
  id "com.github.fwilhe.asciidoctor-pdf-theme" version "1.0"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.fwilhe.asciidoctor_pdf_theme_gradle_plugin:asciidoctor-pdf-theme-gradle-plugin:1.0"
  }
}

apply plugin: "com.github.fwilhe.asciidoctor-pdf-theme"

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