com.liferay.portal.tools.db.support
Owner: Liferay
The DB Support Gradle plugin lets you run the Liferay DB Support tool to execute certain actions on a local Liferay database.
https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-db-support
Sources: https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-db-support
Version 1.1.1 (latest)
1.1.1
Created 04 August 2023.
The DB Support Gradle plugin lets you run the Liferay DB Support tool to execute certain actions on a local Liferay database.
Using the plugins DSL:
plugins {
id("com.liferay.portal.tools.db.support") version "1.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.liferay:gradle-plugins-db-support:1.1.1")
}
}
apply(plugin = "com.liferay.portal.tools.db.support")
Using the plugins DSL:
plugins {
id "com.liferay.portal.tools.db.support" version "1.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.liferay:gradle-plugins-db-support:1.1.1"
}
}
apply plugin: "com.liferay.portal.tools.db.support"