Search Gradle plugins

dev.wesp.tex

A plugin for compiling TeX. This is a fork of https://plugins.gradle.org/plugin/dev.reimer.tex, which is is inactive.

https://github.com/castn/tex-gradle-plugin

Sources: https://github.com/castn/tex-gradle-plugin.git

Version 0.3.5 (latest)

Created 04 March 2025.

A plugin for compiling TeX. This is a fork of https://plugins.gradle.org/plugin/dev.reimer.tex, which is is inactive.

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.wesp.tex") version "0.3.5"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("dev.wesp.tex:dev.wesp.tex.gradle.plugin:0.3.5")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("dev.wesp.tex")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.wesp.tex:dev.wesp.tex.gradle.plugin:0.3.5")
      }
    }
    
    apply(plugin = "dev.wesp.tex")
  • Applying plugins to all subprojects .