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)
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.
Using the plugins DSL:
plugins {
id("io.github.devdamiani.liferay-minimal-env") version "0.8.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.devdamiani.gradle:liferay-minimal-env:0.8.3")
}
}
apply(plugin = "io.github.devdamiani.liferay-minimal-env")
Using the plugins DSL:
plugins {
id "io.github.devdamiani.liferay-minimal-env" version "0.8.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.devdamiani.gradle:liferay-minimal-env:0.8.3"
}
}
apply plugin: "io.github.devdamiani.liferay-minimal-env"