com.github.ramonwirsch.FopRenderer
Owner: Ramon Wirsch
Plugin that can render documents using Apache FOP. It can also validate XMLs against XSD schemas.
https://github.com/ramonwirsch/fopRenderer
Sources: https://github.com/ramonwirsch/fopRenderer
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"