com.liferay.jasper.jspc
Owner:
Liferay
The Jasper JSPC Gradle plugin lets you run the Liferay Jasper JSPC tool to compile the JavaServer Pages (JSP) files in your project.
https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-jasper-jspc
Sources: https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-jasper-jspc
Version 2.0.14 (latest)
Created 04 August 2023.
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.14"
}
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.14")
}
}
apply(plugin = "com.liferay.jasper.jspc")
Using the plugins DSL:
plugins {
id "com.liferay.jasper.jspc" version "2.0.14"
}
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.14"
}
}
apply plugin: "com.liferay.jasper.jspc"