Search Gradle plugins

Version 0.2.1

Created 03 April 2015.

Enables the output dir to be relative to Java classpath.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects