com.liferay.source.formatter
Owner:
Liferay
The Source Formatter Gradle plugin lets you format project files using the Liferay Source Formatter tool.
https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-source-formatter
Sources: https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-source-formatter
Version 4.0.26
Created 29 August 2020.
The Source Formatter Gradle plugin lets you format project files using the Liferay Source Formatter tool.
Using the plugins DSL:
plugins {
id("com.liferay.source.formatter") version "4.0.26"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.liferay:gradle-plugins-source-formatter:4.0.26")
}
}
apply(plugin = "com.liferay.source.formatter")
Using the plugins DSL:
plugins {
id "com.liferay.source.formatter" version "4.0.26"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.liferay:gradle-plugins-source-formatter:4.0.26"
}
}
apply plugin: "com.liferay.source.formatter"