Search Gradle plugins

Version 3.0.18

3.0.18

Created 21 July 2020.

The Lang Builder Gradle plugin lets you run the Liferay Lang Builder tool to sort and translate the language keys in your project.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.liferay.lang.builder") version "3.0.18"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.liferay:gradle-plugins-lang-builder:3.0.18")
      }
    }
    
    apply(plugin = "com.liferay.lang.builder")
  • Applying plugins to all subprojects .