com.liferay.gulp
Owner: Liferay
The Gulp Gradle plugin lets you run Gulp tasks as part of your build.
https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-gulp
Sources: https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-gulp
Version 2.0.76
2.0.76
Created 08 July 2020.
The Gulp Gradle plugin lets you run Gulp tasks as part of your build.
Using the plugins DSL:
plugins {
id("com.liferay.gulp") version "2.0.76"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.liferay:gradle-plugins-gulp:2.0.76")
}
}
apply(plugin = "com.liferay.gulp")
Using the plugins DSL:
plugins {
id "com.liferay.gulp" version "2.0.76"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.liferay:gradle-plugins-gulp:2.0.76"
}
}
apply plugin: "com.liferay.gulp"