com.github.gmazelier.jasperreports
Owner: Gaylord Mazelier
Provides the capability to compile JasperReports design files.
https://github.com/gmazelier/gradle-jasperreports
Version 0.4 (latest)
0.4
Created 20 October 2019.
Provides the capability to compile JasperReports design files.
Using the plugins DSL:
plugins {
id("com.github.gmazelier.jasperreports") version "0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.gmazelier:jasperreports-gradle-plugin:0.4")
}
}
apply(plugin = "com.github.gmazelier.jasperreports")
Using the plugins DSL:
plugins {
id "com.github.gmazelier.jasperreports" version "0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.gmazelier:jasperreports-gradle-plugin:0.4"
}
}
apply plugin: "com.github.gmazelier.jasperreports"