Search Gradle plugins

Version 0.3.0

Created 17 November 2015.

Adds Java 8 support.

Using the plugins DSL:

plugins {
  id("com.github.gmazelier.jasperreports") version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.gmazelier:jasperreports-gradle-plugin:0.3.0")
  }
}

apply(plugin = "com.github.gmazelier.jasperreports")

Using the plugins DSL:

plugins {
  id "com.github.gmazelier.jasperreports" version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.gmazelier:jasperreports-gradle-plugin:0.3.0"
  }
}

apply plugin: "com.github.gmazelier.jasperreports"

Learn how to apply plugins to subprojects