Search Gradle plugins

io.github.devdamiani.liferay-minimal-env

A Gradle plugin designed to automatically configure and provision all necessary services to create a fully functional Liferay environment. This plugin streamlines the setup process, ensuring that all components such as databases, search engines, and other dependencies are configured and ready for Liferay deployment.

https://github.com/DevDamiani/liferay-minimal-env

Sources: https://github.com/DevDamiani/liferay-minimal-env.git

Version 0.8.3 (latest)

0.8.3

Created 18 October 2024.

A Gradle plugin designed to automatically configure and provision all necessary services to create a fully functional Liferay environment. This plugin streamlines the setup process, ensuring that all components such as databases, search engines, and other dependencies are configured and ready for Liferay deployment.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.devdamiani.liferay-minimal-env") version "0.8.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.devdamiani.gradle:liferay-minimal-env:0.8.3")
      }
    }
    
    apply(plugin = "io.github.devdamiani.liferay-minimal-env")
  • Applying plugins to all subprojects .