Search Gradle plugins

de.steffensky.latex

A latex plugin for gradle. Providing features for running simple pdflatex and bibtex as well as a combination of both.

https://github.com/steffensky/latex-gradle-plugin

Sources: https://github.com/steffensky/latex-gradle-plugin

Version 0.2.1 (latest)

Created 06 January 2017.

A latex plugin for gradle. Providing features for running simple pdflatex and bibtex as well as a combination of both.

Using the plugins DSL:

plugins {
  id("de.steffensky.latex") version "0.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.de.steffensky:latex-gradle-plugin:0.2.1")
  }
}

apply(plugin = "de.steffensky.latex")

Using the plugins DSL:

plugins {
  id "de.steffensky.latex" version "0.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.de.steffensky:latex-gradle-plugin:0.2.1"
  }
}

apply plugin: "de.steffensky.latex"

Learn how to apply plugins to subprojects