com.liferay.lang.builder
Owner: Liferay
The Lang Builder Gradle plugin lets you run the Liferay Lang Builder tool to sort and translate the language keys in your project.
https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-lang-builder
Sources: https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-lang-builder
Version 2.2.1
2.2.1
Created 16 March 2018.
The Lang Builder Gradle plugin lets you run the Liferay Lang Builder tool to sort and translate the language keys in your project.
Using the plugins DSL:
plugins {
id("com.liferay.lang.builder") version "2.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.liferay:gradle-plugins-lang-builder:2.2.1")
}
}
apply(plugin = "com.liferay.lang.builder")
Using the plugins DSL:
plugins {
id "com.liferay.lang.builder" version "2.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.liferay:gradle-plugins-lang-builder:2.2.1"
}
}
apply plugin: "com.liferay.lang.builder"