io.github.devdamiani.liferay-minimal-env
Owner: douglas damiani de paula
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)
Created 18 October 2024.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.devdamiani.liferay-minimal-env") version "0.8.3"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.github.devdamiani.liferay-minimal-env:io.github.devdamiani.liferay-minimal-env.gradle.plugin:0.8.3") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.devdamiani.liferay-minimal-env") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.devdamiani.liferay-minimal-env:io.github.devdamiani.liferay-minimal-env.gradle.plugin:0.8.3") } } apply(plugin = "io.github.devdamiani.liferay-minimal-env")
- Applying plugins to all subprojects .