Search Gradle plugins

Version 1.0.8 (latest)

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"

Learn how to apply plugins to subprojects