com.liferay.deployment.helper
Owner: Liferay
The Deployment Helper Gradle plugin lets you run the Liferay Deployment Helper tool to create a cluster deployable WAR from your OSGi artifacts.
https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-deployment-helper
Sources: https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-deployment-helper
Version 1.0.8 (latest)
1.0.8
Created 04 August 2023.
The Deployment Helper Gradle plugin lets you run the Liferay Deployment Helper tool to create a cluster deployable WAR from your OSGi artifacts.
Using the plugins DSL:
plugins {
id("com.liferay.deployment.helper") version "1.0.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.liferay:gradle-plugins-deployment-helper:1.0.8")
}
}
apply(plugin = "com.liferay.deployment.helper")
Using the plugins DSL:
plugins {
id "com.liferay.deployment.helper" version "1.0.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.liferay:gradle-plugins-deployment-helper:1.0.8"
}
}
apply plugin: "com.liferay.deployment.helper"