eu.rehost.jasperreports
Owner:
Max Philipp Wriedt
Provides the capability to compile JasperReports design files.
https://git.rehost.eu/rehost/gradle-jasperreports
Sources: https://git.rehost.eu/rehost/gradle-jasperreports.git
Version 0.14 (latest)
Created 23 February 2023.
Provides the capability to compile JasperReports design files.
Add this plugin to your build using the plugins DSL:
plugins {
id("eu.rehost.jasperreports") version "0.14"
}
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("eu.rehost.jasperreports:eu.rehost.jasperreports.gradle.plugin:0.14") }
It can then be applied in the precompiled script plugin:plugins { id("eu.rehost.jasperreports") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("eu.rehost.jasperreports:eu.rehost.jasperreports.gradle.plugin:0.14") } } apply(plugin = "eu.rehost.jasperreports")
- Applying plugins to all subprojects .