Search Gradle plugins

Version 2.0.15 (latest)

Created 15 March 2024.

The Jasper JSPC Gradle plugin lets you run the Liferay Jasper JSPC tool to compile the JavaServer Pages (JSP) files in your project.

Using the plugins DSL:

plugins {
  id("com.liferay.jasper.jspc") version "2.0.15"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.liferay:gradle-plugins-jasper-jspc:2.0.15")
  }
}

apply(plugin = "com.liferay.jasper.jspc")

Using the plugins DSL:

plugins {
  id "com.liferay.jasper.jspc" version "2.0.15"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.liferay:gradle-plugins-jasper-jspc:2.0.15"
  }
}

apply plugin: "com.liferay.jasper.jspc"

Learn how to apply plugins to subprojects