Search Gradle plugins

com.github.theswaggomat.gradle.readmepdf

This gradle plugin can be used to convert your README.md to a styled README.pdf using a PDF.css file.

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

Sources: https://github.com/theswaggomat/gradle-readme-pdf

Version 0.0.1 (latest)

Created 10 June 2018.

This gradle plugin can be used to convert your README.md to a styled README.pdf using a PDF.css file.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects