Search Gradle plugins

Version 0.4 (latest)

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"

Learn how to apply plugins to subprojects