com.liferay.xml.formatter
Owner: Liferay
The XML Formatter Gradle plugin lets you format a project's XML files using the Liferay XML Formatter tool.
https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-xml-formatter
Sources: https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-xml-formatter
Version 1.0.11 (latest)
1.0.11
Created 19 November 2018.
The XML Formatter Gradle plugin lets you format a project's XML files using the Liferay XML Formatter tool.
Using the plugins DSL:
plugins {
id("com.liferay.xml.formatter") version "1.0.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.liferay:gradle-plugins-xml-formatter:1.0.11")
}
}
apply(plugin = "com.liferay.xml.formatter")
Using the plugins DSL:
plugins {
id "com.liferay.xml.formatter" version "1.0.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.liferay:gradle-plugins-xml-formatter:1.0.11"
}
}
apply plugin: "com.liferay.xml.formatter"