Search Gradle plugins

Version 0.4.0 (latest)

0.4.0

Created 16 January 2022.

Plugin that can render documents using Apache FOP. It can also validate XMLs against XSD schemas.

Using the plugins DSL:

plugins {
  id("com.github.ramonwirsch.FopRenderer") version "0.4.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.ramonwirsch:fopRenderer:0.4.0")
  }
}

apply(plugin = "com.github.ramonwirsch.FopRenderer")

Using the plugins DSL:

plugins {
  id "com.github.ramonwirsch.FopRenderer" version "0.4.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.ramonwirsch:fopRenderer:0.4.0"
  }
}

apply plugin: "com.github.ramonwirsch.FopRenderer"

Learn how to apply plugins to subprojects