Search Gradle plugins

Version 0.3.4 (latest)

Created 11 December 2019.

A plugin for compiling TeX.

Using the plugins DSL:

plugins {
  id("dev.reimer.tex") version "0.3.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.reimer:tex-gradle-plugin:0.3.4")
  }
}

apply(plugin = "dev.reimer.tex")

Using the plugins DSL:

plugins {
  id "dev.reimer.tex" version "0.3.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.reimer:tex-gradle-plugin:0.3.4"
  }
}

apply plugin: "dev.reimer.tex"

Learn how to apply plugins to subprojects