com.liferay.portal.tools.rest.builder
Owner: Liferay
The REST Builder Gradle plugin lets you generate a Liferay REST service layer defined in a rest.yaml file.
https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-rest-builder
Sources: https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-rest-builder
Version 1.1.14
1.1.14
Created 17 November 2020.
The REST Builder Gradle plugin lets you generate a Liferay REST service layer defined in a rest.yaml file.
Using the plugins DSL:
plugins {
id("com.liferay.portal.tools.rest.builder") version "1.1.14"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.liferay:gradle-plugins-rest-builder:1.1.14")
}
}
apply(plugin = "com.liferay.portal.tools.rest.builder")
Using the plugins DSL:
plugins {
id "com.liferay.portal.tools.rest.builder" version "1.1.14"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.liferay:gradle-plugins-rest-builder:1.1.14"
}
}
apply plugin: "com.liferay.portal.tools.rest.builder"