Search Gradle plugins

Version 0.14 (latest)

Created 23 February 2023.

Provides the capability to compile JasperReports design files.

Using the plugins DSL:

plugins {
  id("eu.rehost.jasperreports") version "0.14"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("eu.rehost:jasperreports-gradle-plugin:0.14")
  }
}

apply(plugin = "eu.rehost.jasperreports")

Using the plugins DSL:

plugins {
  id "eu.rehost.jasperreports" version "0.14"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "eu.rehost:jasperreports-gradle-plugin:0.14"
  }
}

apply plugin: "eu.rehost.jasperreports"

Learn how to apply plugins to subprojects