com.liferay.portal.tools.theme.builder
Owner:
Liferay
The Theme Builder Gradle plugin lets you run the Liferay Theme Builder tool to build the Liferay theme files in your project.
https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-theme-builder
Sources: https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-theme-builder
Version 2.0.25 (latest)
Created 17 August 2023.
The Theme Builder Gradle plugin lets you run the Liferay Theme Builder tool to build the Liferay theme files in your project.
Using the plugins DSL:
plugins {
id("com.liferay.portal.tools.theme.builder") version "2.0.25"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.liferay:gradle-plugins-theme-builder:2.0.25")
}
}
apply(plugin = "com.liferay.portal.tools.theme.builder")
Using the plugins DSL:
plugins {
id "com.liferay.portal.tools.theme.builder" version "2.0.25"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.liferay:gradle-plugins-theme-builder:2.0.25"
}
}
apply plugin: "com.liferay.portal.tools.theme.builder"