搜索 Gradle 插件

com.github.theswaggomat.gradle.readmepdf

所有者: Steffen Jung

此 Gradle 插件可使用 PDF.css 文件将您的 README.md 转换为风格化的 README.pdf。

http://www.github.com/theswaggomat/

来源:https://github.com/theswaggomat/gradle-readme-pdf

版本 0.0.1(最新版)

0.0.1

创建于 2018 年 6 月 10 日。

此 Gradle 插件可使用 PDF.css 文件将您的 README.md 转换为风格化的 README.pdf。

使用 插件 DSL

plugins {
  id("com.github.theswaggomat.gradle.readmepdf") version "0.0.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.theswaggomat:gradle-readme-pdf:0.0.1")
  }
}

apply(plugin = "com.github.theswaggomat.gradle.readmepdf")

使用 插件 DSL

plugins {
  id "com.github.theswaggomat.gradle.readmepdf" version "0.0.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.theswaggomat:gradle-readme-pdf:0.0.1"
  }
}

apply plugin: "com.github.theswaggomat.gradle.readmepdf"

了解如何应用插件到子项目